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

1 2

  /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);
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();
ParameterAnnotationStruct.java 101 MethodIdsSection methodIds = file.getMethodIds();
104 methodIds.intern(method);
EncodedMethod.java 117 MethodIdsSection methodIds = file.getMethodIds();
120 methodIds.intern(method);
  /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);
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();
ParameterAnnotationStruct.java 101 MethodIdsSection methodIds = file.getMethodIds();
104 methodIds.intern(method);
EncodedMethod.java 117 MethodIdsSection methodIds = file.getMethodIds();
120 methodIds.intern(method);
  /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);
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();
ParameterAnnotationStruct.java 101 MethodIdsSection methodIds = file.getMethodIds();
104 methodIds.intern(method);
EncodedMethod.java 117 MethodIdsSection methodIds = file.getMethodIds();
120 methodIds.intern(method);
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 37 private final Set<Integer> methodIds;
64 methodIds = fieldIds = null;
68 methodIds = new HashSet<Integer>();
75 methodIds.addAll(getMethodIds(dex, memberNameIndexes, typeIndex));
93 if (methodIds.contains(methodId)) {
94 out.println(location() + ": method reference " + dex.methodIds().get(methodId)
104 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
115 if (fieldIds == null || methodIds == null) {
138 if (methodIds.contains(methodIndex)) {
139 out.println(location() + " method declared " + dex.methodIds().get(methodIndex))
    [all...]
  /dalvik/dx/src/com/android/dx/dex/
TableOfContents.java 39 public final Section methodIds = new Section(0x0005);
53 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList,
109 methodIds.size = headerIn.readInt();
110 methodIds.off = headerIn.readInt();
186 out.writeInt(methodIds.size);
187 out.writeInt(methodIds.off);
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 46 public final short[] methodIds;
59 this.methodIds = new short[tableOfContents.methodIds.size];
139 return methodIds[methodIndex] & 0xffff;
DexMerger.java 481 return tableOfContents.methodIds;
489 indexMap.methodIds[oldIndex] = (short) newIndex;
    [all...]
  /dalvik/dx/src/com/android/dx/io/
DexBuffer.java 110 private final List<MethodId> methodIds = new AbstractList<MethodId>() {
112 checkBounds(index, tableOfContents.methodIds.size);
113 return open(tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * index))
117 return tableOfContents.methodIds.size;
250 public List<MethodId> methodIds() {
251 return methodIds;
DexIndexPrinter.java 80 for (MethodId methodId : dexBuffer.methodIds()) {
  /dalvik/dx/src/com/android/dx/command/grep/
Grep.java 73 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
  /frameworks/base/media/jni/mediaeditor/
VideoEditorJava.h 269 videoEditJava_get##m_class##MethodIds( \
272 VideoEditJava_##m_class##MethodIds* pIds) \
278 (sizeof(VideoEditJava_##m_class##MethodIds) / \
290 videoEditJava_get##m_class##MethodIds( \
293 VideoEditJava_##m_class##MethodIds* pIds);
351 jmethodID methodIds[];
VideoEditorJava.cpp 894 pIds->methodIds[index] = pClass->pMethods[index].methodId;
VideoEditorMain.cpp     [all...]

Completed in 343 milliseconds

1 2