Searched refs:getConstructor (Results 76 - 98 of 98) sorted by relevance

1234

/libcore/dom/src/test/java/org/w3c/domts/level3/xpath/
H A DTestXalan.java32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
H A DTestXalanAltConfig.java32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DGenericExceptionsTest.java43 Constructor constructor = Thrower.class.getConstructor();
49 Constructor constructor = Thrower.class.getConstructor(List.class);
55 Constructor constructor = ThrowerT.class.getConstructor();
H A DAnnotationsTest.java43 Constructor<Type> constructor = Type.class.getConstructor();
H A DOldAndroidClassTest.java90 Constructor constructor = helloClass.getConstructor((Class[]) null);
/libcore/benchmarks/src/benchmarks/
H A DXmlParseBenchmark.java68 kxmlConstructor = (Constructor) Class.forName("org.kxml2.io.KXmlParser").getConstructor();
70 .getConstructor();
/libcore/benchmarks/src/benchmarks/regression/
H A DReflectionBenchmark.java49 klass.getConstructor();
55 Constructor constructor = klass.getConstructor();
/libcore/dom/src/test/java/org/w3c/domts/
H A DJTidyDocumentBuilderFactory.java51 tidyClass.getConstructor(NO_CLASSES);
H A DBatikTestDocumentBuilderFactory.java89 domFactoryClass.getConstructor(new Class[] {String.class});
H A DDOM4JTestDocumentBuilderFactory.java75 Constructor saxReaderConstructor = saxReaderClass.getConstructor(
H A DXercesHTML2DocumentBuilderFactory.java60 htmlBuilderClass.getConstructor(NO_CLASSES);
H A DXercesHTMLDocumentBuilderFactory.java60 htmlBuilderClass.getConstructor(NO_CLASSES);
H A DDOMTestCase.java70 runnerClass.getConstructor(new Class[] {Class.class});
H A DJUnitTestCaseAdapter.java85 Constructor<?> constructor = clazz.getConstructor(new Class<?>[] {
/libcore/support/src/test/java/tests/util/
H A DClassLoaderBuilder.java107 .getConstructor(String.class, ClassLoader.class)
/libcore/libdvm/src/main/java/java/lang/reflect/
H A DProxy.java212 return getProxyClass(loader, interfaces).getConstructor(
/libcore/luni/src/main/java/javax/security/cert/
H A DX509Certificate.java53 constructor = cl.getConstructor(new Class[] {InputStream.class});
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DKeyFactoryTest.java461 constructor = keySpec.getConstructor(TestPrivateKey.class);
469 constructor = keySpec.getConstructor(TestPublicKey.class);
/libcore/libart/src/main/java/java/lang/
H A DClass.java491 public Constructor<T> getConstructor(Class<?>... parameterTypes) throws NoSuchMethodException { method in class:Class
492 return getConstructor(parameterTypes, true);
503 * @see #getConstructor(Class[])
507 return getConstructor(parameterTypes, false);
516 private Constructor<T> getConstructor(Class<?>[] parameterTypes, boolean publicOnly) method in class:Class
/libcore/libart/src/main/java/java/lang/reflect/
H A DProxy.java215 .getConstructor(InvocationHandler.class)
/libcore/libdvm/src/main/java/java/lang/
H A DClass.java445 public Constructor<T> getConstructor(Class<?>... parameterTypes) throws NoSuchMethodException { method in class:Class
554 * <p>Use {@link #getConstructor} if you want to search superclasses.
/libcore/luni/src/main/java/java/io/
H A DObjectStreamClass.java184 long getConstructor() { method in class:ObjectStreamClass
/libcore/luni/src/main/java/java/security/
H A DProvider.java1016 return implementation.getConstructor(parameterTypes)

Completed in 1710 milliseconds

1234