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

/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DDexFile.java113 private final IndexedSection[] indexedSections; field in class:DexFile
210 indexedSections = new IndexedSection[] {
648 sections = new Section[indexedSections.length + offsettedSections.length];
649 System.arraycopy(indexedSections, 0, sections, 0, indexedSections.length);
650 System.arraycopy(offsettedSections, 0, sections, indexedSections.length, offsettedSections.length);
710 sections = new Section[indexedSections.length + offsettedSections.length];
711 System.arraycopy(indexedSections, 0, sections, 0, indexedSections.length);
712 System.arraycopy(offsettedSections, 0, sections, indexedSections
[all...]

Completed in 73 milliseconds