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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/auth/
AuthSchemeFactory.java 44 AuthScheme newInstance(HttpParams params);
  /external/apache-http/src/org/apache/http/cookie/
CookieSpecFactory.java 44 CookieSpec newInstance(HttpParams params);
  /frameworks/base/core/java/android/util/
PoolableManager.java 23 T newInstance();
  /frameworks/base/tests/CoreTests/android/core/
ReflectArrayTest.java 31 Object intArray = Array.newInstance(Integer.TYPE, 2);
57 intArray = Array.newInstance(Integer.TYPE, 0);
63 Object strArray = Array.newInstance(String.class, 2);
81 Object intIntIntArray = Array.newInstance(Integer.TYPE, dimensions);
100 Object strStrStrArray = Array.newInstance(String.class, dimensions);
123 strStrStrArray = Array.newInstance(String[].class, dimensions2);
  /libcore/luni/src/main/java/com/ibm/icu4jni/charset/
CharsetICU.java 25 return CharsetDecoderICU.newInstance(this, icuCanonicalName);
29 return CharsetEncoderICU.newInstance(this, icuCanonicalName);
  /external/apache-http/src/org/apache/http/conn/
ClientConnectionManagerFactory.java 46 ClientConnectionManager newInstance(
  /external/apache-http/src/org/apache/http/impl/auth/
BasicSchemeFactory.java 46 public AuthScheme newInstance(final HttpParams params) {
DigestSchemeFactory.java 46 public AuthScheme newInstance(final HttpParams params) {
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFactory.java 25 *<p>See {@link #newInstance(String uri)} for lookup mechanism.</p>
46 * <p>Protected constructor as {@link #newInstance()}, {@link #newInstance(String uri)}
47 * or {@link #newInstance(String uri, String factoryClassName, ClassLoader classLoader)}
60 * newInstance(DEFAULT_OBJECT_MODEL_URI)
67 public static final XPathFactory newInstance() {
69 return newInstance(DEFAULT_OBJECT_MODEL_URI);
73 "XPathFactory#newInstance() failed to create an XPathFactory for the default object model: "
133 public static final XPathFactory newInstance(final String uri)
137 "XPathFactory#newInstance(String uri) cannot be called with uri == null
    [all...]
  /dalvik/tests/042-new-instance/src/
Main.java 31 * Tests Class.newInstance().
37 Object obj = c.newInstance();
47 Object obj = c.newInstance();
69 * Tests Constructor.newInstance().
88 Object obj = cons.newInstance();
111 Object obj = cons.newInstance();
135 CC.newInstance();
146 static Object newInstance() {
149 return c.newInstance();
  /dalvik/tests/045-reflect-array/src/
Main.java 23 intArray = Array.newInstance(Integer.TYPE, 2);
53 intArray = Array.newInstance(Integer.TYPE, 0);
62 strArray = Array.newInstance(String.class, 2);
87 intIntIntArray = Array.newInstance(Integer.TYPE, dimensions);
106 strStrStrArray = Array.newInstance(String.class, dimensions);
134 strStrStrArray = Array.newInstance(String[].class, dimensions2);
  /external/webkit/WebCore/bindings/v8/
V8Utilities.h 85 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>);
86 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::ObjectTemplate>);
87 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[]);
90 v8::Local<v8::Object> SafeAllocation::newInstance(v8::Handle<v8::Function> function)
95 return function->NewInstance();
98 v8::Local<v8::Object> SafeAllocation::newInstance(v8::Handle<v8::ObjectTemplate> objectTemplate)
103 return objectTemplate->NewInstance();
106 v8::Local<v8::Object> SafeAllocation::newInstance(v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[])
111 return function->NewInstance(argc, argv);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStoreBuilderTest.java 113 * test for method newInstance(KeyStore, KeyStore.ProtectionParameter)
118 method = "newInstance",
127 KeyStore.Builder.newInstance(null, null);
134 KeyStore.Builder.newInstance(null, protPass);
144 KeyStore.Builder.newInstance(ks, null);
157 KeyStore.Builder.newInstance(ks, pp[i]);
164 ksB = KeyStore.Builder.newInstance(ks, pp[i]);
168 ksB = KeyStore.Builder.newInstance(ks, pp[i]);
223 * Test for methods: <code>newInstance(String type, Provider provider, File
234 * ProtectionParameter which is used in newInstance(...
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
JAXPTest.java 44 SAXParserFactory spf = SAXParserFactory.newInstance();
50 Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(f);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
TestCrimson.java 35 ClassLoader.getSystemClassLoader().loadClass("org.apache.crimson.jaxp.DocumentBuilderFactoryImpl").newInstance();
41 Object test = testConstructor.newInstance(new Object[] { factory });
TestCrimsonAltConfig.java 35 ClassLoader.getSystemClassLoader().loadClass("org.apache.crimson.jaxp.DocumentBuilderFactoryImpl").newInstance();
41 Object test = testConstructor.newInstance(new Object[] { factory });
TestGNUJAXP.java 37 loadClass("gnu.xml.dom.JAXPFactory").newInstance();
44 Object test = testConstructor.newInstance(new Object[] { factory });
TestGNUJAXPAltConfig.java 36 loadClass("gnu.xml.dom.JAXPFactory").newInstance();
42 Object test = testConstructor.newInstance(new Object[] { factory });
TestOracle.java 36 loadClass("oracle.xml.jaxp.JXDocumentBuilderFactory").newInstance();
43 Object test = testConstructor.newInstance(new Object[] { factory });
TestOracleAltConfig.java 36 loadClass("oracle.xml.jaxp.JXDocumentBuilderFactory").newInstance();
42 Object test = testConstructor.newInstance(new Object[] { factory });
TestXerces.java 35 ClassLoader.getSystemClassLoader().loadClass("org.apache.xerces.jaxp.DocumentBuilderFactoryImpl").newInstance();
42 Object test = testConstructor.newInstance(new Object[] { factory });
TestXercesAltConfig.java 35 ClassLoader.getSystemClassLoader().loadClass("org.apache.xerces.jaxp.DocumentBuilderFactoryImpl").newInstance();
41 Object test = testConstructor.newInstance(new Object[] { factory });
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
TestCrimson.java 35 ClassLoader.getSystemClassLoader().loadClass("org.apache.crimson.jaxp.DocumentBuilderFactoryImpl").newInstance();
41 Object test = testConstructor.newInstance(new Object[] { factory });
TestCrimsonAltConfig.java 35 ClassLoader.getSystemClassLoader().loadClass("org.apache.crimson.jaxp.DocumentBuilderFactoryImpl").newInstance();
41 Object test = testConstructor.newInstance(new Object[] { factory });
TestGNUJAXP.java 37 loadClass("gnu.xml.dom.JAXPFactory").newInstance();
44 Object test = testConstructor.newInstance(new Object[] { factory });

Completed in 586 milliseconds

1 2 3 4 5 6 7 8 91011>>