Lines Matching refs:Section

32     public final Section header = new Section(0x0000);
33 public final Section stringIds = new Section(0x0001);
34 public final Section typeIds = new Section(0x0002);
35 public final Section protoIds = new Section(0x0003);
36 public final Section fieldIds = new Section(0x0004);
37 public final Section methodIds = new Section(0x0005);
38 public final Section classDefs = new Section(0x0006);
39 public final Section callSiteIds = new Section(0x0007);
40 public final Section methodHandles = new Section(0x0008);
41 public final Section mapList = new Section(0x1000);
42 public final Section typeLists = new Section(0x1001);
43 public final Section annotationSetRefLists = new Section(0x1002);
44 public final Section annotationSets = new Section(0x1003);
45 public final Section classDatas = new Section(0x2000);
46 public final Section codes = new Section(0x2001);
47 public final Section stringDatas = new Section(0x2002);
48 public final Section debugInfos = new Section(0x2003);
49 public final Section annotations = new Section(0x2004);
50 public final Section encodedArrays = new Section(0x2005);
51 public final Section annotationsDirectories = new Section(0x2006);
52 public final Section[] sections = {
77 private void readHeader(Dex.Section headerIn) throws UnsupportedEncodingException { in readHeader()
123 private void readMap(Dex.Section in) throws IOException { in readMap()
125 Section previous = null; in readMap()
129 Section section = getSection(type); in readMap()
153 Section section = sections[i]; in computeSizesFromOffsets()
165 private Section getSection(short type) { in getSection()
166 for (Section section : sections) { in getSection()
174 public void writeHeader(Dex.Section out, int api) throws IOException { in writeHeader()
200 public void writeMap(Dex.Section out) throws IOException { in writeMap()
202 for (Section section : sections) { in writeMap()
209 for (Section section : sections) { in writeMap()
219 public static class Section implements Comparable<Section> { class in TableOfContents
225 public Section(int type) { in Section() method in TableOfContents.Section
234 public int compareTo(Section section) { in compareTo()