Searched defs:Section (Results 1 - 4 of 4) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DSection.java27 public abstract class Section { class
69 public Section(String name, DexFile file, int alignment) { method in class:Section
/dalvik/dx/src/com/android/dx/dex/file/
H A DSection.java26 public abstract class Section { class
68 public Section(String name, DexFile file, int alignment) { method in class:Section
/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 DDex.java171 public Section open(int position) {
180 return new Section("section", sectionData);
183 public Section appendSection(int maxByteCount, String name) {
192 Section result = new Section(name, sectionData);
328 public final class Section implements ByteInput, ByteOutput { class in class:Dex
333 private Section(String name, ByteBuffer data) { method in class:Dex.Section
491 Section triesSection = open(data.position());
673 throw new DexException("Section limit " + data.limit() + " exceeded by " + name);
681 throw new DexException("Section limi
[all...]

Completed in 72 milliseconds