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

1 2 3 4 5 6 7 8 91011>>

  /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/nist-sip/java/gov/nist/javax/sip/message/
package.html 3 Class definitions for SIP messages and message 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...]
DOMTest.java 30 private DOMTestDocumentBuilderFactory factory; field in class:DOMTest
37 * @param factory
40 public DOMTest(DOMTestDocumentBuilderFactory factory) {
41 if (factory == null) {
42 throw new NullPointerException("factory");
44 this.factory = factory;
49 * factory to meet requirements on the parser configuration. setFactory
53 factory = null;
59 protected void setFactory(DOMTestDocumentBuilderFactory factory) {
    [all...]
JAXPDOMTestDocumentBuilderFactory.java 31 private DocumentBuilderFactory factory; field in class:JAXPDOMTestDocumentBuilderFactory
36 * @param factory null for default JAXP provider. If not null,
37 * factory will be mutated in constructor and should be released
46 factory = DocumentBuilderFactory.newInstance();
49 factory = baseFactory;
56 settings[i].applySetting(factory);
60 this.builder = factory.newDocumentBuilder();
80 DocumentBuilderFactory newFactory = factory.newInstance();
145 return factory.isCoalescing();
149 return factory.isExpandEntityReferences()
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
Spannable_FactoryTest.java 22 import android.text.Spannable.Factory;
28 @TestTargetClass(Factory.class)
37 + "Spannable.Factory#newSpannable(CharSequence) when param CharSequence is null")
40 Factory factory = Spannable.Factory.getInstance(); local
42 Spannable spannable = factory.newSpannable(text);
48 factory.newSpannable(null);
60 Spannable.Factory factory = Spannable.Factory.getInstance() local
    [all...]
Editable_FactoryTest.java 22 import android.text.Editable.Factory;
27 @TestTargetClass(Editable.Factory.class)
30 Factory mFactory;
44 // new the Factory instance
45 mFactory = new Editable.Factory();
59 // new the Factory instance
60 mFactory = Factory.getInstance();
61 assertTrue(mFactory instanceof Editable.Factory);
  /external/nist-sip/java/gov/nist/javax/sip/header/
package.html 5 an implementation of the JAIN-SIP header factory.
  /external/chromium/base/
weak_ptr_unittest.cc 42 WeakPtrFactory<int> factory(&data);
43 WeakPtr<int> ptr = factory.GetWeakPtr();
49 WeakPtrFactory<int> factory(&data);
50 WeakPtr<int> ptr = factory.GetWeakPtr();
60 WeakPtrFactory<int> factory(&data);
61 ptr = factory.GetWeakPtr();
70 WeakPtrFactory<int> factory(&data);
71 a = factory.GetWeakPtr();
72 b = factory.GetWeakPtr();
82 WeakPtrFactory<Derived> factory(&data)
    [all...]
  /frameworks/base/core/jni/
android_emoji_EmojiFactory.cpp 109 JNIEnv* env, EmojiFactory* factory, jstring name) {
113 (jint)factory, name);
137 EmojiFactory *factory = gCaller->TryCallGetImplementation(str.string()); local
138 // EmojiFactory *factory = EmojiFactory::GetImplementation(str.string());
139 if (NULL == factory) {
144 return create_java_EmojiFactory(env, factory, name);
154 EmojiFactory *factory = gCaller->TryCallGetAvailableImplementation(); local
155 // EmojiFactory *factory = EmojiFactory::GetAvailableImplementation();
156 if (NULL == factory) {
159 String16 name_16(String8(factory->Name()))
170 EmojiFactory *factory = reinterpret_cast<EmojiFactory *>(nativeEmojiFactory); local
209 EmojiFactory *factory = reinterpret_cast<EmojiFactory *>(nativeEmojiFactory); local
215 EmojiFactory *factory = reinterpret_cast<EmojiFactory *>(nativeEmojiFactory); local
221 EmojiFactory *factory = reinterpret_cast<EmojiFactory *>(nativeEmojiFactory); local
227 EmojiFactory *factory = reinterpret_cast<EmojiFactory *>(nativeEmojiFactory); local
233 EmojiFactory *factory = reinterpret_cast<EmojiFactory *>(nativeEmojiFactory); local
239 EmojiFactory *factory = reinterpret_cast<EmojiFactory *>(nativeEmojiFactory); local
245 EmojiFactory *factory = reinterpret_cast<EmojiFactory *>(nativeEmojiFactory); local
251 EmojiFactory *factory = reinterpret_cast<EmojiFactory *>(nativeEmojiFactory); local
    [all...]
  /external/v8/src/
factory.cc 33 #include "factory.h"
40 Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
46 Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size) {
52 Handle<StringDictionary> Factory::NewStringDictionary(int at_least_space_for) {
59 Handle<NumberDictionary> Factory::NewNumberDictionary(int at_least_space_for) {
66 Handle<DescriptorArray> Factory::NewDescriptorArray(int number_of_descriptors) {
74 Handle<String> Factory::LookupSymbol(Vector<const char> string) {
79 Handle<String> Factory::NewStringFromAscii(Vector<const char> string,
84 Handle<String> Factory::NewStringFromUtf8(Vector<const char> string,
90 Handle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string
    [all...]
  /development/tools/zoneinfo/tzdata2010k/
factory 2 # @(#)factory 8.2
11 Zone Factory 0 - "Local time zone must be set--see zic manual page"
  /external/guava/src/com/google/common/util/concurrent/
DaemonThreadFactory.java 32 private final ThreadFactory factory; field in class:DaemonThreadFactory
34 public DaemonThreadFactory(ThreadFactory factory) {
35 Preconditions.checkNotNull(factory);
36 this.factory = factory;
40 Thread t = factory.newThread(r);
  /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...]
  /external/chromium/third_party/icu/source/i18n/
nultrans.h 24 * @internal Use transliterator factory methods instead since this class will be removed in that release.
32 * @internal Use transliterator factory methods instead since this class will be removed in that release.
38 * @internal Use transliterator factory methods instead since this class will be removed in that release.
44 * @internal Use transliterator factory methods instead since this class will be removed in that release.
50 * @internal Use transliterator factory methods instead since this class will be removed in that release.
  /external/icu4c/i18n/
nultrans.h 24 * @internal Use transliterator factory methods instead since this class will be removed in that release.
32 * @internal Use transliterator factory methods instead since this class will be removed in that release.
38 * @internal Use transliterator factory methods instead since this class will be removed in that release.
44 * @internal Use transliterator factory methods instead since this class will be removed in that release.
50 * @internal Use transliterator factory methods instead since this class will be removed in that release.
  /external/skia/include/core/
SkTRegistry.h 28 typedef T (*Factory)(P);
30 SkTRegistry(Factory fact) {
51 Factory factory() const { return fFact; } function in class:SkTRegistry
54 Factory fFact;
SkFlattenable.h 38 typedef SkFlattenable* (*Factory)(SkFlattenableReadBuffer&);
42 /** Implement this to return a factory function pointer that can be called
46 virtual Factory getFactory() = 0;
49 be passed to your Factory function, returned by getFactory().
58 static Factory NameToFactory(const char name[]);
59 static const char* FactoryToName(Factory);
60 static void Register(const char name[], Factory);
64 Registrar(const char name[], Factory factory) {
65 SkFlattenable::Register(name, factory);
    [all...]
  /external/skia/tests/
TestClassDef.h 17 static Test* Factory(void*) { return SkNEW(classname); } \
22 static TestRegistry gReg(classname::Factory); \
  /external/webkit/WebKit/win/
WebKitCOMAPI.cpp 55 COMPtr<IClassFactory>& factory = result.first->second; local
57 if (added && FAILED(DllGetClassObject(clsid, __uuidof(factory), reinterpret_cast<void**>(&factory))))
58 factory = 0;
60 return factory;
65 COMPtr<IClassFactory> factory = classFactory(rclsid); local
66 if (!factory)
69 return factory->CreateInstance(pUnkOuter, riid, ppvObject);
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
TrustManagerFactorySpiTest.java 41 private TrustManagerFactorySpiImpl factory = new TrustManagerFactorySpiImpl(); field in class:TrustManagerFactorySpiTest
72 factory.reset();
84 assertTrue(factory.isEngineInitCalled());
85 assertEquals(ks, factory.getKs());
86 factory.reset();
88 assertTrue(factory.isEngineInitCalled());
89 assertNull(factory.getKs());
105 factory.reset();
118 assertTrue(factory.isEngineInitCalled());
119 assertEquals(pr, factory.getSpec())
    [all...]
  /dalvik/vm/compiler/codegen/arm/
README.txt 13 /* Thumb2-specific factory utilities */
14 #include "../Thumb2/Factory.c"
15 /* Factory utilities dependent on arch-specific features */
36 - Factory.c (low-level routines for instruction selections)
  /external/chromium/net/url_request/
url_request_job_manager.cc 25 URLRequest::ProtocolFactory* factory; member in struct:__anon2662::SchemeToFactory
31 { "http", URLRequestHttpJob::Factory },
32 { "https", URLRequestHttpJob::Factory },
33 { "file", URLRequestFileJob::Factory },
34 { "ftp", URLRequestNewFtpJob::Factory },
35 { "about", URLRequestAboutJob::Factory },
36 { "data", URLRequestDataJob::Factory },
74 // See if the request should be handled by a registered protocol factory.
75 // If the registered factory returns null, then we want to fall-back to the
76 // built-in protocol factory
    [all...]
  /external/jsr305/ri/src/main/java/javax/annotation/
WillCloseWhenClosed.java 10 * Used to annotate a constructor/factory parameter to indicate that returned

Completed in 879 milliseconds

1 2 3 4 5 6 7 8 91011>>