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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/misc/common/swig/include/2.0.11/octave/
factory.i 1 %include <typemaps/factory.swg>
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
factory.i 1 %include <typemaps/factory.swg>
  /prebuilts/misc/common/swig/include/2.0.11/python/
factory.i 1 %include <typemaps/factory.swg>
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
factory.i 1 %include <typemaps/factory.swg>
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
factory.i 1 %include <typemaps/factory.swg>
  /external/testng/src/test/java/test/factory/
FactoryChild.java 1 package test.factory;
DisabledFactorySampleTest.java 1 package test.factory;
3 import org.testng.annotations.Factory;
7 @Factory(enabled = false)
8 public Object[] factory() { method in class:DisabledFactorySampleTest
FactoryFailureSampleTest.java 1 package test.factory;
3 import org.testng.annotations.Factory;
8 @Factory
9 public Object[] factory() { method in class:FactoryFailureSampleTest
FactoryBaseSampleTest.java 1 package test.factory;
  /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/libchrome/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_PostDelayedTask_Basic(MessagePumpFactory factory);
23 void RunTest_PostDelayedTask_InDelayOrder(MessagePumpFactory factory);
24 void RunTest_PostDelayedTask_InPostOrder(MessagePumpFactory factory);
25 void RunTest_PostDelayedTask_InPostOrder_2(MessagePumpFactory factory);
26 void RunTest_PostDelayedTask_InPostOrder_3(MessagePumpFactory factory);
27 void RunTest_PostDelayedTask_SharedTimer(MessagePumpFactory factory);
28 void RunTest_EnsureDeletion(MessagePumpFactory factory);
    [all...]
  /device/linaro/hikey/factory-images/
generate-factory-images-package.sh 17 source $ANDROID_BUILD_TOP/device/common/clear-factory-images-variables.sh
18 # HiKey unfortunately can't use the ./generate-factory-images-common.sh script
19 source $ANDROID_BUILD_TOP/device/linaro/hikey/factory-images/generate-factory-images-hikey.sh
  /device/asus/fugu/
init.fugu.countrycode.sh 2 setprop ro.boot.wificountrycode `cat /factory/country`
  /external/dagger2/core/src/main/java/dagger/internal/
ScopedProvider.java 22 * A {@link Provider} implementation that memoizes the result of a {@link Factory} instance.
30 private final Factory<T> factory; field in class:ScopedProvider
33 private ScopedProvider(Factory<T> factory) {
34 assert factory != null;
35 this.factory = factory;
38 @SuppressWarnings("unchecked") // cast only happens when result comes from the factory
47 instance = result = factory.get()
    [all...]
  /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/webrtc/webrtc/base/
referencecountedsingletonfactory_unittest.cc 42 ReferenceCountedSingletonFactory<MyExistenceWatcher> *factory) {
43 rcsf_ptr<MyExistenceWatcher> ptr(factory);
49 TestReferenceCountedSingletonFactory factory; local
51 DoCreateAndGoOutOfScope(&factory);
56 TestReferenceCountedSingletonFactory factory; local
57 rcsf_ptr<MyExistenceWatcher> ptr(&factory);
60 DoCreateAndGoOutOfScope(&factory);
65 TestReferenceCountedSingletonFactory factory; local
66 rcsf_ptr<MyExistenceWatcher> one(&factory), two(&factory);
72 TestReferenceCountedSingletonFactory factory; local
83 TestReferenceCountedSingletonFactory factory; local
93 TestReferenceCountedSingletonFactory factory; local
103 TestReferenceCountedSingletonFactory factory; local
119 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/autotest/server/hosts/
factory_unittest.py 11 from autotest_lib.server.hosts import base_label_unittest, factory
22 """Only method called by factory."""
33 """Only method called by factory."""
75 self._orig_ssh_engine = factory.SSH_ENGINE
76 self._orig_types = factory.host_types
77 self._orig_dict = factory.OS_HOST_DICT
78 self._orig_cros_host = factory.cros_host.CrosHost
79 self._orig_local_host = factory.local_host.LocalHost
80 self._orig_ssh_host = factory.ssh_host.SSHHost
82 self.host_types = factory.host_types = [
    [all...]
  /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...]
  /cts/suite/audio_quality/test/
TaskCaseCommon.h 33 GenericFactory factory; local
35 setup = factory.createTask(TaskGeneric::ETaskSetup);
37 action = factory.createTask(TaskGeneric::ETaskAction);
  /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/fugu/factory-images/
generate-factory-images-package.sh 17 source ../../../common/clear-factory-images-variables.sh
24 source ../../../common/generate-factory-images-common.sh

Completed in 423 milliseconds

1 2 3 4 5 6 7 8 91011>>