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

1234

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/factory/
H A DMakefile.am6 noinst_PROGRAMS = factory
7 SOAPHEADER = factory.h
11 SOAP_NS = factory.nsmap factory.wsdl
13 factory_SOURCES = factory.cpp $(SOAPHEADER) $(SOAP_CPP_SERVER)
H A Dfactory.cpp2 factory.cpp
4 Remote object factory
6 The remote object factory uses a lease-based system. Remote objects
10 soapcpp2 factory.h
11 c++ -o factory factory.cpp stdsoap2.cpp soapC.cpp soapServer.cpp
14 factory <port>
48 #include "factory.nsmap"
287 Factory factory; // create factory an local
331 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
347 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
363 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
377 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
394 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
410 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
421 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
443 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/factory/
H A DMakefile.am6 noinst_PROGRAMS = factory
7 SOAPHEADER = factory.h
11 SOAP_NS = factory.nsmap factory.wsdl
13 factory_SOURCES = factory.cpp $(SOAPHEADER) $(SOAP_CPP_SERVER)
H A Dfactory.cpp2 factory.cpp
4 Remote object factory
6 The remote object factory uses a lease-based system. Remote objects
10 soapcpp2 factory.h
11 c++ -o factory factory.cpp stdsoap2.cpp soapC.cpp soapServer.cpp
14 factory <port>
48 #include "factory.nsmap"
287 Factory factory; // create factory an local
331 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
347 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
363 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
377 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
394 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
410 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
421 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
443 { Factory *factory = (Factory*)soap->user; // get factory from gSOAP environment local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libantlr3c-3.2/src/
H A Dantlr3commontree.c58 static void newPool (pANTLR3_ARBORETUM factory);
59 static pANTLR3_BASE_TREE newPoolTree (pANTLR3_ARBORETUM factory);
60 static pANTLR3_BASE_TREE newFromTree (pANTLR3_ARBORETUM factory, pANTLR3_COMMON_TREE tree);
61 static pANTLR3_BASE_TREE newFromToken (pANTLR3_ARBORETUM factory, pANTLR3_COMMON_TOKEN token);
62 static void factoryClose (pANTLR3_ARBORETUM factory);
67 pANTLR3_ARBORETUM factory; local
71 factory = (pANTLR3_ARBORETUM) ANTLR3_MALLOC((size_t)sizeof(ANTLR3_ARBORETUM));
72 if (factory == NULL)
77 // Install a vector factory to create, track and free() any child
80 factory
124 newPool(pANTLR3_ARBORETUM factory) argument
154 newPoolTree(pANTLR3_ARBORETUM factory) argument
212 newFromTree(pANTLR3_ARBORETUM factory, pANTLR3_COMMON_TREE tree) argument
232 newFromToken(pANTLR3_ARBORETUM factory, pANTLR3_COMMON_TOKEN token) argument
251 factoryClose(pANTLR3_ARBORETUM factory) argument
[all...]
H A Dantlr3commontoken.c61 static void factoryClose (pANTLR3_TOKEN_FACTORY factory);
63 static void setInputStream (pANTLR3_TOKEN_FACTORY factory, pANTLR3_INPUT_STREAM input);
67 static void newPool (pANTLR3_TOKEN_FACTORY factory);
68 static pANTLR3_COMMON_TOKEN newPoolToken (pANTLR3_TOKEN_FACTORY factory);
94 pANTLR3_TOKEN_FACTORY factory; local
98 factory = (pANTLR3_TOKEN_FACTORY) ANTLR3_MALLOC((size_t)sizeof(ANTLR3_TOKEN_FACTORY));
100 if (factory == NULL)
105 /* Install factory API
107 factory->newToken = newPoolToken;
108 factory
135 setInputStream(pANTLR3_TOKEN_FACTORY factory, pANTLR3_INPUT_STREAM input) argument
150 newPool(pANTLR3_TOKEN_FACTORY factory) argument
179 newPoolToken(pANTLR3_TOKEN_FACTORY factory) argument
215 factoryClose(pANTLR3_TOKEN_FACTORY factory) argument
[all...]
H A Dantlr3string.c2 * Implementation of the ANTLR3 string and string factory classes
38 static pANTLR3_STRING newRaw8 (pANTLR3_STRING_FACTORY factory);
39 static pANTLR3_STRING newRaw16 (pANTLR3_STRING_FACTORY factory);
40 static pANTLR3_STRING newSize8 (pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size);
41 static pANTLR3_STRING newSize16 (pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size);
42 static pANTLR3_STRING newPtr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
43 static pANTLR3_STRING newPtr16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
44 static pANTLR3_STRING newPtr16_16 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
45 static pANTLR3_STRING newStr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string);
46 static pANTLR3_STRING newStr16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT
100 pANTLR3_STRING_FACTORY factory; local
144 pANTLR3_STRING_FACTORY factory; local
180 newRaw8(pANTLR3_STRING_FACTORY factory) argument
209 newRaw16(pANTLR3_STRING_FACTORY factory) argument
415 newSize8(pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size) argument
443 newSize16(pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size) argument
470 newPtr8(pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr, ANTLR3_UINT32 size) argument
503 newPtr16_8(pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr, ANTLR3_UINT32 size) argument
551 newPtr16_16(pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr, ANTLR3_UINT32 size) argument
586 newStr8(pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr) argument
597 newStr16_8(pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr) argument
608 newStr16_16(pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr) argument
626 destroy(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string) argument
671 printable8(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING instr) argument
718 printable16(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING instr) argument
776 closeFactory(pANTLR3_STRING_FACTORY factory) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/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;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libantlr3c-3.2/include/
H A Dantlr3commontree.h76 /// Pointer to the tree factory that manufactured this
80 pANTLR3_ARBORETUM factory; member in struct:ANTLR3_COMMON_TREE_struct
109 /// \brief ANTLR3 Tree factory interface to create lots of trees efficiently
114 /// Pointers to the array of tokens that this factory has produced so far
128 /// factory is created, then just copy the memory it uses into the new token.
132 /// Pointer to a vector factory that is used to create child list vectors
134 /// vectors and auto free them when we close the factory. It also means
135 /// that all rewriting trees can use the same tree factory and the same
136 /// vector factory and we do not dup any nodes unless we must do so
151 pANTLR3_BASE_TREE (*newTree) (struct ANTLR3_ARBORETUM_struct * factory);
[all...]
H A Dantlr3string.h4 * one chunk via a string factory - saves lots of hassle in remembering what
54 /** The factory that created this string
56 pANTLR3_STRING_FACTORY factory; member in struct:ANTLR3_STRING_struct
207 /** Definition of the string factory interface, which creates and tracks
212 /** List of all the strings that have been allocated by the factory
222 pANTLR3_STRING (*newRaw) (struct ANTLR3_STRING_FACTORY_struct * factory);
227 pANTLR3_STRING (*newSize) (struct ANTLR3_STRING_FACTORY_struct * factory, ANTLR3_UINT32 size);
233 pANTLR3_STRING (*newPtr) (struct ANTLR3_STRING_FACTORY_struct * factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
238 pANTLR3_STRING (*newPtr8) (struct ANTLR3_STRING_FACTORY_struct * factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
244 pANTLR3_STRING (*newStr) (struct ANTLR3_STRING_FACTORY_struct * factory, pANTLR3_UINT
[all...]
H A Dantlr3commontoken.h45 /** How many tokens to allocate at once in the token factory
114 /** Indicates that a token was produced from the token factory and therefore
116 * token factory is responsible for deleting it.
120 /// A string factory that we can use if we ever need the text of a token
312 /** \brief ANTLR3 Token factory interface to create lots of tokens efficiently
317 /** Pointers to the array of tokens that this factory has produced so far
331 * factory is created, then just copy the memory it uses into the new token.
335 /** Pointer to an input stream that is using this token factory (may be NULL)
342 pANTLR3_COMMON_TOKEN (*newToken) (struct ANTLR3_TOKEN_FACTORY_struct * factory);
347 void (*setInputStream) (struct ANTLR3_TOKEN_FACTORY_struct * factory, pANTLR3_INPUT_STREA
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/factorytest/
H A Dfactorytest.cpp4 Test client for remote object factory
8 access the remote factory. The remote object interfaces are declared
17 factorytest <factory-endpoint>
18 where <factory-endpoint> is the service endpoint of a factory server,
54 // default factory service endpoint:
55 const char *factory = "http://localhost:18085"; variable
65 char *endpoint; // factory service endpoint
69 Root(const char *factory, enum t__object object, char *name);
80 Root::Root(const char *factory, enu argument
119 Adder(const char *factory, enum t__object object, char *name) argument
152 Counter(const char *factory, enum t__object object, char *name) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/factorytest/
H A Dfactorytest.cpp4 Test client for remote object factory
8 access the remote factory. The remote object interfaces are declared
17 factorytest <factory-endpoint>
18 where <factory-endpoint> is the service endpoint of a factory server,
54 // default factory service endpoint:
55 const char *factory = "http://localhost:18085"; variable
65 char *endpoint; // factory service endpoint
69 Root(const char *factory, enum t__object object, char *name);
80 Root::Root(const char *factory, enu argument
119 Adder(const char *factory, enum t__object object, char *name) argument
152 Counter(const char *factory, enum t__object object, char *name) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dfs_filter.cpp46 const wxFilterClassFactory *factory = wxFilterClassFactory::Find(protocol); local
47 if (!factory)
59 wxInputStreamPtr stream(factory->NewStream(leftStream.release()));
69 if (factory->CanHandle(mime, wxSTREAM_MIMETYPE))
70 mime = GetMimeTypeFromExt(factory->PopExtension(left));
H A Dfs_arc.cpp56 wxArchiveFSCacheDataImpl(const wxArchiveClassFactory& factory,
58 wxArchiveFSCacheDataImpl(const wxArchiveClassFactory& factory,
87 const wxArchiveClassFactory& factory,
94 m_archive(factory.NewStream(*m_stream))
99 const wxArchiveClassFactory& factory,
105 m_archive(factory.NewStream(*m_stream))
206 wxArchiveFSCacheData(const wxArchiveClassFactory& factory,
208 wxArchiveFSCacheData(const wxArchiveClassFactory& factory,
226 const wxArchiveClassFactory& factory,
228 : m_impl(new wxArchiveFSCacheDataImpl(factory, backe
86 wxArchiveFSCacheDataImpl( const wxArchiveClassFactory& factory, const wxBackingFile& backer) argument
98 wxArchiveFSCacheDataImpl( const wxArchiveClassFactory& factory, wxInputStream *stream) argument
225 wxArchiveFSCacheData( const wxArchiveClassFactory& factory, const wxBackingFile& backer) argument
232 wxArchiveFSCacheData( const wxArchiveClassFactory& factory, wxInputStream *stream) argument
287 Add( const wxString& name, const wxArchiveClassFactory& factory, wxInputStream *stream) argument
368 const wxArchiveClassFactory *factory; variable
433 const wxArchiveClassFactory *factory; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/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...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dfltfactory.tex11 For example, given a filename you can search for a factory that will
15 factory = wxFilterClassFactory::Find(filename, wxSTREAM_FILEEXT);
16 if (factory)
17 stream = factory->NewStream(new wxFFileInputStream(filename));
21 for a factory by MIME type, HTTP encoding or by wxFileSystem protocol.
60 Returns true if this factory can handle the given protocol, MIME type, HTTP
71 A static member that finds a factory that can handle a given protocol, MIME
73 factory if found, or NULL otherwise. It does not give away ownership of the
74 factory.
92 const wxFilterClassFactory *factory
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/
H A DMakefile.am7 calc calc++ dime dom events events++ factory factorytest gmt \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/
H A DMakefile.am7 calc calc++ dime dom events events++ factory factorytest gmt \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/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,

Completed in 275 milliseconds

1234