HomeSort by relevance Sort by last modified time
    Searched defs:factory (Results 201 - 225 of 1817) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/apache-http/src/org/apache/http/cookie/
CookieSpecRegistry.java 73 * @param factory the {@link CookieSpecFactory} class to register
77 public synchronized void register(final String name, final CookieSpecFactory factory) {
81 if (factory == null) {
82 throw new IllegalArgumentException("Cookie spec factory may not be null");
84 registeredSpecs.put(name.toLowerCase(Locale.ENGLISH), factory); local
116 CookieSpecFactory factory = registeredSpecs.get(name.toLowerCase(Locale.ENGLISH)); local
117 if (factory != null) {
118 return factory.newInstance(params);
  /external/chromium-trace/catapult/third_party/Paste/tests/
test_recursive.py 72 def factory(app): function in function:test_ForwardRequest_factory.TestForwardRequestMiddleware.__call__
74 raise ForwardRequestException(factory=factory)
  /external/dagger2/core/src/test/java/dagger/internal/
MapProviderFactoryTest.java 56 Factory<Map<String, Provider<Integer>>> factory = MapProviderFactory local
72 .that(factory.get().entrySet())
  /external/deqp/modules/egl/
teglTestPackage.cpp 169 const eglu::NativeDisplayFactory& factory = eglu::selectNativeDisplayFactory(testCtx.getPlatform().getEGLPlatform().getNativeDisplayFactoryRegistry(), testCtx.getCommandLine()); local
171 return factory;
  /external/guava/guava-tests/test/com/google/common/io/
SourceSinkTester.java 37 * @param <F> the factory type
74 protected final F factory; field in class:SourceSinkTester
81 SourceSinkTester(F factory, T data, String suiteName, String caseDesc, Method method) {
83 this.factory = checkNotNull(factory);
85 this.expected = checkNotNull(factory.getExpected(data));
110 factory.tearDown();
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
UnicodeTransform.java 21 public interface Factory {
25 private static Factory factory = new IcuUnicodeNormalizerFactory(); field in class:UnicodeTransform
27 public static synchronized Factory getFactory() {
28 return factory;
31 public static synchronized void setFactory(Factory factory) {
32 UnicodeTransform.factory = factory;
36 return factory.getInstance(type)
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
UnicodeTransform.java 20 public interface Factory {
24 private static Factory factory = new IcuUnicodeNormalizerFactory(); field in class:UnicodeTransform
26 public static synchronized Factory getFactory() {
27 return factory;
30 public static synchronized void setFactory(Factory factory) {
31 UnicodeTransform.factory = factory;
35 return factory.getInstance(type)
    [all...]
  /external/libweave/third_party/chromium/base/memory/
weak_ptr_unittest.cc 32 TargetWithFactory() : factory(this) {}
33 WeakPtrFactory<Target> factory; member in struct:base::__anon17403::TargetWithFactory
40 WeakPtrFactory<int> factory(&data);
41 WeakPtr<int> ptr = factory.GetWeakPtr();
47 WeakPtrFactory<int> factory(&data);
48 WeakPtr<int> ptr = factory.GetWeakPtr();
58 WeakPtrFactory<int> factory(&data);
59 ptr = factory.GetWeakPtr();
68 WeakPtrFactory<int> factory(&data);
69 a = factory.GetWeakPtr()
    [all...]
  /external/sfntly/cpp/src/sample/subsetter/
subset_util.cc 59 FontFactoryPtr factory; local
60 factory.Attach(FontFactory::GetInstance());
63 factory->LoadFonts(&input_buffer, &font_array);
74 Ptr<Subsetter> subsetter = new Subsetter(font_array[0], factory);
90 factory->SerializeFont(new_font, &output_stream);
  /external/sfntly/cpp/src/test/
otf_basic_editing_test.cc 32 FontFactoryPtr factory; local
33 factory.Attach(FontFactory::GetInstance());
35 BuilderForFontFile(SAMPLE_TTF_FILE, factory, &font_builder_array);
  /external/testng/src/main/java/org/testng/xml/dom/
DomXmlParser.java 38 DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); local
39 factory.setNamespaceAware(true); // never forget this!
40 DocumentBuilder builder = factory.newDocumentBuilder();
  /external/v8/src/
property-descriptor.cc 8 #include "src/factory.h"
116 Factory* factory = isolate->factory(); local
117 Handle<JSObject> result = factory->NewJSObject(isolate->object_function());
119 CreateDataProperty(isolate, result, factory->value_string(), value());
122 CreateDataProperty(isolate, result, factory->writable_string(),
123 factory->ToBoolean(writable()));
126 CreateDataProperty(isolate, result, factory->get_string(), get());
129 CreateDataProperty(isolate, result, factory->set_string(), set())
    [all...]
  /external/v8/test/cctest/compiler/
test-loop-assignment-analysis.cc 41 AstValueFactory* factory = parse_info.ast_value_factory(); local
50 const i::AstRawString* name = factory->GetOneByteString(var_name);
  /external/v8/test/cctest/
test-slots-buffer.cc 17 Factory* factory = isolate->factory(); local
22 Handle<FixedArray> array = factory->NewFixedArray(2, TENURED);
64 Factory* factory = isolate->factory(); local
74 Handle<FixedArray> fake_object = factory->NewFixedArray(23, TENURED);
84 Handle<FixedArray> new_space_object = factory->NewFixedArray(23);
94 factory->NewFixedArray(23, TENURED)
    [all...]
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDAppClient+Internal.h 32 @property(nonatomic, strong) RTCPeerConnectionFactory *factory; variable
  /frameworks/base/libs/hwui/tests/macrobench/
TestSceneRunner.cpp 84 ContextFactory factory; local
86 rootNode.get(), &factory));
  /libcore/dom/src/test/java/org/w3c/domts/
JUnitTestSuiteAdapter.java 32 DOMTestDocumentBuilderFactory factory = test.getFactory(); local
42 domtest = testConstructor.newInstance(new Object[] { factory });
  /libcore/luni/src/test/java/libcore/java/security/cert/
SubjectAlternativeNameTest.java 68 CertificateFactory factory = CertificateFactory.getInstance("X.509"); local
69 return (X509Certificate) factory.generateCertificate(new ByteArrayInputStream(encoded));
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentGeteEementById.java 24 DOMDocumentBuilderFactory factory; field in class:DocumentGeteEementById
31 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
33 builder = factory.getBuilder();
40 factory = null;
DocumentTypeInternalSubset.java 24 DOMDocumentBuilderFactory factory; field in class:DocumentTypeInternalSubset
31 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
33 builder = factory.getBuilder();
40 factory = null;
DocumentTypePublicId.java 45 DOMDocumentBuilderFactory factory; field in class:DocumentTypePublicId
52 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
54 builder = factory.getBuilder();
61 factory = null;
DocumentTypeSystemId.java 41 DOMDocumentBuilderFactory factory; field in class:DocumentTypeSystemId
48 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
50 builder = factory.getBuilder();
57 factory = null;
ElementHasAttribute.java 21 DOMDocumentBuilderFactory factory; field in class:ElementHasAttribute
28 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
30 builder = factory.getBuilder();
37 factory = null;
ElementRemoveAttributeNS.java 23 DOMDocumentBuilderFactory factory; field in class:ElementRemoveAttributeNS
30 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
32 builder = factory.getBuilder();
39 factory = null;
GetElementById.java 46 DOMDocumentBuilderFactory factory; field in class:GetElementById
53 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
55 builder = factory.getBuilder();
62 factory = null;

Completed in 438 milliseconds

1 2 3 4 5 6 7 891011>>