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

1 2 3

  /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/smali/dexlib/src/main/java/org/jf/dexlib/
ClassDefItem.java 46 private TypeIdItem superType;
66 * @param superType The superclass of this class, or null if none (only valid for java.lang.Object)
77 private ClassDefItem(DexFile dexFile, TypeIdItem classType, int accessFlags, TypeIdItem superType,
85 this.superType = superType;
106 * @param superType The superclass of this class, or null if none (only valid for java.lang.Object)
119 TypeIdItem superType, TypeListItem implementedInterfaces, StringIdItem sourceFile,
129 ClassDefItem classDefItem = new ClassDefItem(dexFile, classType, accessFlags, superType, implementedInterfaces,
140 * @param superType The superclass of the class, or null if none (only valid for java.lang.Object)
153 TypeIdItem superType, TypeListItem implementedInterfaces, StringIdItem sourceFile
    [all...]
  /external/jmonkeyengine/engine/src/core/checkers/quals/
SubtypeOf.java 36 * qualifier that is a supertype of all other qualifiers in the given
57 /** An array of the supertype qualifiers of the annotated qualifier **/
Unused.java 8 * specified qualifier type (or any supertype).
  /dalvik/dx/src/com/android/dx/merge/
SortableType.java 25 * preceded by its supertype and implemented interfaces.
68 * Assigns this type's depth if the depths of its supertype and implemented
  /external/bluetooth/glib/gio/
gcontenttype.h 37 const char *supertype);
gcontenttype.c 133 const char *supertype)
139 g_return_val_if_fail (supertype != NULL, FALSE);
141 if (g_content_type_equals (type, supertype))
146 if (value_utf8 && strcmp (value_utf8, supertype) == 0)
483 * @supertype: a string.
485 * Determines if @type is a subset of @supertype.
487 * Returns: %TRUE if @type is a kind of @supertype,
492 const char *supertype)
497 g_return_val_if_fail (supertype != NULL, FALSE);
500 res = xdg_mime_mime_type_subclass (type, supertype);
    [all...]
  /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);
  /ndk/sources/host-tools/sed-4.2.1/m4/
sys_stat_h.m4 38 [Define to the type of st_nlink in struct stat, or a supertype.])],
  /sdk/eclipse/
dictionary.txt 276 supertype
  /external/smali/baksmali/src/main/resources/templates/templates/
baksmali.stg 3 smaliFile(AccessFlags, ClassType, SuperType, SourceFile, Interfaces, Annotations, StaticFields,
7 <if(SuperType)>
8 .super <SuperType>
  /external/guava/guava/src/com/google/common/collect/
ClassToInstanceMap.java 35 * @param <B> the common supertype that all entries must share; often this is
ObjectArrays.java 133 * not a supertype of the runtime type of every element in the specified
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 287 // it so we get its supertype. At some point it will be null and we
289 IType superType = type;
291 while ((superType = hierarchy.getSuperclass(superType)) != null &&
292 superType.exists()) {
293 if (superClassName.equals(superType.getFullyQualifiedName())) {
  /external/dexmaker/src/main/java/com/google/dexmaker/
DexMaker.java 220 TypeId<?> supertype, TypeId<?>... interfaces) {
232 declaration.supertype = supertype;
404 private TypeId<?> supertype; field in class:DexMaker.TypeDeclaration
428 ClassDefItem out = new ClassDefItem(thisType, flags, supertype.constant,
  /external/dexmaker/src/main/java/com/google/dexmaker/stock/
ProxyBuilder.java 246 TypeId<T> superType = TypeId.get(baseClass);
247 generateConstructorsAndFields(dexMaker, generatedType, superType, baseClass);
249 generateCodeForAllMethods(dexMaker, generatedType, methodsToProxy, superType);
250 dexMaker.declare(generatedType, generatedName + ".generated", PUBLIC, superType,
548 TypeId<G> generatedType, TypeId<T> superType, Class<T> superClass) {
569 MethodId<T, ?> superConstructor = superType.getConstructor(types);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidTypeRenameParticipant.java 172 IType superType = superTypes[i];
173 String className = superType.getFullyQualifiedName();
AndroidTypeMoveParticipant.java 212 IType superType = superTypes[i];
213 String className = superType.getFullyQualifiedName();
  /external/guava/guava/src/com/google/common/io/
LittleEndianDataInputStream.java 37 * supertype {@code DataInput}, which explicitly requires big-endian byte order.
LittleEndianDataOutputStream.java 35 * supertype {@code DataOutput}, which explicitly requires big-endian byte
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ObjectArrays.java 106 * not a supertype of the runtime type of every element in the specified
  /external/guava/guava-tests/test/com/google/common/collect/
EnumHashBiMapTest.java 108 EnumHashBiMap<Currency, Object> bimap2 = // use supertype
  /dalvik/dx/src/com/android/dx/io/
DexBuffer.java 423 int supertype = readInt();
429 return new ClassDef(DexBuffer.this, offset, type, accessFlags, supertype,
  /external/guava/guava/src/com/google/common/eventbus/
package-info.java 53 * <p>To listen for a common event supertype (such as EventObject or Object)...
57 * listeners of any supertype, allowing listeners for interface types
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventBusTest.java 58 * supertype, including interfaces and superclasses.

Completed in 2231 milliseconds

1 2 3