HomeSort by relevance Sort by last modified time
    Searched full:getdeclaredconstructors (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /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...]
  /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/caliper/caliper/src/main/java/com/google/caliper/runner/
BenchmarkCreator.java 54 for (Constructor<?> constructor : benchmarkClass.getDeclaredConstructors()) {
  /external/javassist/src/main/javassist/
CtNewClass.java 88 cs = superclazz.getDeclaredConstructors();
SerialVersionUID.java 135 CtConstructor[] constructors = clazz.getDeclaredConstructors();
  /external/javassist/sample/evolve/
Evolution.java 130 CtConstructor[] cs = clazz.getDeclaredConstructors();
181 CtConstructor[] cs = clazz.getDeclaredConstructors();
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProvideUtils.java 48 for (Constructor<?> constructor : rawType.getDeclaredConstructors()) {
  /external/mockito/src/org/mockito/internal/creation/jmock/
ClassImposterizer.java 79 for (Constructor<?> constructor : mockedType.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();
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
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();
  /frameworks/base/docs/html/sdk/api_diff/24/changes/
java.lang.Class.html 132 <nobr><code>Constructor&lt;?&gt;</code>&nbsp;<A HREF="../../../../reference/java/lang/Class.html#getDeclaredConstructors()" target="_top"><code>getDeclaredConstructors</code></A>() </nobr>
  /art/test/005-annotations/src/android/test/anno/
TestAnnotations.java 55 for (Constructor c: clazz.getDeclaredConstructors()) {
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
FastClassEmitter.java 71 List constructors = new ArrayList(Arrays.asList(type.getDeclaredConstructors()));
  /external/mockito/src/org/mockito/internal/util/reflection/
FieldInitializer.java 265 final List<Constructor<?>> constructors = Arrays.asList(clazz.getDeclaredConstructors());
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestGrouping.java 226 // where the return type of Class.getDeclaredConstructors() was changed
  /external/guice/core/test/com/google/inject/spi/
SpiBindingsTest.java 207 Constructor<?> expected = D.class.getDeclaredConstructors()[0];
  /external/guice/extensions/mini/src/com/google/inject/mini/
MiniGuice.java 209 for (Constructor<?> constructor : type.getDeclaredConstructors()) {
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
Constructor.java 386 .getDeclaredConstructors();
552 .getType().getDeclaredConstructors()) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ClassTest.java 263 * java.lang.Class#getDeclaredConstructors()
266 Constructor[] c = TestClass.class.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/assistedinject/src/com/google/inject/assistedinject/
FactoryProvider.java 256 for (Constructor<?> constructor : implementationType.getRawType().getDeclaredConstructors()) {

Completed in 1280 milliseconds

1 2 3 4