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

1 2 3 4 5 6 7

  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ConstructorTest.java 19 import java.lang.reflect.Constructor;
23 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(new Class[0]); local
24 Class[] exceptions = constructor.getExceptionTypes();
29 exceptions = constructor.getExceptionTypes();
36 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(expectedParameters); local
37 Class[] parameters = constructor.getParameterTypes();
42 parameters = constructor.getParameterTypes();
  /libcore/dom/src/test/java/org/w3c/domts/
XalanDOMTestDocumentBuilderFactory.java 29 import java.lang.reflect.Constructor;
46 * factory will be mutated in constructor and should be released
71 Constructor constructor = xpathClass.getConstructor(new Class[] {Document.class}); local
72 return constructor.newInstance(new Object[] {doc});
JUnitTestSuiteAdapter.java 15 import java.lang.reflect.Constructor;
34 Constructor testConstructor = testclass.getConstructor(
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ConstructorTest.java 29 import java.lang.reflect.Constructor;
38 value = Constructor.class,
52 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
57 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
62 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
67 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
109 // This class has no public constructor.
112 // Used to test synthetic constructor.
122 * @tests java.lang.reflect.Constructor#getDeclaredAnnotations()
131 Constructor<ConstructorTestHelper> ctor1 = ConstructorTestHelper.clas
205 Constructor<ConstructorTestHelper> constructor = ConstructorTestHelper.class local
450 Constructor<GenericConstructorTestHelper> constructor = GenericConstructorTestHelper.class local
490 Constructor<GenericConstructorTestHelper> constructor = GenericConstructorTestHelper.class local
    [all...]
  /dalvik/tests/042-new-instance/src/
Main.java 17 import java.lang.reflect.Constructor;
19 import java.lang.reflect.Constructor;
69 * Tests Constructor.newInstance().
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*/);
124 // this class has a default constructor with package visibility
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
TestBatik.java 16 import java.lang.reflect.Constructor;
31 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestCrimson.java 16 import java.lang.reflect.Constructor;
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestCrimsonAltConfig.java 16 import java.lang.reflect.Constructor;
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestDOM4J.java 16 import java.lang.reflect.Constructor;
31 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestDefaultLS.java 14 import java.lang.reflect.Constructor;
38 Constructor testConstructor =
TestDefaultLSAltConfig.java 14 import java.lang.reflect.Constructor;
38 Constructor testConstructor =
TestDefaultParser.java 16 import java.lang.reflect.Constructor;
30 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestDefaultParserAltConfig.java 16 import java.lang.reflect.Constructor;
30 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestGNUJAXP.java 16 import java.lang.reflect.Constructor;
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestGNUJAXPAltConfig.java 16 import java.lang.reflect.Constructor;
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestJTidy.java 16 import java.lang.reflect.Constructor;
31 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestOracle.java 16 import java.lang.reflect.Constructor;
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestOracleAltConfig.java 16 import java.lang.reflect.Constructor;
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestXerces.java 16 import java.lang.reflect.Constructor;
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestXercesAltConfig.java 16 import java.lang.reflect.Constructor;
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
  /libcore/dom/src/test/java/org/w3c/domts/level1/html/
TestDefaultLS.java 14 import java.lang.reflect.Constructor;
38 Constructor testConstructor =
TestDefaultLSAltConfig.java 14 import java.lang.reflect.Constructor;
38 Constructor testConstructor =
TestXercesHTML.java 16 import java.lang.reflect.Constructor;
30 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
TestBatik.java 16 import java.lang.reflect.Constructor;
31 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestCrimson.java 16 import java.lang.reflect.Constructor;
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });

Completed in 336 milliseconds

1 2 3 4 5 6 7