HomeSort by relevance Sort by last modified time
    Searched refs:factory (Results 1 - 25 of 3862) 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;
  /external/r8/src/test/java/com/android/tools/r8/dex/
DexStringTest.java 17 DexItemFactory factory = new DexItemFactory(); local
18 checkEncodedLength(factory.createString("\u0000"), 2);
19 checkEncodedLength(factory.createString("\u0001"), 1);
20 checkEncodedLength(factory.createString("\u007f"), 1);
21 checkEncodedLength(factory.createString("\u0080"), 2);
22 checkEncodedLength(factory.createString("\u07ff"), 2);
23 checkEncodedLength(factory.createString("\u0800"), 3);
24 checkEncodedLength(factory.createString("\uffff"), 3);
25 checkEncodedLength(factory.createString("\ud800\udc00"), 6);
26 checkEncodedLength(factory.createString("\udbff\udfff"), 6)
31 DexItemFactory factory = new DexItemFactory(); local
    [all...]
DexItemFactoryTest.java 20 DexItemFactory factory = new DexItemFactory(); local
23 "B", factory.byteDescriptor, factory.byteType,
24 "C", factory.charDescriptor, factory.charType,
25 "D", factory.doubleDescriptor, factory.doubleType,
26 "F", factory.floatDescriptor, factory.floatType,
27 "I", factory.intDescriptor, factory.intType
53 DexItemFactory factory = new DexItemFactory(); local
    [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/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-$TARGET_PRODUCT.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/r8/src/main/java/com/android/tools/r8/graph/
DexAnnotation.java 63 DexItemFactory factory) {
64 return createSystemValueAnnotation(factory.annotationEnclosingClass, factory,
69 DexItemFactory factory) {
70 return createSystemValueAnnotation(factory.annotationEnclosingMethod, factory,
75 DexItemFactory factory) {
76 return annotation.annotation.type == factory.annotationEnclosingClass;
80 DexItemFactory factory) {
81 return annotation.annotation.type == factory.annotationEnclosingMethod
221 parts.add(toDexValue(signature.substring(at, endAt), factory)); local
    [all...]
  /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
23 """Only method called by factory."""
34 """Only method called by factory."""
78 self._orig_ssh_engine = factory.SSH_ENGINE
79 self._orig_types = factory.host_types
80 self._orig_dict = factory.OS_HOST_DICT
81 self._orig_cros_host = factory.cros_host.CrosHost
82 self._orig_local_host = factory.local_host.LocalHost
83 self._orig_ssh_host = factory.ssh_host.SSHHost
85 self.host_types = factory.host_types = [
    [all...]
  /external/mesa3d/src/compiler/glsl/
lower_vector_insert.cpp 37 factory.instructions = &factory_instructions;
47 ir_factory factory; member in class:__anon27370::vector_insert_visitor
66 factory.mem_ctx = ralloc_parent(expr);
79 factory.make_temp(expr->operands[0]->type, "vec_tmp");
83 factory.emit(assign(temp, expr->operands[0]));
84 factory.emit(assign(temp, expr->operands[1], mask));
87 *rv = new(factory.mem_ctx) ir_dereference_variable(temp);
103 factory.make_temp(expr->operands[0]->type, "vec_tmp");
106 factory.make_temp(expr->operands[1]->type, "src_temp");
108 factory.emit(assign(temp, expr->operands[0]))
    [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...]

Completed in 431 milliseconds

1 2 3 4 5 6 7 8 91011>>