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

1 2 3

  /external/javassist/src/main/javassist/util/proxy/
SecurityActions.java 40 static Constructor[] getDeclaredConstructors(final Class clazz) {
42 return clazz.getDeclaredConstructors();
47 return clazz.getDeclaredConstructors();
  /external/guava/guava-tests/test/com/google/common/reflect/
InvokableTest.java 326 InnerWithDefaultConstructor.class.getDeclaredConstructors() [0];
332 InnerWithDefaultConstructor.NestedInner.class.getDeclaredConstructors() [0];
343 InnerWithOneParameterConstructor.class.getDeclaredConstructors()[0];
356 InnerWithAnnotatedConstructorParameter.class.getDeclaredConstructors() [0];
369 InnerWithGenericConstructorParameter.class.getDeclaredConstructors() [0];
386 Constructor<?> constructor = anonymous.getDeclaredConstructors() [0];
396 Constructor<?> constructor = anonymous.getDeclaredConstructors() [0];
408 Constructor<?> constructor = LocalWithDefaultConstructor.class.getDeclaredConstructors() [0];
424 Constructor<?> constructor = anonymous.getDeclaredConstructors() [0];
441 Constructor<?> constructor = anonymous.getDeclaredConstructors() [0]
    [all...]
  /libcore/ojluni/src/test/java/time/test/java/time/
AbstractTest.java 99 Constructor<?>[] cons = cls.getDeclaredConstructors();
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
BenchmarkCreator.java 54 for (Constructor<?> constructor : benchmarkClass.getDeclaredConstructors()) {
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProvideUtils.java 48 for (Constructor<?> constructor : rawType.getDeclaredConstructors()) {
  /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...]
  /external/mockito/src/main/java/org/mockito/internal/creation/instance/
ConstructorInstantiator.java 31 for (Constructor<?> constructor : cls.getDeclaredConstructors()) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/
ReflectionClassDef.java 170 Iterators.transform(Iterators.forArray(cls.getDeclaredConstructors()),
221 Iterators.transform(Iterators.forArray(cls.getDeclaredConstructors()),
239 return cls.getDeclaredMethods().length + cls.getDeclaredConstructors().length;
  /external/javassist/sample/evolve/
Evolution.java 130 CtConstructor[] cs = clazz.getDeclaredConstructors();
181 CtConstructor[] cs = clazz.getDeclaredConstructors();
  /packages/apps/Car/libs/car-stream-ui-lib/src/com/android/car/view/
CarRecyclerView.java 166 for (Constructor<?> c : savedStateClass.getDeclaredConstructors()) {
  /external/testng/src/main/java/org/testng/internal/
ClassHelper.java 151 for (Constructor constructor : cls.getDeclaredConstructors()) {
432 Constructor<?>[] constructors = declaringClass.getDeclaredConstructors();
  /art/test/005-annotations/src/android/test/anno/
TestAnnotations.java 55 for (Constructor<?> c: clazz.getDeclaredConstructors()) {
  /cts/tests/signature/src/android/signature/cts/
ReflectionHelper.java 100 for (Constructor<?> c : runtimeClass.getDeclaredConstructors()) {
  /external/mockito/src/main/java/org/mockito/internal/util/reflection/
FieldInitializer.java 295 final List<? extends Constructor<?>> constructors = Arrays.asList(clazz.getDeclaredConstructors());
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothHealthFacade.java 148 Constructor[] cons2 = btHealthAppConfigClass.getDeclaredConstructors();
  /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/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
FactoryProvider.java 256 for (Constructor<?> constructor : implementationType.getRawType().getDeclaredConstructors()) {
  /art/test/100-reflect2/src/
Main.java 179 System.out.println(Arrays.toString(sort(String.class.getDeclaredConstructors(), comp)));
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 101 for (Constructor<?> constructor : c.getDeclaredConstructors()) {
  /external/guice/extensions/mini/src/com/google/inject/mini/
MiniGuice.java 209 for (Constructor<?> constructor : type.getDeclaredConstructors()) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ClassTest.java 267 * java.lang.Class#getDeclaredConstructors()
270 Constructor[] c = TestClass.class.getDeclaredConstructors();
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
Constructor.java 386 .getDeclaredConstructors();
552 .getType().getDeclaredConstructors()) {

Completed in 870 milliseconds

1 2 3