Home
last modified time | relevance | path

Searched defs:idx (Results 1 – 25 of 51) sorted by relevance

123

/dalvik/dx/src/com/android/dx/cf/code/
DLocalsArray.java85 public abstract void set(int idx, TypeBearer type); in set()
102 public abstract void invalidate(int idx); in invalidate()
111 public abstract TypeBearer getOrNull(int idx); in getOrNull()
123 public abstract TypeBearer get(int idx); in get()
136 public abstract TypeBearer getCategory1(int idx); in getCategory1()
148 public abstract TypeBearer getCategory2(int idx); in getCategory2()
DBytecodeArray.java320 int idx = bytes.getUnsignedByte(offset + 1); in parseInstruction() local
328 int idx = bytes.getUnsignedShort(offset + 1); in parseInstruction() local
336 int idx = bytes.getUnsignedShort(offset + 1); in parseInstruction() local
342 int idx = bytes.getUnsignedByte(offset + 1); in parseInstruction() local
348 int idx = bytes.getUnsignedByte(offset + 1); in parseInstruction() local
354 int idx = bytes.getUnsignedByte(offset + 1); in parseInstruction() local
360 int idx = bytes.getUnsignedByte(offset + 1); in parseInstruction() local
366 int idx = bytes.getUnsignedByte(offset + 1); in parseInstruction() local
375 int idx = opcode - ByteOps.ILOAD_0; in parseInstruction() local
384 int idx = opcode - ByteOps.LLOAD_0; in parseInstruction() local
[all …]
DOneLocalsArray.java105 public void set(int idx, TypeBearer type) { in set()
140 public void invalidate(int idx) { in invalidate()
146 public TypeBearer getOrNull(int idx) { in getOrNull()
151 public TypeBearer get(int idx) { in get()
162 public TypeBearer getCategory1(int idx) { in getCategory1()
178 public TypeBearer getCategory2(int idx) { in getCategory2()
242 private static TypeBearer throwSimException(int idx, String msg) { in throwSimException()
DLocalsArraySet.java194 public void set(int idx, TypeBearer type) { in set()
214 public void invalidate(int idx) { in invalidate()
228 public TypeBearer getOrNull(int idx) { in getOrNull()
234 public TypeBearer get(int idx) { in get()
240 public TypeBearer getCategory1(int idx) { in getCategory1()
246 public TypeBearer getCategory2(int idx) { in getCategory2()
DByteBlockList.java55 int idx = indexOfLabel(label); in labelToBlock() local
DExecutionStack.java85 String idx = (i == limit) ? "top0" : Hex.u2(limit - i); in annotate() local
284 int idx = stackPtr - n - 1; in change() local
DMachine.java113 public void localArg(Frame frame, int idx); in localArg()
204 public void localTarget(int idx, Type type, LocalItem local); in localTarget()
/dalvik/dexgen/src/com/android/dexgen/util/
DBits.java58 public static boolean get(int[] bits, int idx) { in get()
71 public static void set(int[] bits, int idx, boolean value) { in set()
88 public static void set(int[] bits, int idx) { in set()
100 public static void clear(int[] bits, int idx) { in clear()
153 int idx = findFirst(bits, start); in anyInRange() local
166 public static int findFirst(int[] bits, int idx) { in findFirst()
193 public static int findFirst(int value, int idx) { in findFirst()
/dalvik/dx/src/com/android/dx/util/
DBits.java58 public static boolean get(int[] bits, int idx) { in get()
71 public static void set(int[] bits, int idx, boolean value) { in set()
88 public static void set(int[] bits, int idx) { in set()
100 public static void clear(int[] bits, int idx) { in clear()
153 int idx = findFirst(bits, start); in anyInRange() local
166 public static int findFirst(int[] bits, int idx) { in findFirst()
193 public static int findFirst(int value, int idx) { in findFirst()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DMemberIdsSection.java37 int idx = 0; in orderItems() local
DClassDefsSection.java133 int idx = 0; in orderItems() local
158 private int orderItems0(Type type, int idx, int maxDepth) { in orderItems0()
DTypeIdItem.java63 int idx = file.getStringIds().indexOf(descriptor); in writeTo() local
DProtoIdsSection.java133 int idx = 0; in orderItems() local
/dalvik/dx/src/com/android/dx/dex/file/
DClassDefsSection.java132 int idx = 0; in orderItems() local
157 private int orderItems0(Type type, int idx, int maxDepth) { in orderItems0()
DMemberIdsSection.java48 int idx = 0; in orderItems() local
DTypeIdItem.java61 int idx = file.getStringIds().indexOf(descriptor); in writeTo() local
DProtoIdsSection.java132 int idx = 0; in orderItems() local
/dalvik/tools/dexdeps/src/com/android/dexdeps/
DDexData.java322 private String classNameFromTypeIndex(int idx) { in classNameFromTypeIndex()
330 private String[] argArrayFromProtoIndex(int idx) { in argArrayFromProtoIndex()
345 private String returnTypeFromProtoIndex(int idx) { in returnTypeFromProtoIndex()
376 int idx = 0; in getExternalReferences() local
507 int idx; in readString() local
/dalvik/libdex/
DDexProto.cpp143 u4 idx = dexTypeListGetIdx(typeList, i); in dexProtoGetMethodDescriptor() local
155 u4 idx = dexTypeListGetIdx(typeList, i); in dexProtoGetMethodDescriptor() local
504 u4 idx = dexTypeListGetIdx(pIterator->parameters, cursor); in dexParameterIteratorNextIndex() local
516 u4 idx = dexParameterIteratorNextIndex(pIterator); in dexParameterIteratorNextDescriptor() local
DDexFile.cpp105 const char* dexStringAndSizeById(const DexFile* pDexFile, u4 idx, in dexStringAndSizeById()
186 int idx = hash & mask; in classLookupAdd() local
446 int idx, mask; in dexFindClass() local
DDexFile.h624 DEX_INLINE const DexStringId* dexGetStringId(const DexFile* pDexFile, u4 idx) { in dexGetStringId()
629 DEX_INLINE const char* dexStringById(const DexFile* pDexFile, u4 idx) { in dexStringById()
640 DEX_INLINE const DexTypeId* dexGetTypeId(const DexFile* pDexFile, u4 idx) { in dexGetTypeId()
649 DEX_INLINE const char* dexStringByTypeIdx(const DexFile* pDexFile, u4 idx) { in dexStringByTypeIdx()
655 DEX_INLINE const DexMethodId* dexGetMethodId(const DexFile* pDexFile, u4 idx) { in dexGetMethodId()
661 DEX_INLINE const DexFieldId* dexGetFieldId(const DexFile* pDexFile, u4 idx) { in dexGetFieldId()
667 DEX_INLINE const DexProtoId* dexGetProtoId(const DexFile* pDexFile, u4 idx) { in dexGetProtoId()
686 DEX_INLINE const DexClassDef* dexGetClassDef(const DexFile* pDexFile, u4 idx) { in dexGetClassDef()
711 u4 idx) in dexGetTypeItem()
717 DEX_INLINE u4 dexTypeListGetIdx(const DexTypeList* pList, u4 idx) { in dexTypeListGetIdx()
[all …]
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
DStdConstantPool.java135 private static Constant throwInvalid(int idx) { in throwInvalid()
DCstInteger.java64 int idx = (value & 0x7fffffff) % cache.length; in make() local
/dalvik/dx/src/com/android/dx/rop/cst/
DStdConstantPool.java144 private static Constant throwInvalid(int idx) { in throwInvalid()
DCstInteger.java64 int idx = (value & 0x7fffffff) % cache.length; in make() local

123