/libcore/dex/src/main/java/com/android/dex/ |
FieldId.java | 24 private final int typeIndex; 27 public FieldId(Dex dex, int declaringClassIndex, int typeIndex, int nameIndex) { 30 this.typeIndex = typeIndex; 39 return typeIndex; 53 return Unsigned.compare(typeIndex, other.typeIndex); // should always be 0 58 out.writeUnsignedShort(typeIndex); 64 return declaringClassIndex + " " + typeIndex + " " + nameIndex; 66 return dex.typeNames().get(typeIndex) + "." + dex.strings().get(nameIndex) [all...] |
ClassDef.java | 26 private final int typeIndex; 35 public ClassDef(Dex buffer, int offset, int typeIndex, int accessFlags, 40 this.typeIndex = typeIndex; 55 return typeIndex; 92 return typeIndex + " " + supertypeIndex; 96 result.append(buffer.typeNames().get(typeIndex));
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/ |
DexBackedTypeReference.java | 41 public final int typeIndex; 44 int typeIndex) { 46 this.typeIndex = typeIndex; 50 return dexFile.getType(typeIndex);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
TypeIdItem.java | 60 public static String getReferenceAnnotation(@Nonnull DexBackedDexFile dexFile, int typeIndex) { 62 String typeString = dexFile.getType(typeIndex); 63 return String.format("type_id_item[%d]: %s", typeIndex, typeString); 67 return String.format("type_id_item[%d]", typeIndex); 71 public static String getOptionalReferenceAnnotation(@Nonnull DexBackedDexFile dexFile, int typeIndex) { 72 if (typeIndex == -1) { 75 return getReferenceAnnotation(dexFile, typeIndex);
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
EnumMemberValue.java | 32 int typeIndex, valueIndex; 45 this.typeIndex = type; 55 typeIndex = valueIndex = 0; 82 return Descriptor.toClassName(cp.getUtf8Info(typeIndex)); 91 typeIndex = cp.addUtf8Info(Descriptor.of(typename)); 116 writer.enumConstValue(cp.getUtf8Info(typeIndex), getValue());
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/ |
FakeAdapter.java | 66 int typeIndex = mTypes.indexOf(viewRef); 67 if (typeIndex == -1) { 68 typeIndex = mTypes.size(); 74 int index = typeCount[typeIndex]; 75 typeCount[typeIndex] += count; 78 mItems.add(new AdapterItem(dataBindingItem, typeIndex, mItems.size(), index++));
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/ |
DexBackedTypeEncodedValue.java | 42 private final int typeIndex; 46 typeIndex = reader.readSizedSmallUint(valueArg + 1); 50 return dexFile.getType(typeIndex);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
DexBackedDexFile.java | 171 public int getTypeIdItemOffset(int typeIndex) { 172 if (typeIndex < 0 || typeIndex >= typeCount) { 173 throw new InvalidItemIndex(typeIndex, "Type index out of bounds: %d", typeIndex); 175 return typeStartOffset + typeIndex*TypeIdItem.ITEM_SIZE; 248 public String getType(int typeIndex) { 249 int typeOffset = getTypeIdItemOffset(typeIndex); 255 public String getOptionalType(int typeIndex) { 256 if (typeIndex == -1) [all...] |
/external/clang/INPUTS/ |
all-std-headers.cpp | 81 #if __has_include(<typeindex>) 82 #include <typeindex>
|
/external/libcxx/test/std/utilities/type.index/type.index.members/ |
ctor.pass.cpp | 10 // <typeindex> 17 #include <typeindex>
|
eq.pass.cpp | 10 // <typeindex> 17 #include <typeindex>
|
hash_code.pass.cpp | 10 // <typeindex> 16 #include <typeindex>
|
name.pass.cpp | 10 // <typeindex> 16 #include <typeindex>
|
/external/libcxx/test/std/utilities/type.index/type.index.overview/ |
copy_assign.pass.cpp | 10 // <typeindex> 16 #include <typeindex>
|
copy_ctor.pass.cpp | 10 // <typeindex> 16 #include <typeindex>
|
/external/libcxx/test/std/utilities/type.index/type.index.synopsis/ |
hash_type_index.pass.cpp | 10 // <typeindex> 18 #include <typeindex>
|
/external/libcxx/test/std/utilities/type.index/ |
version.pass.cpp | 10 // <typeindex> 12 #include <typeindex>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.hash/ |
hash.pass.cpp | 10 // <typeindex> 21 #include <typeindex>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.members/ |
ctor.pass.cpp | 10 // <typeindex> 16 #include <typeindex>
|
eq.pass.cpp | 10 // <typeindex> 17 #include <typeindex>
|
hash_code.pass.cpp | 10 // <typeindex> 16 #include <typeindex>
|
name.pass.cpp | 10 // <typeindex> 16 #include <typeindex>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.overview/ |
copy_assign.pass.cpp | 10 // <typeindex> 16 #include <typeindex>
|
copy_ctor.pass.cpp | 10 // <typeindex> 16 #include <typeindex>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.synopsis/ |
hash_type_index.pass.cpp | 10 // <typeindex> 18 #include <typeindex>
|