HomeSort by relevance Sort by last modified time
    Searched refs:constructor (Results 151 - 175 of 1680) sorted by null

1 2 3 4 5 67 8 91011>>

  /art/test/551-invoke-super/smali/
invokesuper.smali 20 .method public constructor <init>()V
  /art/test/552-invoke-non-existent-super/smali/
invokesuper.smali 20 .method public constructor <init>()V
  /art/test/553-invoke-super/smali/
invokesuper.smali 20 .method public constructor <init>()V
  /art/test/556-invoke-super/smali/
invokesuper.smali 20 .method public constructor <init>()V
  /art/test/954-invoke-polymorphic-verifier/smali/
BadThis.smali 21 .method public constructor <init>()V
MethodHandleToString.smali 21 .method public constructor <init>()V
NonReference.smali 21 .method public constructor <init>()V
  /art/test/973-default-multidex/smali/
concreteclass.smali 30 .method public constructor <init>()V
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
MismatchedNotSetException.js 2 org.antlr.runtime.MismatchedNotSetException.superclass.constructor.call(this, expecting, input);
MismatchedRangeExceptions.js 6 org.antlr.runtime.MismatchedRangeException.superclass.constructor.call(
MismatchedSetException.js 2 org.antlr.runtime.MismatchedSetException.superclass.constructor.call(
MismatchedTokenException.js 5 org.antlr.runtime.MismatchedTokenException.superclass.constructor.call(
MismatchedTreeNodeException.js 3 org.antlr.runtime.MismatchedTreeNodeException.superclass.constructor.call(
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
MonitorBenchmark.java 23 import java.lang.reflect.Constructor;
46 Constructor<?> constructor = Class.forName(className).getConstructor(int.class); local
47 queue = (BlockingQueue<String>) constructor.newInstance(capacity);
  /external/guice/core/src/com/google/inject/
TypeLiteral.java 27 import java.lang.reflect.Constructor;
277 * @param methodOrConstructor a method or constructor defined by this or any supertype.
289 } else if (methodOrConstructor instanceof Constructor) {
290 Constructor<?> constructor = (Constructor<?>) methodOrConstructor; local
291 checkArgument(constructor.getDeclaringClass().isAssignableFrom(rawType),
292 "%s does not construct a supertype of %s", constructor, type); local
293 genericParameterTypes = constructor.getGenericParameterTypes();
296 throw new IllegalArgumentException("Not a method or a constructor: " + methodOrConstructor)
318 Constructor<?> constructor = (Constructor<?>) methodOrConstructor; local
320 "%s does not construct a supertype of %s", constructor, type); local
    [all...]
  /external/guice/core/src/com/google/inject/binder/
LinkedBindingBuilder.java 23 import java.lang.reflect.Constructor;
92 <S extends T> ScopedBindingBuilder toConstructor(Constructor<S> constructor);
100 Constructor<S> constructor, TypeLiteral<? extends S> type);
  /external/llvm/test/MC/MachO/
x86_32-sections.s 12 .constructor
  /external/objenesis/main/src/main/java/org/objenesis/instantiator/sun/
SunReflectionFactoryHelper.java 17 import java.lang.reflect.Constructor;
35 public static <T> Constructor<T> newConstructorForSerialization(Class<T> type,
36 Constructor<?> constructor) {
44 return (Constructor<T>) newConstructorForSerializationMethod.invoke(
45 reflectionFactory, type, constructor);
90 "newConstructorForSerialization", Class.class, Constructor.class);
  /external/snakeyaml/src/test/java/examples/
CustomImplicitResolverTest.java 25 import org.yaml.snakeyaml.constructor.AbstractConstruct;
26 import org.yaml.snakeyaml.constructor.SafeConstructor;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue193/
AbstractBeanTest.java 22 import org.yaml.snakeyaml.constructor.BaseConstructor;
23 import org.yaml.snakeyaml.constructor.Constructor;
36 Constructor c = new Constructor();
  /external/swiftshader/third_party/LLVM/test/MC/MachO/
x86_32-sections.s 12 .constructor
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
TypeVariableTest.java 20 import java.lang.reflect.Constructor;
68 Constructor<?> constructor = clazz.getDeclaredConstructor(); local
69 TypeVariable<?>[] typeParameters = constructor.getTypeParameters();
72 assertEquals(constructor, typeVariable.getGenericDeclaration());
132 Constructor<?> constructor = clazz.getDeclaredConstructor(); local
134 TypeVariable<?>[] typeParameters = constructor.getTypeParameters();
137 assertEquals(constructor, typeParameters[0].getGenericDeclaration());
142 assertEquals(constructor, typeParameters[1].getGenericDeclaration())
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/burst/burst/1.1.0/
burst-1.1.0.jar 
  /external/guice/core/test/com/google/inject/
BindingTest.java 37 import java.lang.reflect.Constructor;
205 "Could not find a suitable constructor in " + PrivateNoArg.class.getName(),
216 TooManyConstructors.class.getName() + " has more than one constructor annotated with "
217 + "@Inject. Classes must have either one (and only one) constructor",
228 final Constructor<D> constructor = D.class.getConstructor(Stage.class); local
232 bind(Object.class).toConstructor(constructor);
241 final Constructor<C> constructor = C.class.getConstructor(Stage.class, Object.class); local
247 bind(s).toConstructor(constructor, new TypeLiteral<C<Stage>>() {})
264 final Constructor constructor = C.class.getConstructor(Stage.class, Object.class); local
284 final Constructor<D> constructor = D.class.getConstructor(Stage.class); local
308 final Constructor<E> constructor = E.class.getDeclaredConstructor(Stage.class); local
321 final Constructor<F> constructor = F.class.getConstructor(Stage.class); local
355 final Constructor<D> constructor = D.class.getConstructor(Stage.class); local
376 final Constructor<CFoo> constructor = CFoo.class.getDeclaredConstructor(); local
    [all...]
  /external/libcxxabi/include/
cxxabi.h 94 void (*constructor)(void *), void (*destructor)(void *));
98 void (*constructor)(void *), void (*destructor)(void *),
103 void (*constructor)(void *), void (*destructor)(void *),
108 void (*constructor)(void *), void (*destructor)(void *));
136 size_t element_size, void (*constructor)(void *, void *),

Completed in 881 milliseconds

1 2 3 4 5 67 8 91011>>