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

1 2 3 4 5 6 7 8

  /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...]
  /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*/);
110 Constructor cons = c.getConstructor(new Class[0] /*(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(
  /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 });
TestOracleAltConfig.java 32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestXerces.java 32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestXercesAltConfig.java 32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
  /libcore/dom/src/test/java/org/w3c/domts/level1/html/
TestDefaultLS.java 39 testClass.getConstructor(
TestDefaultLSAltConfig.java 39 testClass.getConstructor(
TestXercesHTML.java 30 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });

Completed in 227 milliseconds

1 2 3 4 5 6 7 8