HomeSort by relevance Sort by last modified time
    Searched refs:tableOfContents (Results 1 - 8 of 8) sorted by null

  /libcore/dex/src/main/java/com/android/dex/
Dex.java 61 private final TableOfContents tableOfContents = new TableOfContents();
81 this.tableOfContents.readFrom(this);
156 this.tableOfContents.readFrom(this);
182 public TableOfContents getTableOfContents() {
183 return tableOfContents;
337 checkBounds(fieldIndex, tableOfContents.fieldIds.size);
338 int position = tableOfContents.fieldIds.off + (SizeOf.MEMBER_ID_ITEM * fieldIndex);
361 checkBounds(typeIndex, tableOfContents.typeIds.size)
    [all...]
  /dalvik/dx/src/com/android/dx/io/
DexIndexPrinter.java 24 import com.android.dex.TableOfContents;
33 private final TableOfContents tableOfContents;
37 this.tableOfContents = dex.getTableOfContents();
41 for (TableOfContents.Section section : tableOfContents.sections) {
92 if (tableOfContents.typeLists.off == -1) {
96 Dex.Section in = dex.open(tableOfContents.typeLists.off);
97 for (int i = 0; i < tableOfContents.typeLists.size; i++) {
  /frameworks/av/media/libstagefright/rtsp/
AAMRAssembler.cpp 149 Vector<uint8_t> tableOfContents;
179 tableOfContents.push(toc);
190 for (size_t i = 0; i < tableOfContents.size(); ++i) {
191 uint8_t toc = tableOfContents[i];
ARTPWriter.cpp 760 Vector<uint8_t> tableOfContents;
768 tableOfContents.push(toc);
799 for (size_t i = 0; i < tableOfContents.size(); ++i) {
800 uint8_t toc = tableOfContents[i];
802 if (i + 1 < tableOfContents.size()) {
812 for (size_t i = 0; i < tableOfContents.size(); ++i) {
813 uint8_t toc = tableOfContents[i];
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 47 import com.android.dex.TableOfContents;
71 public IndexMap(Dex target, TableOfContents tableOfContents) {
73 this.stringIds = new int[tableOfContents.stringIds.size];
74 this.typeIds = new short[tableOfContents.typeIds.size];
75 this.protoIds = new short[tableOfContents.protoIds.size];
76 this.fieldIds = new short[tableOfContents.fieldIds.size];
77 this.methodIds = new short[tableOfContents.methodIds.size];
DexMerger.java 29 import com.android.dex.TableOfContents;
80 private final TableOfContents contentsOut;
104 TableOfContents aContents = dexA.getTableOfContents();
105 TableOfContents bContents = dexB.getTableOfContents();
236 TableOfContents.Section aSection = getSection(dexA.getTableOfContents());
237 TableOfContents.Section bSection = getSection(dexB.getTableOfContents());
325 TableOfContents.Section section = getSection(source.getTableOfContents());
340 abstract TableOfContents.Section getSection(TableOfContents tableOfContents);
    [all...]
  /prebuilts/runtime/common/dex/
dex-host-prebuilt.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 223 milliseconds