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

1 2 3 4 5 6 7 8 9

  /dalvik/dx/src/com/android/dx/cf/code/
Merger.java 208 * Returns whether the given supertype is possibly assignable from
212 * type {@code Object} is the supertype of all reference
216 * @param supertypeBearer {@code non-null;} the supertype
221 Type supertype = supertypeBearer.getType(); local
224 if (supertype.equals(subtype)) {
229 int superBt = supertype.getBasicType();
235 supertype = Type.OBJECT;
249 return supertype.isIntlike() && subtype.isIntlike();
254 if (supertype == Type.KNOWN_NULL) {
256 * A known-null supertype is only assignable from anothe
    [all...]
  /external/objenesis/main/src/org/objenesis/instantiator/gcj/
GCJSerializationInstantiator.java 30 private Class superType;
34 this.superType = SerializationInstantiatorHelper.getNonSerializableSuperClass(type);
39 return newObjectMethod.invoke(dummyStream, new Object[] {type, superType});
  /external/objenesis/main/src/org/objenesis/instantiator/sun/
Sun13SerializationInstantiator.java 30 private final Class superType;
34 this.superType = SerializationInstantiatorHelper.getNonSerializableSuperClass(type);
39 return allocateNewObjectMethod.invoke(null, new Object[] {type, superType});
  /external/guice/core/src/com/google/inject/
TypeLiteral.java 249 * Returns the generic form of {@code supertype}. For example, if this is {@code
253 * @param supertype a superclass of, or interface implemented by, this.
256 public TypeLiteral<?> getSupertype(Class<?> supertype) {
257 checkArgument(supertype.isAssignableFrom(rawType),
258 "%s is not a supertype of %s", supertype, this.type); local
259 return resolve(MoreTypes.getGenericSupertype(type, rawType, supertype));
270 "%s is not defined by a supertype of %s", field, type);
277 * @param methodOrConstructor a method or constructor defined by this or any supertype.
286 "%s is not defined by a supertype of %s", method, type)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
FilteredSetMultimap.java 22 * A supertype for filtered {@link SetMultimap} implementations.
  /external/dagger2/core/src/main/java/dagger/internal/
MembersInjectors.java 51 * supertype. This is useful for cases where a type is known not to have its own {@link Inject}
52 * members, but must still inject members on its supertype(s).
  /external/guice/core/src/com/google/inject/spi/
ConstructorBinding.java 44 * fields are returned and then all methods. Within the fields, supertype fields are returned
45 * before subtype fields. Similarly, supertype methods are returned before subtype methods.
InjectionRequest.java 66 * fields are returned and then all methods. Within the fields, supertype fields are returned
67 * before subtype fields. Similarly, supertype methods are returned before subtype methods.
StaticInjectionRequest.java 58 * fields are returned and then all methods. Within the fields, supertype fields are returned
59 * before subtype fields. Similarly, supertype methods are returned before subtype methods.
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
ClassWriter.java 54 * If {@code supertype} is a class, makes this class extend it; if it is an interface, makes this
57 public void setSupertype(TypeElement supertype) {
58 switch (supertype.getKind()) {
60 setSuperclass(ClassName.fromTypeElement(supertype));
63 addImplementedType(supertype);
66 throw new IllegalArgumentException(supertype + " must be a class or interface");
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
AddDelegateTransformer.java 50 public void begin_class(int version, int access, String className, Type superType, Type[] interfaces, String sourceFile) {
55 super.begin_class(version, access, className, superType, all, sourceFile);
70 super.begin_class(version, access, className, superType, interfaces, sourceFile);
InterceptFieldTransformer.java 47 public void begin_class(int version, int access, String className, Type superType, Type[] interfaces, String sourceFile) {
49 super.begin_class(version, access, className, superType, TypeUtils.add(interfaces, ENABLED), sourceFile);
70 super.begin_class(version, access, className, superType, interfaces, sourceFile);
  /dalvik/dx/src/com/android/dx/merge/
SortableType.java 25 * preceded by its supertype and implemented interfaces.
74 * Assigns this type's depth if the depths of its supertype and implemented
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
TestUtils.java 43 public static ClassDef makeClassDef(@Nonnull String classType, @Nullable String superType, String... interfaces) {
44 return new ImmutableClassDef(classType, 0, superType, ImmutableSet.copyOf(interfaces),
  /libcore/ojluni/src/main/java/java/lang/
Override.java 32 * method declaration in a supertype. If a method is annotated with
38 * supertype.
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/builder/
TestChildComponentWithBuilderAbstractClass.java 35 abstract SharedBuilder<B, C, M1, M2> set(FloatModule floatModule); // Test returning supertype.
TestChildComponentWithBuilderInterface.java 35 SharedBuilder<B, C, M1, M2> set(FloatModule floatModule); // Test return type is supertype.
TestComponentWithGenericBuilderInterface.java 35 SharedBuilder<B, C, M1, M2> set(FloatModule floatModule); // Test return type is supertype.
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
ClassInfo.java 44 // TODO: include modifiers, superType, interfaces
ClassEmitter.java 62 public void begin_class(int version, final int access, String className, final Type superType, final Type[] interfaces, String source) {
69 return (superType != null) ? superType : Constants.TYPE_OBJECT;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ReplaceStringsVisitor.java 340 findContextCandidates(results, clazzType, 0 /*superType*/);
361 * Because the superType argument is actually a recursion index, this makes the most
367 * @param superType The recursion index.
372 int superType) {
375 if (superType != 0 && Modifier.isPrivate(mb.getModifiers())) {
394 Integer rating = Integer.valueOf(10000 + 1000 * superType + argsLen);
408 if (superType != 0 && Modifier.isPrivate(var.getModifiers())) {
414 Integer rating = Integer.valueOf(superType);
423 findContextCandidates(results, clazzType, superType + 1);
  /external/guice/core/test/com/google/inject/
TypeLiteralTypeResolutionTest.java 208 + "supertype of java.util.ArrayList<java.lang.String>", e.getMessage());
215 + "supertype of java.util.ArrayList<java.lang.String>", e.getMessage());
222 + "supertype of java.util.ArrayList<java.lang.String>", e.getMessage());
228 assertEquals("class java.lang.String is not a supertype of "
236 + "a supertype of java.util.ArrayList<java.lang.String>", e.getMessage());
243 + "a supertype of java.util.ArrayList<java.lang.String>", e.getMessage());
  /external/guava/guava/src/com/google/common/io/
ByteArrayDataInput.java 29 * error</i>. This behavior is a technical violation of the supertype's
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationMethod.java 66 for (TypeMirror superType : supers) {
67 if (superType.getKind() == TypeKind.DECLARED) {
68 DeclaredType declaredType = (DeclaredType) superType;
  /external/clang/lib/AST/
ExprObjC.cpp 137 QualType SuperType, Selector Sel,
153 setReceiverPointer(SuperType.getAsOpaquePtr());
220 bool IsInstanceSuper, QualType SuperType, Selector Sel,
233 SuperType, Sel, SelLocs, SelLocsK, Method,

Completed in 1176 milliseconds

1 2 3 4 5 6 7 8 9