HomeSort by relevance Sort by last modified time
    Searched defs:methodIds (Results 1 - 22 of 22) sorted by null

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MethodIdsSection.java 35 private final TreeMap<CstBaseMethodRef, MethodIdItem> methodIds;
45 methodIds = new TreeMap<CstBaseMethodRef, MethodIdItem>();
51 return methodIds.values();
63 IndexedItem result = methodIds.get((CstBaseMethodRef) cst);
80 int sz = methodIds.size();
105 MethodIdItem result = methodIds.get(method);
109 methodIds.put(method, result);
129 MethodIdItem item = methodIds.get(ref);
MethodAnnotationStruct.java 77 MethodIdsSection methodIds = file.getMethodIds();
80 methodIds.intern(method);
EncodedMethod.java 117 MethodIdsSection methodIds = file.getMethodIds();
120 methodIds.intern(method);
ParameterAnnotationStruct.java 101 MethodIdsSection methodIds = file.getMethodIds();
104 methodIds.intern(method);
DexFile.java 77 private final MethodIdsSection methodIds;
118 methodIds = new MethodIdsSection(this);
127 header, stringIds, typeIds, protoIds, fieldIds, methodIds,
373 return methodIds;
430 methodIds.intern((CstBaseMethodRef) cst);
459 return methodIds.get(cst);
487 methodIds.prepare();
  /dalvik/dx/src/com/android/dx/dex/file/
MethodIdsSection.java 35 private final TreeMap<CstBaseMethodRef, MethodIdItem> methodIds;
45 methodIds = new TreeMap<CstBaseMethodRef, MethodIdItem>();
51 return methodIds.values();
63 IndexedItem result = methodIds.get((CstBaseMethodRef) cst);
80 int sz = methodIds.size();
105 MethodIdItem result = methodIds.get(method);
109 methodIds.put(method, result);
129 MethodIdItem item = methodIds.get(ref);
MethodAnnotationStruct.java 77 MethodIdsSection methodIds = file.getMethodIds();
80 methodIds.intern(method);
EncodedMethod.java 116 MethodIdsSection methodIds = file.getMethodIds();
119 methodIds.intern(method);
ParameterAnnotationStruct.java 102 MethodIdsSection methodIds = file.getMethodIds();
105 methodIds.intern(method);
DexFile.java 80 private final MethodIdsSection methodIds;
123 methodIds = new MethodIdsSection(this);
132 header, stringIds, typeIds, protoIds, fieldIds, methodIds,
392 return methodIds;
447 methodIds.intern((CstBaseMethodRef) cst);
476 return methodIds.get(cst);
504 methodIds.prepare();
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MethodIdsSection.java 35 private final TreeMap<CstBaseMethodRef, MethodIdItem> methodIds;
45 methodIds = new TreeMap<CstBaseMethodRef, MethodIdItem>();
51 return methodIds.values();
63 IndexedItem result = methodIds.get((CstBaseMethodRef) cst);
80 int sz = methodIds.size();
105 MethodIdItem result = methodIds.get(method);
109 methodIds.put(method, result);
129 MethodIdItem item = methodIds.get(ref);
MethodAnnotationStruct.java 77 MethodIdsSection methodIds = file.getMethodIds();
80 methodIds.intern(method);
EncodedMethod.java 117 MethodIdsSection methodIds = file.getMethodIds();
120 methodIds.intern(method);
ParameterAnnotationStruct.java 101 MethodIdsSection methodIds = file.getMethodIds();
104 methodIds.intern(method);
DexFile.java 82 private final MethodIdsSection methodIds;
125 methodIds = new MethodIdsSection(this);
134 header, stringIds, typeIds, protoIds, fieldIds, methodIds,
394 return methodIds;
449 methodIds.intern((CstBaseMethodRef) cst);
478 return methodIds.get(cst);
506 methodIds.prepare();
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 36 private final Set<Integer> methodIds;
63 methodIds = fieldIds = null;
67 methodIds = new HashSet<Integer>();
74 methodIds.addAll(getMethodIds(dex, memberNameIndexes, typeIndex));
92 if (methodIds.contains(methodId)) {
93 out.println(location() + ": method reference " + dex.methodIds().get(methodId)
103 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
114 if (fieldIds == null || methodIds == null) {
137 if (methodIds.contains(methodIndex)) {
138 out.println(location() + " method declared " + dex.methodIds().get(methodIndex))
    [all...]
  /libcore/dex/src/main/java/com/android/dex/
TableOfContents.java 37 public final Section methodIds = new Section(0x0005);
51 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList,
107 methodIds.size = headerIn.readInt();
108 methodIds.off = headerIn.readInt();
184 out.writeInt(methodIds.size);
185 out.writeInt(methodIds.off);
Dex.java 68 private final MethodIdTable methodIds = new MethodIdTable();
251 public List<MethodId> methodIds() {
252 return methodIds;
357 return Collections.binarySearch(methodIds, methodId);
386 * {@code methodIds().get(methodIndex).getDeclaringClassIndex();}
389 checkBounds(methodIndex, tableOfContents.methodIds.size);
390 int position = tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * methodIndex);
396 * {@code methodIds().get(methodIndex).getNameIndex();}
399 checkBounds(methodIndex, tableOfContents.methodIds.size);
400 int position = tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * methodIndex)
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 63 public final short[] methodIds;
77 this.methodIds = new short[tableOfContents.methodIds.size];
165 return methodIds[methodIndex] & 0xffff;
  /prebuilts/sdk/tools/darwin/lib/
dx.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 

Completed in 369 milliseconds