Searched refs:factory (Results 1 - 25 of 96) sorted by relevance

1234

/macosx-10.10.1/swig-12/Lib/octave/
H A Dfactory.i1 %include <typemaps/factory.swg>
/macosx-10.10.1/swig-12/Lib/perl5/
H A Dfactory.i1 %include <typemaps/factory.swg>
/macosx-10.10.1/swig-12/Lib/python/
H A Dfactory.i1 %include <typemaps/factory.swg>
/macosx-10.10.1/swig-12/Lib/ruby/
H A Dfactory.i1 %include <typemaps/factory.swg>
/macosx-10.10.1/swig-12/Lib/tcl/
H A Dfactory.i1 %include <typemaps/factory.swg>
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/collections/ship/factory/
H A DSampleViews.java9 package collections.ship.factory;
38 TupleSerialFactory factory = db.getFactory();
45 factory.newSortedMap(db.getPartDatabase(),
48 factory.newSortedMap(db.getSupplierDatabase(),
51 factory.newSortedMap(db.getShipmentDatabase(),
54 factory.newSortedMap(db.getShipmentByPartDatabase(),
57 factory.newSortedMap(db.getShipmentBySupplierDatabase(),
60 factory.newSortedMap(db.getSupplierByCityDatabase(),
H A DWeight.java9 package collections.ship.factory;
H A DSampleDatabase.java9 package collections.ship.factory;
51 private TupleSerialFactory factory; field in class:SampleDatabase
86 factory = new TupleSerialFactory(javaCatalog);
113 secConfig.setKeyCreator(factory.getKeyCreator(Supplier.class,
121 secConfig.setKeyCreator(factory.getKeyCreator(Shipment.class,
129 secConfig.setKeyCreator(factory.getKeyCreator(Shipment.class,
138 * Return the tuple-serial factory.
142 return factory;
H A DPartKey.java9 package collections.ship.factory;
H A DSupplierKey.java9 package collections.ship.factory;
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Duobjtest.h31 * @param factory String version of obj, for exanple "new UFoo(1,3,4)". NULL if object is abstract.
36 const char *className, const char *factory,
40 const char *className, const char *factory);
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebKitCOMAPI.cpp60 COMPtr<IClassFactory>& factory = result.iterator->value; local
61 if (result.isNewEntry && FAILED(DllGetClassObject(clsid, __uuidof(factory), reinterpret_cast<void**>(&factory))))
62 factory = 0;
64 return factory;
69 COMPtr<IClassFactory> factory = classFactory(rclsid); local
70 if (!factory)
73 return factory->CreateInstance(pUnkOuter, riid, ppvObject);
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DGrammar.pm39 my ($factory, $rawstart);
129 # update method to set package-scoped $factory lexical
132 $factory = $new_factory;
5213 { $factory->template($_[1]) }
5219 { $factory->block($_[1]) }
5225 { $factory->block() }
5244 { $factory->textblock($_[1]) }
5282 { $factory->get($_[1]) }
5297 { $factory->set($_[1]) }
5321 { $factory
[all...]
H A DPlugins.pm70 # appropriate factory object or class name. If undefined, the _load()
71 # method is called to attempt to load the module and return a factory
75 # then called against the factory class name or prototype object to
77 # list reference as the second parameter. e.g. where $factory is the
79 # $factory->new(...), equivalent to MyClass->new(...) . Where
80 # $factory is a prototype object, the new() method is called as an
90 my ($factory, $plugin, $error);
107 $factory = $self->{ FACTORY }->{ $name } ||= do {
108 ($factory, $error) = $self->_load($name, $context);
109 return ($factory,
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/
H A Dosxshim.c35 bool SOSKeychainAccountSetFactoryForAccount(AccountDataSourceFactoryBlock factory);
37 bool SOSKeychainAccountSetFactoryForAccount(AccountDataSourceFactoryBlock factory) argument
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/collections/test/serial/
H A DTupleSerialFactoryTest.java67 private TupleSerialFactory factory; field in class:TupleSerialFactoryTest
133 factory = null;
158 factory = new TupleSerialFactory(catalog);
159 assertSame(catalog, factory.getCatalog());
163 index1 = openSecondaryDb(factory, "1", store1, "index1.db", null);
164 index2 = openSecondaryDb(factory, "2", store2, "index2.db", store1);
178 private SecondaryDatabase openSecondaryDb(TupleSerialFactory factory, argument
189 secConfig.setKeyCreator(factory.getKeyCreator(MarshalledObject.class,
205 storeMap1 = factory.newSortedMap(store1, String.class,
207 storeMap2 = factory
[all...]
/macosx-10.10.1/swig-12/Lib/typemaps/
H A Dfactory.swg2 Implement a more natural wrap for factory methods, for example, if
44 You can use the %factory with the Geometry::create method as follows:
47 %factory(Geometry *Geometry::create, Point, Circle);
59 use %factory inside a namespace declaration, ie, instead of
62 %factory(Geometry *Geometry::create, Point, Circle);
67 %factory(Foo::Geometry *Foo::Geometry::create, Foo::Point, Foo::Circle);
81 %define %factory(Method,Types...)
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/collections/test/
H A DForeignKeyTest.java81 private TupleSerialFactory factory; field in class:ForeignKeyTest
142 factory = null;
165 factory = new TupleSerialFactory(catalog);
166 assertSame(catalog, factory.getCatalog());
170 index1 = openSecondaryDb(factory, "1", store1, "index1.db", null);
171 index2 = openSecondaryDb(factory, "2", store2, "index2.db", store1);
185 private SecondaryDatabase openSecondaryDb(TupleSerialFactory factory, argument
193 factory.getKeyCreator(MarshalledObject.class, keyName);
215 storeMap1 = factory.newMap(store1, String.class,
217 storeMap2 = factory
[all...]
H A DJoinTest.java66 private TupleSerialFactory factory; field in class:JoinTest
116 factory = null;
140 factory = new TupleSerialFactory(catalog);
141 assertSame(catalog, factory.getCatalog());
169 secConfig.setKeyCreator(factory.getKeyCreator(MarshalledObject.class,
179 storeMap = factory.newMap(store, String.class,
181 indexMap1 = factory.newMap(index1, String.class,
183 indexMap2 = factory.newMap(index2, String.class,
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A DCharScanner.cpp28 setTokenObjectFactory(&CommonToken::factory);
40 setTokenObjectFactory(&CommonToken::factory);
52 setTokenObjectFactory(&CommonToken::factory);
H A DCommonAST.cpp41 RefAST CommonAST::factory() function in class:antlr::CommonAST
H A DCommonHiddenStreamToken.cpp38 RefToken CommonHiddenStreamToken::factory() function in class:antlr::CommonHiddenStreamToken
H A DCommonToken.cpp37 RefToken CommonToken::factory() function in class:antlr::CommonToken
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/antlr/
H A DCommonASTWithHiddenTokens.hpp47 static RefAST factory();
H A DCommonHiddenStreamToken.hpp31 static RefToken factory();

Completed in 173 milliseconds

1234