Home
last modified time | relevance | path

Searched refs:getDeclaredConstructors (Results 1 – 25 of 29) sorted by relevance

12

/external/guava/guava-tests/test/com/google/common/reflect/
DInvokableTest.java326 InnerWithDefaultConstructor.class.getDeclaredConstructors() [0]; in testInnerClassDefaultConstructor()
332 InnerWithDefaultConstructor.NestedInner.class.getDeclaredConstructors() [0]; in testNestedInnerClassDefaultConstructor()
343 InnerWithOneParameterConstructor.class.getDeclaredConstructors()[0]; in testInnerClassWithOneParameterConstructor()
356 InnerWithAnnotatedConstructorParameter.class.getDeclaredConstructors() [0]; in testInnerClassWithAnnotatedConstructorParameter()
369 InnerWithGenericConstructorParameter.class.getDeclaredConstructors() [0]; in testInnerClassWithGenericConstructorParameter()
386 Constructor<?> constructor = anonymous.getDeclaredConstructors() [0]; in testAnonymousClassDefaultConstructor()
396 Constructor<?> constructor = anonymous.getDeclaredConstructors() [0]; in testAnonymousClassWithTwoParametersConstructor()
408 Constructor<?> constructor = LocalWithDefaultConstructor.class.getDeclaredConstructors() [0]; in testLocalClassDefaultConstructor()
424 Constructor<?> constructor = anonymous.getDeclaredConstructors() [0]; in doTestStaticAnonymousClassDefaultConstructor()
441 Constructor<?> constructor = anonymous.getDeclaredConstructors() [0]; in AnonymousClassInConstructor()
[all …]
/external/javassist/src/main/javassist/util/proxy/
DSecurityActions.java40 static Constructor[] getDeclaredConstructors(final Class clazz) {
42 return clazz.getDeclaredConstructors();
47 return clazz.getDeclaredConstructors();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/
DReflectionClassDef.java170 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/
DEvolution.java130 CtConstructor[] cs = clazz.getDeclaredConstructors(); in makeAbstractClass()
181 CtConstructor[] cs = clazz.getDeclaredConstructors(); in makeConcreteClass()
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
DCheckedProvideUtils.java48 for (Constructor<?> constructor : rawType.getDeclaredConstructors()) { in findThrowingConstructor()
/external/javassist/src/main/javassist/
DCtNewClass.java88 cs = superclazz.getDeclaredConstructors(); in inheritAllConstructors()
DSerialVersionUID.java135 CtConstructor[] constructors = clazz.getDeclaredConstructors(); in calculateDefault()
DCtClass.java779 public CtConstructor[] getDeclaredConstructors() { in getDeclaredConstructors() method in CtClass
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DBenchmarkCreator.java54 for (Constructor<?> constructor : benchmarkClass.getDeclaredConstructors()) { in findDefaultConstructor()
/external/mockito/src/main/java/org/mockito/internal/creation/instance/
DConstructorInstantiator.java31 for (Constructor<?> constructor : cls.getDeclaredConstructors()) { in withParams()
/external/testng/src/main/java/org/testng/internal/
DClassHelper.java151 for (Constructor constructor : cls.getDeclaredConstructors()) { in findDeclaredFactoryMethod()
432 Constructor<?>[] constructors = declaringClass.getDeclaredConstructors(); in findAnnotatedConstructor()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothHealthFacade.java148 Constructor[] cons2 = btHealthAppConfigClass.getDeclaredConstructors(); in bluetoothHealthRegisterAppConfiguration()
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
DFieldInitializer.java295 …final List<? extends Constructor<?>> constructors = Arrays.asList(clazz.getDeclaredConstructors()); in biggestConstructor()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
DConstructor.java386 .getDeclaredConstructors(); in construct()
552 .getType().getDeclaredConstructors()) { in construct()
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DFactoryProvider.java256 for (Constructor<?> constructor : implementationType.getRawType().getDeclaredConstructors()) { in createMethodMapping()
DFactoryProvider2.java487 for (Constructor<?> constructor : rawType.getDeclaredConstructors()) { in findMatchingConstructorInjectionPoint()
/external/guice/extensions/mini/src/com/google/inject/mini/
DMiniGuice.java209 for (Constructor<?> constructor : type.getDeclaredConstructors()) { in addJitBinding()
/external/guava/guava-testlib/src/com/google/common/testing/
DNullPointerTester.java101 for (Constructor<?> constructor : c.getDeclaredConstructors()) { in testConstructors()
DClassSanityTester.java698 for (Constructor<?> constructor : type.getRawType().getDeclaredConstructors()) { in getFactories()
/external/guice/core/test/com/google/inject/spi/
DSpiBindingsTest.java207 Constructor<?> expected = D.class.getDeclaredConstructors()[0]; in testToConstructorBinding()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
DAndroidTranslator.java212 for (CtConstructor ctConstructor : ctClass.getDeclaredConstructors()) { in fixConstructors()
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecatedAPIChecker.java130 for (Constructor<?> ctor : cls.getDeclaredConstructors()) { in checkClass()
/external/desugar/java/com/google/devtools/build/android/desugar/
DLambdaDesugaring.java285 for (Constructor<?> c : owner.getDeclaredConstructors()) { in findTargetMethod()
/external/guice/core/src/com/google/inject/spi/
DInjectionPoint.java245 for (Constructor<?> constructor : rawType.getDeclaredConstructors()) { in forConstructorOf()
/external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/
DProxyBuilder.java616 return (Constructor<T>[]) clazz.getDeclaredConstructors(); in getConstructorsToOverwrite()

12