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

1 2

  /external/javassist/src/main/javassist/util/proxy/
SecurityActions.java 40 static Constructor[] getDeclaredConstructors(final Class clazz) {
42 return clazz.getDeclaredConstructors();
47 return clazz.getDeclaredConstructors();
ProxyFactory.java     [all...]
  /external/javassist/src/main/javassist/
CtNewClass.java 88 cs = superclazz.getDeclaredConstructors();
SerialVersionUID.java 135 CtConstructor[] constructors = clazz.getDeclaredConstructors();
CtClass.java 779 public CtConstructor[] getDeclaredConstructors() {
    [all...]
CtClassType.java 1045 public CtConstructor[] getDeclaredConstructors()
    [all...]
  /external/javassist/sample/evolve/
Evolution.java 130 CtConstructor[] cs = clazz.getDeclaredConstructors();
181 CtConstructor[] cs = clazz.getDeclaredConstructors();
  /libcore/libdvm/src/main/java/java/lang/
Class.java 505 * @see #getDeclaredConstructors()
508 return getDeclaredConstructors(this, true);
573 public Constructor<?>[] getDeclaredConstructors() {
574 return getDeclaredConstructors(this, false);
580 private static native <T> Constructor<T>[] getDeclaredConstructors(Class<T> c,
    [all...]
  /external/android-mock/src/com/google/android/testing/mocking/
AndroidMockGenerator.java 134 Constructor<?>[] constructors = clazz.getDeclaredConstructors();
263 CtConstructor[] constructors = superCtClass.getDeclaredConstructors();
  /art/test/004-annotations/src/android/test/anno/
TestAnnotations.java 38 for (Constructor c: clazz.getDeclaredConstructors()) {
  /dalvik/tests/004-annotations/src/android/test/anno/
TestAnnotations.java 38 for (Constructor c: clazz.getDeclaredConstructors()) {
  /external/mockito/src/org/mockito/internal/util/reflection/
FieldInitializer.java 265 final List<Constructor<?>> constructors = Arrays.asList(clazz.getDeclaredConstructors());
  /libcore/libart/src/main/java/java/lang/
Class.java 565 * @see #getDeclaredConstructors()
569 getDeclaredConstructors(true, constructors);
581 public Constructor<?>[] getDeclaredConstructors() {
583 getDeclaredConstructors(false, constructors);
587 private void getDeclaredConstructors(boolean publicOnly, List<Constructor<T>> constructors) {
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ClassLoaderReflectionTest.java 108 Constructor<?> constructor = fClass.getDeclaredConstructors()[0];
OldGenericTypesTest.java 193 Constructor<?>[] declaredConstructors = innerClazz.getDeclaredConstructors();
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 128 for (Constructor<?> constructor : c.getDeclaredConstructors()) {
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintHelper.java 171 return (Constraint) constraintClass.getDeclaredConstructors()[0].newInstance(constraintStructure, ownerOMA, influenceIpo,
  /art/test/100-reflect2/src/
Main.java 160 System.out.println(Arrays.toString(String.class.getDeclaredConstructors()));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ClassTest.java 267 * @tests java.lang.Class#getDeclaredConstructors()
270 Constructor[] c = TestClass.class.getDeclaredConstructors();
  /external/guava/guava-tests/test/com/google/common/testing/
NullPointerTesterTest.java 573 : PrivateClassWithPrivateConstructor.class.getDeclaredConstructors()) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
AndroidTranslator.java 212 for (CtConstructor ctConstructor : ctClass.getDeclaredConstructors()) {
  /cts/tests/SignatureTest/src/android/tests/sigtest/
JDiffClassDescription.java 673 for (Constructor<?> c : mClass.getDeclaredConstructors()) {
    [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/stock/
ProxyBuilder.java 576 // The getDeclaredConstructors() method gets constructors declared only in the given class,
580 return (Constructor<T>[]) clazz.getDeclaredConstructors();
    [all...]
  /libcore/luni/src/main/java/java/io/
ObjectStreamClass.java 508 Constructor<?>[] constructors = cl.getDeclaredConstructors();
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldClassTest.java 644 Constructor<?> constr = declClasses[i].getDeclaredConstructors()[0];
    [all...]

Completed in 2066 milliseconds

1 2