Searched defs:methodHandles (Results 1 - 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/file/
H A DMethodHandlesSection.java25 private final TreeMap<CstMethodHandle, MethodHandleItem> methodHandles = new TreeMap<>(); field in class:MethodHandlesSection
38 IndexedItem result = methodHandles.get((CstMethodHandle) cst);
48 for (MethodHandleItem item : methodHandles.values()) {
55 return methodHandles.values();
65 MethodHandleItem result = methodHandles.get(methodHandle);
68 methodHandles.put(methodHandle, result);
73 return methodHandles.get(cstMethodHandle).getIndex();
H A DDexFile.java97 private final MethodHandlesSection methodHandles; field in class:DexFile
152 methodHandles = new MethodHandlesSection(this);
156 callSiteIds, methodHandles,
160 methodHandles = null;
462 return methodHandles;
542 methodHandles.intern((CstMethodHandle) cst);
571 return methodHandles.get(cst);
629 methodHandles.prepare();
647 if ((one == callSiteIds || one == methodHandles) && one.items().isEmpty()) {
701 if ((one == callSiteIds || one == methodHandles)
[all...]
/dalvik/dx/src/com/android/dex/
H A DTableOfContents.java40 public final Section methodHandles = new Section(0x0008); field in class:TableOfContents
54 methodHandles, typeLists, annotationSetRefLists, annotationSets, classDatas, codes,

Completed in 630 milliseconds