HomeSort by relevance Sort by last modified time
    Searched refs:factory (Results 51 - 75 of 1191) sorted by null

1 23 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentGeteEementById.java 30 DOMDocumentBuilderFactory factory; field in class:DocumentGeteEementById
37 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
39 builder = factory.getBuilder();
46 factory = null;
DocumentTypeInternalSubset.java 30 DOMDocumentBuilderFactory factory; field in class:DocumentTypeInternalSubset
37 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
39 builder = factory.getBuilder();
46 factory = null;
DocumentTypePublicId.java 51 DOMDocumentBuilderFactory factory; field in class:DocumentTypePublicId
58 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
60 builder = factory.getBuilder();
67 factory = null;
DocumentTypeSystemId.java 47 DOMDocumentBuilderFactory factory; field in class:DocumentTypeSystemId
54 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
56 builder = factory.getBuilder();
63 factory = null;
ElementRemoveAttributeNS.java 29 DOMDocumentBuilderFactory factory; field in class:ElementRemoveAttributeNS
36 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
38 builder = factory.getBuilder();
45 factory = null;
GetElementById.java 52 DOMDocumentBuilderFactory factory; field in class:GetElementById
59 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
61 builder = factory.getBuilder();
68 factory = null;
HCNamedNodeMapInvalidType.java 48 DOMDocumentBuilderFactory factory; field in class:HCNamedNodeMapInvalidType
55 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
57 builder = factory.getBuilder();
64 factory = null;
HCNotationsRemoveNamedItemNS.java 46 DOMDocumentBuilderFactory factory; field in class:HCNotationsRemoveNamedItemNS
53 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
55 builder = factory.getBuilder();
62 factory = null;
HCNotationsSetNamedItemNS.java 47 DOMDocumentBuilderFactory factory; field in class:HCNotationsSetNamedItemNS
54 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
56 builder = factory.getBuilder();
63 factory = null;
HasAttributes.java 49 DOMDocumentBuilderFactory factory; field in class:HasAttributes
56 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
58 builder = factory.getBuilder();
65 factory = null;
InternalSubset.java 50 DOMDocumentBuilderFactory factory; field in class:InternalSubset
57 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
59 builder = factory.getBuilder();
66 factory = null;
Normalize.java 56 DOMDocumentBuilderFactory factory; field in class:Normalize
63 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
65 builder = factory.getBuilder();
72 factory = null;
PublicId.java 49 DOMDocumentBuilderFactory factory; field in class:PublicId
56 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
58 builder = factory.getBuilder();
65 factory = null;
SystemId.java 49 DOMDocumentBuilderFactory factory; field in class:SystemId
56 factory = new DOMDocumentBuilderFactory(DOMDocumentBuilderFactory
58 builder = factory.getBuilder();
65 factory = null;
  /libcore/support/src/test/java/tests/support/
Support_ClassLoader.java 35 Support_ClassLoader factory; local
38 factory = (Support_ClassLoader)Class.forName(
41 factory = (Support_ClassLoader)Class.forName(
45 return factory.getClassLoader(url, parent);
  /frameworks/opt/emoji/
EmojiFactory.cpp 98 EmojiFactory *factory = (*get_emoji_factory)(); local
99 if (NULL == factory) {
100 LOGE("Returned factory is NULL");
105 const char *name = factory->Name();
112 delete factory;
117 g_factories->push(factory);
118 // dlclose() must not be called here, since returned factory may point to
155 EmojiFactory *factory = g_factories->itemAt(i); local
156 if (!strcmp(name, factory->Name())) {
157 return factory;
168 EmojiFactory *factory = g_factories->itemAt(i); local
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserFactory.java 13 * The name of actual factory class will be determined based on several parameters.
15 * (no access to system properties or file system) so name of parser class factory to use
17 * must be passed explicitly. If no name of parser factory was passed (or is null)
45 a system property containing a comma separated list of factory
72 * Protected constructor to be called by factory implementations.
81 * Set the features to be set when XML Pull Parser is created by this factory.
82 * <p><b>NOTE:</b> factory features are not used for XML Serializer.
97 * <p><b>NOTE:</b> factory features are not used for XML Serializer.
110 * Specifies that the parser produced by this factory will provide
123 * Indicates whether or not the factory is configured to produc
295 XmlPullParserFactory factory = null; local
    [all...]
  /external/skia/src/core/
SkFlattenable.cpp 74 SkFlattenable::Factory factory = NULL; local
81 factory = fFactoryArray[index];
82 // if we recorded an index, but failed to get a factory, we need
84 if (NULL == factory) {
91 factory = (SkFlattenable::Factory)readFunctionPtr();
95 if (factory) {
98 obj = (*factory)(*this);
166 SkFlattenable::Factory factory = NULL
    [all...]
  /libcore/support/src/test/java/tests/security/
KeyFactoryTest.java 37 private KeyFactory factory; field in class:KeyFactoryTest
49 factory = getFactory();
86 privateKeySpec = factory.getKeySpec(DefaultKeys.getPrivateKey(algorithmName),
96 privateKey = factory.generatePrivate(privateKeySpec);
103 publicKeySpec = factory.getKeySpec(DefaultKeys.getPublicKey(algorithmName),
113 publicKey = factory.generatePublic(publicKeySpec);
  /external/chromium/net/socket/
client_socket_factory.cc 65 SSLClientSocketFactory factory) {
66 g_ssl_factory = factory;
  /external/chromium/net/url_request/
url_request_filter.h 9 // URLRequest::RegisterProtocolFactory("http", &URLRequestFilter::Factory);
13 // &URLRequestCustomJob::Factory);
15 // If URLRequestFilter::Factory can't find a handle for the request, it passes
16 // it through to URLRequestInetJob::Factory and lets the default network stack
42 static URLRequest::ProtocolFactory Factory;
46 URLRequest::ProtocolFactory* factory);
52 bool AddUrlHandler(const GURL& url, URLRequest::ProtocolFactory* factory);
  /external/skia/src/images/
SkImageDecoder_Factory.cpp 27 SkImageDecoder* SkImageDecoder::Factory(SkStream* stream) {
30 SkImageDecoder* codec = curr->factory()(stream);
49 SkMovie* movie = curr->factory()(stream);
  /external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/webkit/
builders.py 45 for name, factory, slaves, periodic in _builders:
49 'factory': factory(),
  /frameworks/base/media/libeffects/factory/
Android.mk 3 # Effect factory library
  /libcore/dom/src/test/java/org/w3c/domts/
JUnitTestSuiteAdapter.java 32 DOMTestDocumentBuilderFactory factory = test.getFactory(); local
42 domtest = testConstructor.newInstance(new Object[] { factory });

Completed in 287 milliseconds

1 23 4 5 6 7 8 91011>>