/external/guava/guava-tests/test/com/google/common/reflect/ |
D | InvokableTest.java | 326 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/ |
D | SecurityActions.java | 40 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/ |
D | 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/ |
D | Evolution.java | 130 CtConstructor[] cs = clazz.getDeclaredConstructors(); in makeAbstractClass() 181 CtConstructor[] cs = clazz.getDeclaredConstructors(); in makeConcreteClass()
|
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/ |
D | CheckedProvideUtils.java | 48 for (Constructor<?> constructor : rawType.getDeclaredConstructors()) { in findThrowingConstructor()
|
/external/javassist/src/main/javassist/ |
D | CtNewClass.java | 88 cs = superclazz.getDeclaredConstructors(); in inheritAllConstructors()
|
D | SerialVersionUID.java | 135 CtConstructor[] constructors = clazz.getDeclaredConstructors(); in calculateDefault()
|
D | CtClass.java | 779 public CtConstructor[] getDeclaredConstructors() { in getDeclaredConstructors() method in CtClass
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
D | BenchmarkCreator.java | 54 for (Constructor<?> constructor : benchmarkClass.getDeclaredConstructors()) { in findDefaultConstructor()
|
/external/mockito/src/main/java/org/mockito/internal/creation/instance/ |
D | ConstructorInstantiator.java | 31 for (Constructor<?> constructor : cls.getDeclaredConstructors()) { in withParams()
|
/external/testng/src/main/java/org/testng/internal/ |
D | ClassHelper.java | 151 for (Constructor constructor : cls.getDeclaredConstructors()) { in findDeclaredFactoryMethod() 432 Constructor<?>[] constructors = declaringClass.getDeclaredConstructors(); in findAnnotatedConstructor()
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/ |
D | BluetoothHealthFacade.java | 148 Constructor[] cons2 = btHealthAppConfigClass.getDeclaredConstructors(); in bluetoothHealthRegisterAppConfiguration()
|
/external/mockito/src/main/java/org/mockito/internal/util/reflection/ |
D | FieldInitializer.java | 295 …final List<? extends Constructor<?>> constructors = Arrays.asList(clazz.getDeclaredConstructors()); in biggestConstructor()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
D | Constructor.java | 386 .getDeclaredConstructors(); in construct() 552 .getType().getDeclaredConstructors()) { in construct()
|
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/ |
D | FactoryProvider.java | 256 for (Constructor<?> constructor : implementationType.getRawType().getDeclaredConstructors()) { in createMethodMapping()
|
D | FactoryProvider2.java | 487 for (Constructor<?> constructor : rawType.getDeclaredConstructors()) { in findMatchingConstructorInjectionPoint()
|
/external/guice/extensions/mini/src/com/google/inject/mini/ |
D | MiniGuice.java | 209 for (Constructor<?> constructor : type.getDeclaredConstructors()) { in addJitBinding()
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
D | NullPointerTester.java | 101 for (Constructor<?> constructor : c.getDeclaredConstructors()) { in testConstructors()
|
D | ClassSanityTester.java | 698 for (Constructor<?> constructor : type.getRawType().getDeclaredConstructors()) { in getFactories()
|
/external/guice/core/test/com/google/inject/spi/ |
D | SpiBindingsTest.java | 207 Constructor<?> expected = D.class.getDeclaredConstructors()[0]; in testToConstructorBinding()
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/ |
D | AndroidTranslator.java | 212 for (CtConstructor ctConstructor : ctClass.getDeclaredConstructors()) { in fixConstructors()
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | DeprecatedAPIChecker.java | 130 for (Constructor<?> ctor : cls.getDeclaredConstructors()) { in checkClass()
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
D | LambdaDesugaring.java | 285 for (Constructor<?> c : owner.getDeclaredConstructors()) { in findTargetMethod()
|
/external/guice/core/src/com/google/inject/spi/ |
D | InjectionPoint.java | 245 for (Constructor<?> constructor : rawType.getDeclaredConstructors()) { in forConstructorOf()
|
/external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/ |
D | ProxyBuilder.java | 616 return (Constructor<T>[]) clazz.getDeclaredConstructors(); in getConstructorsToOverwrite()
|