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

1 2 3 4 5 6 7 8 910

  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
MalformedParameterizedTypeExceptionTests.java 3 import java.lang.reflect.Constructor;
13 Constructor<MalformedParameterizedTypeException> ctor = MalformedParameterizedTypeException.class
15 assertNotNull("Parameterless constructor does not exist.", ctor);
16 assertTrue("Constructor is not protected", Modifier.isPublic(ctor
ConstructorTest.java 25 import java.lang.reflect.Constructor;
37 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
42 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
47 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
52 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
94 // This class has no public constructor.
97 // Used to test synthetic constructor.
107 Constructor<ConstructorTestHelper> ctor1 = ConstructorTestHelper.class
127 Constructor<ConstructorTestHelper> ctor1 = null;
143 Constructor<ConstructorTestHelper> varArgCtor = ConstructorTestHelper.clas
154 Constructor<ConstructorTestHelper> constructor = ConstructorTestHelper.class local
327 Constructor<GenericConstructorTestHelper> constructor = GenericConstructorTestHelper.class local
358 Constructor<GenericConstructorTestHelper> constructor = GenericConstructorTestHelper.class local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ConstructorTest.java 19 import java.lang.reflect.Constructor;
24 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(new Class[0]); local
25 Class[] exceptions = constructor.getExceptionTypes();
30 exceptions = constructor.getExceptionTypes();
37 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor(expectedParameters); local
38 Class[] parameters = constructor.getParameterTypes();
43 parameters = constructor.getParameterTypes();
49 Constructor<?> constructor = ConstructorTestHelper.class.getConstructor((Class[]) null) local
70 Constructor<?> constructor = ConstructorTestHelper.class.getDeclaredConstructor( local
    [all...]
  /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(
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ConstructorTest.java 20 import java.lang.reflect.Constructor;
49 * @tests java.lang.reflect.Constructor#equals(java.lang.Object)
53 Constructor ctor1 = null, ctor2 = null;
67 * @tests java.lang.reflect.Constructor#getDeclaringClass()
71 // java.lang.reflect.Constructor.getDeclaringClass()
74 Constructor ctor = pclass.getConstructor(new Class[0]);
81 * @tests java.lang.reflect.Constructor#getExceptionTypes()
86 Constructor ctor = new ConstructorTestHelper().getClass()
97 * @tests java.lang.reflect.Constructor#getModifiers()
102 Constructor ctor = new ConstructorTestHelper().getClass(
185 Constructor constructor = Vector.class local
197 Constructor constructor = MockObject.class.getConstructor(Class.class); local
    [all...]
  /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 });

Completed in 353 milliseconds

1 2 3 4 5 6 7 8 910