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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ConstructorTest.java 24 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(new Class[0]);
37 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(expectedParameters);
49 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor((Class[]) null);
55 ConstructorTestHelper.class.getConstructor(new Class[] { null });
63 ConstructorTestHelper.class.getConstructor(Object.class, Object.class);
76 Constructor<?> c1 = ConstructorTestHelper.class.getConstructor();
77 Constructor<?> c2 = ConstructorTestHelper.class.getConstructor();
83 Constructor<?> c1 = ConstructorTestHelper.class.getConstructor();
88 Constructor<?> c1 = ConstructorTestHelper.class.getConstructor();
89 Constructor<?> c2 = ConstructorTestHelper.class.getConstructor(Object.class)
    [all...]
  /dalvik/dx/tests/125-main-dex-list/com/android/dx/multidex/
MainDexListTest.java 28 .getConstructor(String.class, ClassLoader.class)
31 .getConstructor(String.class, ClassLoader.class)
  /external/javassist/src/main/javassist/expr/
ConstructorCall.java 49 * @see #getConstructor()
52 throw new NotFoundException("this is a constructor call. Call getConstructor().");
58 public CtConstructor getConstructor() throws NotFoundException {
59 return getCtClass().getConstructor(getSignature());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
ConstructorTest.java 107 .getConstructor(Object.class);
127 ctor1 = ConstructorTestHelper.class.getConstructor(new Class[0]);
143 .getConstructor(String[].class);
147 .getConstructor(Object.class);
154 .getConstructor();
164 .getConstructor(Object.class, Object.class);
170 .getConstructor();
180 ctor1 = ConstructorTestHelper.class.getConstructor(
182 ctor2 = ConstructorTestHelper.class.getConstructor(Object.class);
193 Constructor<? extends ConstructorTestHelper> ctor = pclass.getConstructor(new Class[0])
    [all...]
  /external/objenesis/main/src/org/objenesis/instantiator/sun/
SunReflectionFactoryInstantiator.java 54 return Object.class.getConstructor((Class[]) null);
SunReflectionFactorySerializationInstantiator.java 45 .getConstructor((Class[]) null);
  /libcore/dom/src/test/java/org/w3c/domts/
XalanDOMTestDocumentBuilderFactory.java 71 Constructor constructor = xpathClass.getConstructor(new Class[] {Document.class});
JUnitTestSuiteAdapter.java 34 Constructor testConstructor = testclass.getConstructor(
  /external/junit/src/org/junit/internal/builders/
AnnotatedBuilder.java 31 return runnerClass.getConstructor(Class.class).newInstance(
35 return runnerClass.getConstructor(Class.class,
  /external/smack/src/org/jivesoftware/smack/compression/
JzlibInputOutputStream.java 57 Constructor<?> constructor = ziClass.getConstructor(InputStream.class);
68 Constructor<?> constructor = zoClass.getConstructor(OutputStream.class, Integer.TYPE);
  /art/test/042-new-instance/src/
Main.java 72 // should fail -- getConstructor only returns public constructors
75 Constructor cons = c.getConstructor(new Class[0] /*(Class[])null*/);
87 Constructor cons = c.getConstructor((Class[]) null);
120 Constructor cons = c.getConstructor(new Class[0] /*(Class[])null*/);
133 Constructor cons = c.getConstructor(new Class[0] /*(Class[])null*/);
147 Constructor cons = c.getConstructor((Class[]) null);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
FastClass.java 103 public FastConstructor getConstructor(Constructor constructor) {
115 public FastConstructor getConstructor(Class[] parameterTypes) {
117 return getConstructor(type.getConstructor(parameterTypes));
  /external/mockito/src/org/mockito/internal/runners/util/
RunnerProvider.java 33 constructor = runnerClass.getConstructor(Class.class.getClass());
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
TestBatik.java 31 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestCrimson.java 32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestCrimsonAltConfig.java 32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestDOM4J.java 31 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestDefaultLS.java 39 testClass.getConstructor(
TestDefaultLSAltConfig.java 39 testClass.getConstructor(
TestDefaultParser.java 30 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestDefaultParserAltConfig.java 30 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestGNUJAXP.java 32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestGNUJAXPAltConfig.java 32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestJTidy.java 31 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestOracle.java 32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });

Completed in 433 milliseconds

1 2 3 4 5 6 7 8 91011>>