Searched refs:Section (Results 1 - 25 of 44) sorted by relevance

12

/dalvik/dx/src/com/android/dex/
H A DTableOfContents.java32 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(
219 public static class Section implements Comparable<Section> { class in class:TableOfContents
225 public Section(int type) { method in class:TableOfContents.Section
[all...]
H A DCallSiteId.java19 import com.android.dex.Dex.Section;
44 public void writeTo(Section out) {
H A DAnnotation.java49 public void writeTo(Dex.Section out) {
H A DEncodedValue.java40 public void writeTo(Dex.Section out) {
H A DMethodHandle.java19 import com.android.dex.Dex.Section;
114 public void writeTo(Section out) {
H A DFieldId.java56 public void writeTo(Dex.Section out) {
H A DMethodId.java56 public void writeTo(Dex.Section out) {
H A DProtoId.java53 public void writeTo(Dex.Section out) {
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java53 private final Dex.Section headerOut;
56 private final Dex.Section idsDefsOut;
58 private final Dex.Section mapListOut;
60 private final Dex.Section typeListOut;
62 private final Dex.Section classDataOut;
64 private final Dex.Section codeOut;
66 private final Dex.Section stringDataOut;
68 private final Dex.Section debugInfoOut;
70 private final Dex.Section encodedArrayOut;
73 private final Dex.Section annotationsDirectoryOu
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DOffsettedItem.java38 private Section addedTo;
71 Section.validateAlignment(alignment);
223 public final int place(Section addedTo, int offset) {
301 protected void place0(Section addedTo, int offset) {
H A DMapItem.java38 private final Section section;
67 public static void addMap(Section[] sections,
80 for (Section section : sections) {
124 private MapItem(ItemType type, Section section, Item firstItem,
161 private MapItem(Section section) {
H A DSection.java27 public abstract class Section { class
69 public Section(String name, DexFile file, int alignment) { method in class:Section
H A DDexFile.java95 private final Section[] sections;
126 sections = new Section[] {
398 /*package*/ Section getFirstDataSection() {
411 /*package*/ Section getLastDataSection() {
502 Section one = sections[i];
546 Section one = sections[i];
593 for (Section s : sections) {
H A DHeaderItem.java68 Section firstDataSection = file.getFirstDataSection();
69 Section lastDataSection = file.getLastDataSection();
H A DUniformItemSection.java29 public abstract class UniformItemSection extends Section {
H A DEncodedArrayItem.java101 protected void place0(Section addedTo, int offset) {
/dalvik/dx/src/com/android/dx/dex/file/
H A DOffsettedItem.java38 private Section addedTo;
71 Section.validateAlignment(alignment);
223 public final int place(Section addedTo, int offset) {
301 protected void place0(Section addedTo, int offset) {
H A DMapItem.java37 private final Section section;
66 public static void addMap(Section[] sections,
79 for (Section section : sections) {
123 private MapItem(ItemType type, Section section, Item firstItem,
160 private MapItem(Section section) {
H A DSection.java26 public abstract class Section { class
68 public Section(String name, DexFile file, int alignment) { method in class:Section
H A DDexFile.java108 private final Section[] sections;
153 sections = new Section[] {
161 sections = new Section[] {
473 /*package*/ Section getFirstDataSection() {
486 /*package*/ Section getLastDataSection() {
595 Section one = sections[i];
600 * Section.setFileOffset() always ensures appropriate alignment for the section.
648 final Section one = sections[i];
698 for (Section s : sections) {
H A DHeaderItem.java58 Section firstDataSection = file.getFirstDataSection();
59 Section lastDataSection = file.getLastDataSection();
H A DCallSiteItem.java56 protected void place0(Section addedTo, int offset) {
H A DEncodedArrayItem.java92 protected void place0(Section addedTo, int offset) {
H A DUniformItemSection.java28 public abstract class UniformItemSection extends Section {
/dalvik/dx/src/com/android/dx/io/
H A DDexIndexPrinter.java41 for (TableOfContents.Section section : tableOfContents.sections) {
96 Dex.Section in = dex.open(tableOfContents.typeLists.off);

Completed in 368 milliseconds

12