Searched refs:getDeclaredConstructors (Results 1 - 6 of 6) sorted by relevance

/libcore/libdvm/src/main/java/java/lang/
H A DClass.java505 * @see #getDeclaredConstructors()
508 return getDeclaredConstructors(this, true);
573 public Constructor<?>[] getDeclaredConstructors() { method in class:Class
574 return getDeclaredConstructors(this, false);
580 private static native <T> Constructor<T>[] getDeclaredConstructors(Class<T> c, method in class:Class
/libcore/libart/src/main/java/java/lang/
H A DClass.java565 * @see #getDeclaredConstructors()
569 getDeclaredConstructors(true, constructors);
581 public Constructor<?>[] getDeclaredConstructors() { method in class:Class
583 getDeclaredConstructors(false, constructors);
587 private void getDeclaredConstructors(boolean publicOnly, List<Constructor<T>> constructors) { method in class:Class
/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DClassLoaderReflectionTest.java108 Constructor<?> constructor = fClass.getDeclaredConstructors()[0];
H A DOldGenericTypesTest.java193 Constructor<?>[] declaredConstructors = innerClazz.getDeclaredConstructors();
/libcore/luni/src/main/java/java/io/
H A DObjectStreamClass.java508 Constructor<?>[] constructors = cl.getDeclaredConstructors();
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldClassTest.java644 Constructor<?> constr = declClasses[i].getDeclaredConstructors()[0];

Completed in 841 milliseconds