Searched refs:getDeclaredConstructor (Results 1 - 25 of 47) sorted by relevance

12

/external/javassist/src/main/javassist/util/proxy/
H A DSecurityActions.java75 static Constructor getDeclaredConstructor(final Class clazz, method in class:SecurityActions
80 return clazz.getDeclaredConstructor(types);
86 return clazz.getDeclaredConstructor(types);
/external/objenesis/main/src/main/java/org/objenesis/instantiator/basic/
H A DConstructorInstantiator.java40 constructor = type.getDeclaredConstructor((Class[]) null);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowNfcAdapter.java27 Constructor<NfcAdapter> constructor = NfcAdapter.class.getDeclaredConstructor();
H A DShadowMotionEvent.java32 Constructor<MotionEvent> constructor = MotionEvent.class.getDeclaredConstructor();
/external/mockito/src/main/java/org/mockito/internal/creation/instance/
H A DConstructorInstantiator.java78 return invokeConstructor(cls.getDeclaredConstructor());
/external/caliper/caliper/src/main/java/com/google/caliper/util/
H A DParsers.java73 final Constructor<T> constr = wrappedResultType.getDeclaredConstructor(String.class);
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
H A DBluetoothHealthFacade.java127 Constructor mConfigConstructor = btHealthAppConfigClass.getDeclaredConstructor(
154 Constructor mConfigConstructor = btHealthAppConfigClass.getDeclaredConstructor(
/external/guice/core/test/com/google/inject/
H A DRequireAtInjectOnConstructorsTest.java184 .toConstructor(ManyConstructors.class.getDeclaredConstructor());
H A DBindingTest.java308 final Constructor<E> constructor = E.class.getDeclaredConstructor(Stage.class);
376 final Constructor<CFoo> constructor = CFoo.class.getDeclaredConstructor();
/external/guice/extensions/grapher/test/com/google/inject/grapher/
H A DShortNameFactoryTest.java88 Member constructor = Obj.class.getDeclaredConstructor();
/external/mockito/src/main/java/org/mockito/internal/configuration/
H A DSpyAnnotationEngine.java121 constructor = type.getDeclaredConstructor();
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DRobolectricInternals.java28 Constructor<T> defaultConstructor = clazz.getDeclaredConstructor();
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/
H A DRobolectricWiringTest.java93 return implementedClass.getDeclaredConstructor(parameterTypes);
H A DAndroidTranslatorTest.java73 Constructor<ClassWithNoDefaultConstructor> ctor = ClassWithNoDefaultConstructor.class.getDeclaredConstructor();
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/
H A DSmaliCodeFragmentFactory.java294 final Constructor<LocalVariableImpl> localVariableConstructor = LocalVariableImpl.class.getDeclaredConstructor(
299 Constructor<LocationImpl> locationConstructor = LocationImpl.class.getDeclaredConstructor(
/external/testng/src/main/java/org/testng/internal/
H A DClassHelper.java369 ct = declaringClass.getDeclaredConstructor(parameterTypes);
372 ct = declaringClass.getDeclaredConstructor(String.class);
H A DClassImpl.java173 Constructor<Module> moduleConstructor = module.getDeclaredConstructor(ITestContext.class);
/external/guava/guava-tests/test/com/google/common/reflect/
H A DElementTest.java226 Constructor<?> constructor = A.class.getDeclaredConstructor(Object.class);
/external/guice/core/test/com/googlecode/guice/
H A DBytecodeGenTest.java316 Constructor ctor = hiddenClass.getDeclaredConstructor();
/external/javassist/src/main/javassist/tools/rmi/
H A DStubGenerator.java245 superclazz.getDeclaredConstructor(null);
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
H A DFieldInitializer.java191 constructor = field.getType().getDeclaredConstructor();
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
H A DCompactConstructor.java66 java.lang.reflect.Constructor<?> c = clazz.getDeclaredConstructor(args);
/external/conscrypt/android/src/main/java/org/conscrypt/
H A DPlatform.java498 Object processInstance = processClass.getDeclaredConstructor().newInstance();
503 Object eventLogInstance = eventLogClass.getDeclaredConstructor().newInstance();
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
H A DTestFmwk.java651 Constructor<?> constructor = classToBeTested.getDeclaredConstructor();
709 Constructor<?> constructor = classToBeTested.getDeclaredConstructor(constructorParamTypes);
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestFmwk.java650 Constructor<?> constructor = classToBeTested.getDeclaredConstructor();
708 Constructor<?> constructor = classToBeTested.getDeclaredConstructor(constructorParamTypes);

Completed in 996 milliseconds

12