HomeSort by relevance Sort by last modified time
    Searched refs:typeIndex (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /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);
  /dalvik/dx/src/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/value/
DexBackedTypeEncodedValue.java 42 private final int typeIndex;
46 typeIndex = reader.readSizedSmallUint(valueArg + 1);
50 return dexFile.getType(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());
AnnotationsWriter.java 129 * @param typeIndex <code>type_index</code> in <code>annotation</code>.
133 public void annotation(int typeIndex, int numMemberValuePairs)
136 write16bit(typeIndex);
Annotation.java 54 int typeIndex;
72 typeIndex = type;
238 return Descriptor.toClassName(pool.getUtf8Info(typeIndex));
306 String typeName = pool.getUtf8Info(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);
TypeListItem.java 58 int typeIndex = dexFile.readUshort(out.getCursor());
59 out.annotate(2, TypeIdItem.getReferenceAnnotation(dexFile, typeIndex));
94 int typeIndex = dexFile.readUshort(typeListOffset + 4 + i*2);
95 String type = dexFile.getType(typeIndex);
FieldIdItem.java 60 int typeIndex = dexFile.readUshort(out.getCursor());
61 out.annotate(2, "return_type_idx = %s", TypeIdItem.getReferenceAnnotation(dexFile, typeIndex));
75 int typeIndex = dexFile.readUshort(fieldOffset + TYPE_OFFSET);
76 String fieldType = dexFile.getType(typeIndex);
AnnotationItem.java 82 int typeIndex = reader.readSmallUleb128();
83 String annotationType = dexFile.getType(typeIndex);
DebugInfoItem.java 112 int typeIndex = reader.readSmallUleb128() - 1;
114 TypeIdItem.getOptionalReferenceAnnotation(dexFile, typeIndex));
126 int typeIndex = reader.readSmallUleb128() - 1;
128 TypeIdItem.getOptionalReferenceAnnotation(dexFile, typeIndex));
  /external/parameter-framework/upstream/parameter/
CompoundRule.cpp 63 for (size_t typeIndex = 0; typeIndex < 2; typeIndex++) {
65 if (ruleParser.getType() == _apcTypes[typeIndex]) {
68 _bTypeAll = typeIndex != 0;
  /frameworks/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++));
FakeExpandableAdapter.java 66 int typeIndex = types.indexOf(viewRef);
67 if (typeIndex == -1) {
68 typeIndex = types.size();
80 int index = typeCount[typeIndex];
81 typeCount[typeIndex] += count;
84 AdapterItem item = new AdapterItem(dataBindingItem, typeIndex, mItems.size(),
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedAnnotation.java 44 public final int typeIndex;
53 this.typeIndex = reader.readSmallUleb128();
58 @Nonnull @Override public String getType() { return dexFile.getType(typeIndex); }
DexBackedDexFile.java 154 public int getTypeIdItemOffset(int typeIndex) {
155 if (typeIndex < 0 || typeIndex >= typeCount) {
156 throw new InvalidItemIndex(typeIndex, "Type index out of bounds: %d", typeIndex);
158 return typeStartOffset + typeIndex*TypeIdItem.ITEM_SIZE;
231 public String getType(int typeIndex) {
232 int typeOffset = getTypeIdItemOffset(typeIndex);
238 public String getOptionalType(int typeIndex) {
239 if (typeIndex == -1)
    [all...]
  /frameworks/rs/rsov/driver/
rsovContext.h 38 uint32_t* typeIndex);
rsovContext.cpp 151 uint32_t* typeIndex) {
156 *typeIndex = i;
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
operand.cpp 76 for (uint64_t typeIndex = 0; typeIndex < table->count; ++typeIndex) {
77 const auto& group = table->types[typeIndex];
99 for (uint64_t typeIndex = 0; typeIndex < table->count; ++typeIndex) {
100 const auto& group = table->types[typeIndex];
  /frameworks/av/media/libstagefright/codec2/include/
C2ParamDef.h 97 * - expose typeIndex, and non-flex flexSize.
99 template<typename S, int BaseIndex, unsigned TypeIndex>
108 typeIndex = BaseIndex | TypeIndex
169 template<typename S, int BaseIndex, unsigned TypeIndex>
170 struct C2_HIDE C2FlexStructCheck : public C2StructCheck<S, BaseIndex, TypeIndex> {
184 C2FlexStructCheck(const C2FlexStructCheck<S, BaseIndex, TypeIndex> &) = delete;
185 C2FlexStructCheck& operator= (const C2FlexStructCheck<S, BaseIndex, TypeIndex> &) = delete;
218 template<typename S, int BaseIndex, unsigned TypeIndex>
219 const std::initializer_list<const C2FieldDescriptor> C2FlexStructCheck<S, BaseIndex, TypeIndex>::fieldList = S::fieldList
    [all...]
  /external/skia/src/gpu/vk/
GrVkMemory.cpp 22 uint32_t* typeIndex,
29 *typeIndex = i;
68 uint32_t typeIndex = 0;
77 &typeIndex,
83 &typeIndex,
87 VkMemoryPropertyFlags mpf = phDevMemProps.memoryTypes[typeIndex].propertyFlags;
95 &typeIndex,
102 if (!heap->alloc(memReqs.size, memReqs.alignment, typeIndex, heapIndex, alloc)) {
106 0, &typeIndex, &heapIndex) ||
107 !heap->alloc(memReqs.size, memReqs.alignment, typeIndex, heapIndex, alloc))
    [all...]
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 70 int typeIndex = Collections.binarySearch(dex.typeIds(), typeStringIndex);
71 if (typeIndex < 0) {
74 methodIds.addAll(getMethodIds(dex, memberNameIndexes, typeIndex));
75 fieldIds.addAll(getFieldIds(dex, memberNameIndexes, typeIndex));
187 * Returns the set of types that can be assigned to {@code typeIndex}.
189 private Set<Integer> findAssignableTypes(Dex dex, int typeIndex) {
191 assignableTypes.add(typeIndex);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DebugWriter.java 66 int typeIndex = typeSection.getNullableItemIndex(type);
74 writer.writeUleb128(typeIndex + 1);
79 writer.writeUleb128(typeIndex + 1);
  /external/proguard/src/proguard/preverify/
CodePreverifier.java 268 int typeIndex = 0;
276 typeIndex++;
283 typeCount = typeIndex;
296 typeIndex = 0;
300 for (int index = 0; typeIndex < typeCount; index++)
331 types[typeIndex++] = type;
370 int typeIndex = typeCount;
379 types[--typeIndex] =

Completed in 1077 milliseconds

1 2 3 4 5 6 7 8