HomeSort by relevance Sort by last modified time
    Searched refs:factory (Results 1 - 25 of 2365) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/proxy/
dhcp_proxy_script_fetcher_factory_unittest.cc 14 DhcpProxyScriptFetcherFactory factory; local
15 factory.set_enabled(false);
16 scoped_ptr<DhcpProxyScriptFetcher> fetcher(factory.Create(NULL));
22 DhcpProxyScriptFetcherFactory factory; local
23 factory.set_enabled(true);
26 scoped_ptr<DhcpProxyScriptFetcher> fetcher(factory.Create(context.get()));
40 DhcpProxyScriptFetcherFactory factory; local
42 EXPECT_TRUE(factory.enabled());
44 EXPECT_FALSE(factory.enabled());
47 factory.set_enabled(false)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DocumentBuilderSettingStrategy.java 38 DocumentBuilderFactory factory,
41 public abstract boolean hasSetting(DOMTestDocumentBuilderFactory factory);
45 public void applySetting(DocumentBuilderFactory factory, boolean value)
47 factory.setCoalescing(value);
50 public boolean hasSetting(DOMTestDocumentBuilderFactory factory) {
51 return factory.isCoalescing();
59 public void applySetting(DocumentBuilderFactory factory, boolean value)
61 factory.setExpandEntityReferences(value);
64 public boolean hasSetting(DOMTestDocumentBuilderFactory factory) {
65 return factory.isExpandEntityReferences()
    [all...]
DOMTestSuite.java 49 * @param factory may not be null
51 protected DOMTestSuite(DOMTestDocumentBuilderFactory factory) {
52 super(factory);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentBuilderSettingStrategy.java 19 public abstract void applySetting(DocumentBuilderFactory factory,
22 public abstract boolean hasSetting(DOMDocumentBuilderFactory factory);
25 public void applySetting(DocumentBuilderFactory factory,
27 factory.setCoalescing(value);
30 public boolean hasSetting(DOMDocumentBuilderFactory factory) {
31 return factory.isCoalescing();
37 public void applySetting(DocumentBuilderFactory factory, boolean value) {
38 factory.setExpandEntityReferences(value);
41 public boolean hasSetting(DOMDocumentBuilderFactory factory) {
42 return factory.isExpandEntityReferences()
    [all...]
DOMDocumentBuilderFactory.java 15 private DocumentBuilderFactory factory = null; field in class:DOMDocumentBuilderFactory
24 factory = DocumentBuilderFactory.newInstance();
26 if (factory == null) {
32 settings[i].applySetting(factory);
36 builder = factory.newDocumentBuilder();
56 return factory.isCoalescing();
60 return factory.isExpandEntityReferences();
64 return factory.isIgnoringElementContentWhitespace();
68 return factory.isNamespaceAware();
72 return factory.isValidating()
    [all...]
  /external/chromium_org/base/message_loop/
message_loop_test.h 14 // RUN_MESSAGE_LOOP_TESTS(UI, factory). Factory is a function called to create
21 void RunTest_PostTask(MessagePumpFactory factory);
22 void RunTest_PostTask_SEH(MessagePumpFactory factory);
23 void RunTest_PostDelayedTask_Basic(MessagePumpFactory factory);
24 void RunTest_PostDelayedTask_InDelayOrder(MessagePumpFactory factory);
25 void RunTest_PostDelayedTask_InPostOrder(MessagePumpFactory factory);
26 void RunTest_PostDelayedTask_InPostOrder_2(MessagePumpFactory factory);
27 void RunTest_PostDelayedTask_InPostOrder_3(MessagePumpFactory factory);
28 void RunTest_PostDelayedTask_SharedTimer(MessagePumpFactory factory);
    [all...]
  /external/chromium_org/chrome/browser/ui/views/frame/
native_browser_frame_factory.cc 11 NativeBrowserFrameFactory* factory = NULL; member in namespace:__anon9020
19 if (!factory)
20 factory = new NativeBrowserFrameFactory;
21 return factory->Create(browser_frame, browser_view);
26 delete factory;
27 factory = new_factory;
  /external/chromium_org/chrome/browser/resources/options/
factory_reset_overlay.css 5 #factory-reset-overlay {
  /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/
PerformanceResultsPerspective.java 22 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/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps.h 74 * For use with C projects, this macro calls the provided factory with
77 #define PPAPI_SIMPLE_USE_MAIN(factory, func) \
79 return factory(inst, func); \
  /external/chromium_org/crypto/
ec_signature_creator.cc 27 ECSignatureCreatorFactory* factory) {
28 // We should always clear the factory after each test to avoid
30 DCHECK(!g_factory_ || !factory);
31 g_factory_ = factory;
  /external/chromium_org/third_party/libjingle/source/talk/base/
referencecountedsingletonfactory_unittest.cc 59 ReferenceCountedSingletonFactory<MyExistenceWatcher> *factory) {
60 rcsf_ptr<MyExistenceWatcher> ptr(factory);
66 TestReferenceCountedSingletonFactory factory; local
68 DoCreateAndGoOutOfScope(&factory);
73 TestReferenceCountedSingletonFactory factory; local
74 rcsf_ptr<MyExistenceWatcher> ptr(&factory);
77 DoCreateAndGoOutOfScope(&factory);
82 TestReferenceCountedSingletonFactory factory; local
83 rcsf_ptr<MyExistenceWatcher> one(&factory), two(&factory);
89 TestReferenceCountedSingletonFactory factory; local
100 TestReferenceCountedSingletonFactory factory; local
110 TestReferenceCountedSingletonFactory factory; local
120 TestReferenceCountedSingletonFactory factory; local
136 TestReferenceCountedSingletonFactory factory; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFA.java 44 /** Which factory created this NFA? */
45 protected NFAFactory factory = null; field in class:NFA
66 return factory;
69 public void setFactory(NFAFactory factory) {
70 this.factory = factory;
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3commontree.c 56 // Factory functions for the Arboretum
58 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 chil
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_factory_unittest.cc 72 scoped_refptr<MockIDBFactory> factory = new MockIDBFactory(); local
77 factory->TestOpenBackingStore(origin1, temp_directory.path());
80 factory->TestOpenBackingStore(origin1, temp_directory.path());
84 factory->TestOpenBackingStore(origin2, temp_directory.path());
86 factory->TestCloseBackingStore(disk_store1);
87 factory->TestCloseBackingStore(disk_store3);
100 scoped_refptr<MockIDBFactory> factory = new MockIDBFactory(); local
105 factory->TestOpenBackingStore(origin, temp_directory.path());
107 // Give up the local refptr so that the factory has the only
112 factory->TestReleaseBackingStore(store_ptr, false)
131 scoped_refptr<MockIDBFactory> factory = new MockIDBFactory(); local
162 scoped_refptr<MockIDBFactory> factory = new MockIDBFactory(); local
213 scoped_refptr<DiskFullFactory> factory = new DiskFullFactory; local
234 scoped_refptr<IndexedDBFactory> factory = new IndexedDBFactory(NULL); local
265 scoped_refptr<IndexedDBFactory> factory = new IndexedDBFactory(NULL); local
307 scoped_refptr<IndexedDBFactory> factory = new IndexedDBFactory(NULL); local
334 scoped_refptr<IndexedDBFactory> factory = new IndexedDBFactory(NULL); local
360 scoped_refptr<IndexedDBFactory> factory = new IndexedDBFactory(NULL); local
434 scoped_refptr<IndexedDBFactory> factory = new IndexedDBFactory(NULL); local
    [all...]
  /external/chromium_org/components/url_matcher/
url_matcher_unittest.cc 169 URLMatcherConditionFactory factory;
171 factory.CreateHostPrefixCondition("foo").criterion());
173 factory.CreateHostSuffixCondition("foo").criterion());
175 factory.CreateHostContainsCondition("foo").criterion());
177 factory.CreateHostEqualsCondition("foo").criterion());
179 factory.CreatePathPrefixCondition("foo").criterion());
181 factory.CreatePathSuffixCondition("foo").criterion());
183 factory.CreatePathContainsCondition("foo").criterion());
185 factory.CreatePathEqualsCondition("foo").criterion());
187 factory.CreateQueryPrefixCondition("foo").criterion())
516 URLMatcherConditionFactory* factory = matcher.condition_factory(); local
601 URLMatcherConditionFactory* factory = matcher.condition_factory(); local
651 URLMatcherConditionFactory* factory = matcher.condition_factory(); local
669 URLMatcherConditionFactory* factory = matcher.condition_factory(); local
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
Spannable_FactoryTest.java 22 import android.text.Spannable.Factory;
28 Factory factory = Spannable.Factory.getInstance(); local
30 Spannable spannable = factory.newSpannable(text);
36 factory.newSpannable(null);
43 Spannable.Factory factory = Spannable.Factory.getInstance(); local
44 assertNotNull(factory);
    [all...]
  /external/chromium_org/google_apis/gcm/engine/
connection_factory_impl_unittest.cc 76 // A connection factory that stubs out network requests and overrides the
165 TestConnectionFactoryImpl* factory() { return &factory_; } function in class:gcm::__anon11204::ConnectionFactoryImplTest
196 EXPECT_FALSE(factory()->IsEndpointReachable());
197 factory()->Initialize(
201 ConnectionHandler* handler = factory()->GetConnectionHandler();
203 EXPECT_FALSE(factory()->IsEndpointReachable());
208 factory()->Initialize(
212 factory()->SetConnectResult(net::OK);
213 factory()->Connect();
214 EXPECT_TRUE(factory()->NextRetryAttempt().is_null())
    [all...]
  /cts/suite/audio_quality/test/
TaskCaseCommon.h 33 GenericFactory factory; local
35 setup = factory.createTask(TaskGeneric::ETaskSetup);
37 action = factory.createTask(TaskGeneric::ETaskAction);
  /external/chromium_org/third_party/sfntly/cpp/src/test/
test_font_utils.h 26 void BuilderForFontFile(const char* font_path, FontFactory* factory,
28 void SerializeFont(const char* font_path, FontFactory* factory, Font* font);
29 void LoadFont(const char* font_path, FontFactory* factory, FontArray* fonts);
  /external/sfntly/cpp/src/test/
test_font_utils.h 26 void BuilderForFontFile(const char* font_path, FontFactory* factory,
28 void SerializeFont(const char* font_path, FontFactory* factory, Font* font);
29 void LoadFont(const char* font_path, FontFactory* factory, FontArray* fonts);
  /device/asus/deb/factory-images/
generate-factory-images-package.sh 28 source ../../../common/clear-factory-images-variables.sh
36 source ../../../common/generate-factory-images-common.sh
  /device/asus/flo/factory-images/
generate-factory-images-package.sh 27 source ../../../common/clear-factory-images-variables.sh
34 source ../../../common/generate-factory-images-common.sh
  /device/asus/grouper/factory-images/
generate-factory-images-package.sh 51 source ../../../common/clear-factory-images-variables.sh
62 source ../../../common/generate-factory-images-common.sh
  /device/lge/hammerhead/factory-images/
generate-factory-images-package.sh 21 source ../../../common/clear-factory-images-variables.sh
29 source ../../../common/generate-factory-images-common.sh

Completed in 880 milliseconds

1 2 3 4 5 6 7 8 91011>>