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.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/
H A DTableOfContents.java34 public final Section header = new Section(0x0000);
35 public final Section stringIds = new Section(0x0001);
36 public final Section typeIds = new Section(0x0002);
37 public final Section protoIds = new Section(0x0003);
38 public final Section fieldIds = new Section(
213 public static class Section implements Comparable<Section> { class in class:TableOfContents
219 public Section(int type) { method in class:TableOfContents.Section
[all...]
/dalvik/dx/src/com/android/dx/io/
H A DDexBuffer.java200 public Section open(int position) {
204 return new Section(position);
207 public Section appendSection(int maxByteCount, String name) {
209 Section result = new Section(name, length, limit);
261 private DexBuffer.Section in = open(tableOfContents.classDefs.off);
305 public final class Section implements ByteInput, ByteOutput { class in class:DexBuffer
311 private Section(String name, int position, int limit) { method in class:DexBuffer.Section
317 private Section(int position) { method in class:DexBuffer.Section
460 Section triesSectio
[all...]

Completed in 915 milliseconds