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

1234567891011>>

/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A D__init__.py32 from factory import get
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
H A DPerformanceResultsPerspective.java22 private IPageLayout factory; field in class:PerformanceResultsPerspective
29 this.factory = layout;
40 this.factory.createFolder(
44 this.factory.getEditorArea());
49 this.factory.createFolder(
53 this.factory.getEditorArea());
59 this.factory.createFolder(
63 this.factory.getEditorArea());
66 this.factory.setEditorAreaVisible(false);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFA.java44 /** Which factory created this NFA? */
45 protected NFAFactory factory = null; field in class:NFA
66 return factory;
69 public void setFactory(NFAFactory factory) { argument
70 this.factory = factory;
/external/antlr/antlr-3.4/runtime/C/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
213 newFromTree(pANTLR3_ARBORETUM factory, pANTLR3_COMMON_TREE tree) argument
233 newFromToken(pANTLR3_ARBORETUM factory, pANTLR3_COMMON_TOKEN token) argument
252 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);
64 static void factoryReset (pANTLR3_TOKEN_FACTORY factory);
68 static void newPool (pANTLR3_TOKEN_FACTORY factory);
69 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
137 setInputStream(pANTLR3_TOKEN_FACTORY factory, pANTLR3_INPUT_STREAM input) argument
152 newPool(pANTLR3_TOKEN_FACTORY factory) argument
191 newPoolToken(pANTLR3_TOKEN_FACTORY factory) argument
232 factoryReset(pANTLR3_TOKEN_FACTORY factory) argument
242 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 newRawUTF16 (pANTLR3_STRING_FACTORY factory);
40 static pANTLR3_STRING newSize8 (pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size);
41 static pANTLR3_STRING newSizeUTF16 (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 newPtrUTF16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
44 static pANTLR3_STRING newPtrUTF16_UTF16 (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 newStrUTF16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT
100 pANTLR3_STRING_FACTORY factory; local
186 newRaw8(pANTLR3_STRING_FACTORY factory) argument
215 newRawUTF16(pANTLR3_STRING_FACTORY factory) argument
421 newSize8(pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size) argument
449 newSizeUTF16(pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size) argument
476 newPtr8(pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr, ANTLR3_UINT32 size) argument
509 newPtrUTF16_8(pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr, ANTLR3_UINT32 size) argument
557 newPtrUTF16_UTF16(pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr, ANTLR3_UINT32 size) argument
592 newStr8(pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr) argument
603 newStrUTF16_8(pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr) argument
614 newStrUTF16_UTF16(pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr) argument
632 destroy(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string) argument
677 printable8(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING instr) argument
724 printableUTF16(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING instr) argument
782 closeFactory(pANTLR3_STRING_FACTORY factory) argument
[all...]
/external/chromium/base/memory/
H A Dweak_ptr_unittest.cc45 WeakPtrFactory<int> factory(&data);
46 WeakPtr<int> ptr = factory.GetWeakPtr();
52 WeakPtrFactory<int> factory(&data);
53 WeakPtr<int> ptr = factory.GetWeakPtr();
63 WeakPtrFactory<int> factory(&data);
64 ptr = factory.GetWeakPtr();
73 WeakPtrFactory<int> factory(&data);
74 a = factory.GetWeakPtr();
75 b = factory.GetWeakPtr();
85 WeakPtrFactory<Derived> factory(
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
H A DSSLServerSocketFactoryTest.java71 SSLServerSocketFactory factory = (SSLServerSocketFactory)SSLServerSocketFactory.getDefault();
73 if (!factory.getClass().getName().equals(customServerSocketFactory.getClass().getName())) {
74 fail("incorrect instance: " + factory.getClass()+
78 if (!(factory instanceof DefaultSSLServerSocketFactory)) {
79 fail("incorrect instance " + factory.getClass());
81 if (factory.getDefaultCipherSuites().length != 0) {
84 if (factory.getSupportedCipherSuites().length != 0) {
88 factory.createServerSocket(0);
H A DSSLSocketFactoryTest.java71 SSLSocketFactory factory = (SSLSocketFactory)SSLSocketFactory.getDefault();
73 if (!factory.getClass().getName().equals(customSocketFactory.getClass().getName())) {
74 fail("incorrect instance: " + factory.getClass()+
78 if (!(factory instanceof DefaultSSLSocketFactory)) {
79 fail("incorrect instance " + factory.getClass());
81 if (factory.getDefaultCipherSuites().length != 0) {
84 if (factory.getSupportedCipherSuites().length != 0) {
88 factory.createSocket("localhost", 2021);
/external/icu4c/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);
/external/webkit/Source/WebKit/win/
H A DWebKitCOMAPI.cpp55 COMPtr<IClassFactory>& factory = result.first->second; local
57 if (added && FAILED(DllGetClassObject(clsid, __uuidof(factory), reinterpret_cast<void**>(&factory))))
58 factory = 0;
60 return factory;
65 COMPtr<IClassFactory> factory = classFactory(rclsid); local
66 if (!factory)
69 return factory->CreateInstance(pUnkOuter, riid, ppvObject);
/external/antlr/antlr-3.4/runtime/C/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
206 /** Definition of the string factory interface, which creates and tracks
211 /** List of all the strings that have been allocated by the factory
221 pANTLR3_STRING (*newRaw) (struct ANTLR3_STRING_FACTORY_struct * factory);
226 pANTLR3_STRING (*newSize) (struct ANTLR3_STRING_FACTORY_struct * factory, ANTLR3_UINT32 size);
232 pANTLR3_STRING (*newPtr) (struct ANTLR3_STRING_FACTORY_struct * factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
237 pANTLR3_STRING (*newPtr8) (struct ANTLR3_STRING_FACTORY_struct * factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
243 pANTLR3_STRING (*newStr) (struct ANTLR3_STRING_FACTORY_struct * factory, pANTLR3_UINT
[all...]
/external/javassist/src/test/test/javassist/proxy/
H A DProxyFactoryCompatibilityTest.java13 * test which checks that it is still possible to use the old style proxy factory api
45 // create a factory which, by default, uses caching
46 ProxyFactory factory = new ProxyFactory();
47 factory.setSuperclass(TestClass.class);
48 factory.setInterfaces(new Class[] { TestInterface.class});
49 factory.setFilter(filter);
52 Class proxyClass1 = factory.createClass();
59 Class proxyClass2 = factory.createClass();
68 // create a factory which, by default, uses caching then set the handler so it creates
71 factory
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DAuthSchemeRegistry.java61 * Registers a {@link AuthSchemeFactory} with the given identifier. If a factory with the
71 * @param factory the {@link AuthSchemeFactory} class to register
77 final AuthSchemeFactory factory) {
81 if (factory == null) {
82 throw new IllegalArgumentException("Authentication scheme factory may not be null");
84 registeredSchemes.put(name.toLowerCase(Locale.ENGLISH), factory);
117 AuthSchemeFactory factory = registeredSchemes.get(name.toLowerCase(Locale.ENGLISH));
118 if (factory != null) {
119 return factory.newInstance(params);
75 register( final String name, final AuthSchemeFactory factory) argument
/external/apache-http/src/org/apache/http/cookie/
H A DCookieSpecRegistry.java68 * @param factory the {@link CookieSpecFactory} class to register
72 public synchronized void register(final String name, final CookieSpecFactory factory) { argument
76 if (factory == null) {
77 throw new IllegalArgumentException("Cookie spec factory may not be null");
79 registeredSpecs.put(name.toLowerCase(Locale.ENGLISH), factory);
111 CookieSpecFactory factory = registeredSpecs.get(name.toLowerCase(Locale.ENGLISH));
112 if (factory != null) {
113 return factory.newInstance(params);
/external/javassist/src/main/javassist/util/proxy/
H A DProxyObjectInputStream.java26 * from a proxy factory configured with {@link ProxyFactory#useWriteReplace} set to false.
79 ProxyFactory factory = new ProxyFactory();
82 factory.setUseCache(true);
83 factory.setUseWriteReplace(false);
84 factory.setSuperclass(superClass);
85 factory.setInterfaces(interfaces);
86 Class proxyClass = factory.createClass(signature);
/external/skia/src/core/
H A DSkFlattenable.cpp118 SkFlattenable::Factory factory = NULL; local
125 factory = fFactoryArray[index];
126 // if we recorded an index, but failed to get a factory, we need
128 if (NULL == factory) {
135 factory = (SkFlattenable::Factory)readFunctionPtr();
139 if (factory) {
142 obj = (*factory)(*this);
153 SkFlattenable::Factory factory = NULL; variable
163 factory = fFactoryArray[index];
173 factory
[all...]
/external/v8/src/
H A Dbootstrapper.cc76 Factory* factory = isolate->factory(); local
86 factory->NewExternalStringFromAscii(resource);
153 Factory* factory() const { return isolate_->factory(); } function in class:BASE_EMBEDDED
318 Factory* factory = object->GetIsolate()->factory(); local
320 Handle<Map> new_to_map = factory->CopyMapDropTransitions(old_to_map);
327 Factory* factory = env->GetIsolate()->factory(); local
355 Factory* factory = isolate->factory(); local
465 Factory* factory = isolate->factory(); local
846 Factory* factory = isolate->factory(); local
1290 Factory* factory = isolate->factory(); local
1331 Factory* factory = source->GetIsolate()->factory(); local
1809 Factory* factory = global_context->GetIsolate()->factory(); local
1828 Factory* factory = holder->GetIsolate()->factory(); local
1857 Factory* factory = factory_function->GetIsolate()->factory(); local
1914 Factory* factory = isolate->factory(); local
2089 Factory* factory = builtins->GetIsolate()->factory(); local
2254 Factory* factory = from->GetIsolate()->factory(); local
[all...]
H A Dfunc-name-inferrer.cc71 return MakeNameFromStackHelper(0, isolate()->factory()->empty_string());
85 Factory* factory = isolate()->factory(); local
86 Handle<String> curr = factory->NewConsString(
87 factory->dot_symbol(), names_stack_.at(pos).name);
89 factory->NewConsString(prev, curr));
/external/chromium/chrome/common/net/gaia/
H A Dgaia_oauth_client_unittest.cc154 MockOAuthFetcherFactory factory; local
155 URLFetcher::set_factory(&factory);
156 factory.set_response_code(response_code);
157 factory.set_max_failure_count(4);
177 MockOAuthFetcherFactory factory; local
178 URLFetcher::set_factory(&factory);
179 factory.set_response_code(response_code);
180 factory.set_max_failure_count(4);
181 factory.set_results(kDummyGetTokensResult);
200 MockOAuthFetcherFactory factory; local
223 MockOAuthFetcherFactory factory; local
243 MockOAuthFetcherFactory factory; local
[all...]
/external/proguard/src/proguard/obfuscate/
H A DSpecialNameFactory.java39 * @param nameFactory the name factory from which original names will be
76 SpecialNameFactory factory = new SpecialNameFactory(new SimpleNameFactory());
80 System.out.println("["+factory.nextName()+"]");
/external/webkit/Source/WebCore/storage/
H A DIDBFactory.h51 static PassRefPtr<IDBFactory> create(IDBFactoryBackendInterface* factory) argument
53 return adoptRef(new IDBFactory(factory));
/external/apache-http/src/org/apache/http/client/params/
H A DClientParamBean.java48 public void setConnectionManagerFactoryClassName (final String factory) { argument
49 params.setParameter(ClientPNames.CONNECTION_MANAGER_FACTORY_CLASS_NAME, factory);
52 public void setConnectionManagerFactory(ClientConnectionManagerFactory factory) { argument
53 params.setParameter(ClientPNames.CONNECTION_MANAGER_FACTORY, factory);
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_manager_win.cc17 BrowserAccessibilityFactory* factory) {
22 factory);
34 BrowserAccessibilityFactory* factory)
35 : BrowserAccessibilityManager(parent_view, src, delegate, factory) {
13 Create( gfx::NativeView parent_view, const WebAccessibility& src, BrowserAccessibilityDelegate* delegate, BrowserAccessibilityFactory* factory) argument
30 BrowserAccessibilityManagerWin( HWND parent_view, const WebAccessibility& src, BrowserAccessibilityDelegate* delegate, BrowserAccessibilityFactory* factory) argument

Completed in 3428 milliseconds

1234567891011>>