HomeSort by relevance Sort by last modified time
    Searched refs:getConstructor (Results 1 - 25 of 251) 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);
  /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/luni/src/test/java/tests/api/java/lang/reflect/
ConstructorTest.java 108 .getConstructor(Object.class);
128 ctor1 = ConstructorTestHelper.class.getConstructor(new Class[0]);
144 .getConstructor(String[].class);
148 .getConstructor(Object.class);
155 .getConstructor();
165 .getConstructor(Object.class, Object.class);
171 .getConstructor();
181 ctor1 = ConstructorTestHelper.class.getConstructor(
183 ctor2 = ConstructorTestHelper.class.getConstructor(Object.class);
194 Constructor<? extends ConstructorTestHelper> ctor = pclass.getConstructor(new Class[0])
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ConstructorTest.java 54 ctor1 = new ConstructorTestHelper().getClass().getConstructor(
60 ctor2 = new ConstructorTestHelper().getClass().getConstructor(parms);
74 Constructor ctor = pclass.getConstructor(new Class[0]);
87 .getConstructor(new Class[0]);
103 .getConstructor(new Class[0]);
140 .getConstructor(new Class[0]);
155 .getConstructor(new Class[0]);
163 ctor = new ConstructorTestHelper().getClass().getConstructor(parms);
175 .getConstructor(new Class[0]);
186 .getConstructor(new Class[] { Integer.TYPE })
    [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);
  /dalvik/tests/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);
98 Constructor cons = c.getConstructor(new Class[0] /*(Class[])null*/);
111 Constructor cons = c.getConstructor(new Class[0] /*(Class[])null*/);
125 Constructor cons = c.getConstructor((Class[]) null);
  /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 453 milliseconds

1 2 3 4 5 6 7 8 91011