Searched refs:off (Results 1 - 14 of 14) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
H A DByteArray.java122 * @param off {@code >= 0, < size();} offset to fetch
125 public int getByte(int off) { argument
126 checkOffsets(off, off + 1);
127 return getByte0(off);
133 * @param off {@code >= 0, < (size() - 1);} offset to fetch
136 public int getShort(int off) { argument
137 checkOffsets(off, off + 2);
138 return (getByte0(off) <<
147 getInt(int off) argument
161 getLong(int off) argument
181 getUnsignedByte(int off) argument
192 getUnsignedShort(int off) argument
235 getByte0(int off) argument
246 getUnsignedByte0(int off) argument
[all...]
H A DIndentingWriter.java139 public void write(char[] cbuf, int off, int len) throws IOException { argument
142 write(cbuf[off]);
143 off++;
151 public void write(String str, int off, int len) throws IOException { argument
154 write(str.charAt(off));
155 off++;
/dalvik/dx/src/com/android/dx/util/
H A DByteArray.java119 * @param off {@code >= 0, < size();} offset to fetch
122 public int getByte(int off) { argument
123 checkOffsets(off, off + 1);
124 return getByte0(off);
130 * @param off {@code >= 0, < (size() - 1);} offset to fetch
133 public int getShort(int off) { argument
134 checkOffsets(off, off + 2);
135 return (getByte0(off) <<
144 getInt(int off) argument
158 getLong(int off) argument
178 getUnsignedByte(int off) argument
189 getUnsignedShort(int off) argument
232 getByte0(int off) argument
243 getUnsignedByte0(int off) argument
[all...]
H A DIndentingWriter.java139 public void write(char[] cbuf, int off, int len) throws IOException { argument
142 write(cbuf[off]);
143 off++;
151 public void write(String str, int off, int len) throws IOException { argument
154 write(str.charAt(off));
155 off++;
/dalvik/dx/src/com/android/dex/
H A DTableOfContents.java73 readMap(dex.open(mapList.off));
103 mapList.off = headerIn.readInt();
104 if (mapList.off == 0) {
108 stringIds.off = headerIn.readInt();
110 typeIds.off = headerIn.readInt();
112 protoIds.off = headerIn.readInt();
114 fieldIds.off = headerIn.readInt();
116 methodIds.off = headerIn.readInt();
118 classDefs.off = headerIn.readInt();
134 || (section.off !
222 public int off = -1; field in class:TableOfContents.Section
[all...]
H A DDex.java319 * {@code open(tableOfContents.typeIds.off + (index * SizeOf.TYPE_ID_ITEM)).readInt();}
323 int position = tableOfContents.typeIds.off + (SizeOf.TYPE_ID_ITEM * typeIndex);
717 return open(tableOfContents.stringIds.off + (index * SizeOf.STRING_ID_ITEM))
754 return open(tableOfContents.protoIds.off + (SizeOf.PROTO_ID_ITEM * index))
767 return open(tableOfContents.fieldIds.off + (SizeOf.MEMBER_ID_ITEM * index))
780 return open(tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * index))
790 private final Dex.Section in = open(tableOfContents.classDefs.off);
/dalvik/dx/src/com/android/dx/io/
H A DDexIndexPrinter.java42 if (section.off != -1) {
44 + " off=" + Integer.toHexString(section.off)
92 if (tableOfContents.typeLists.off == -1) {
96 Dex.Section in = dex.open(tableOfContents.typeLists.off);
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java116 contentsOut.mapList.off = dexOut.getNextSectionStart();
120 contentsOut.typeLists.off = dexOut.getNextSectionStart();
123 contentsOut.annotationSetRefLists.off = dexOut.getNextSectionStart();
127 contentsOut.annotationSets.off = dexOut.getNextSectionStart();
130 contentsOut.classDatas.off = dexOut.getNextSectionStart();
133 contentsOut.codes.off = dexOut.getNextSectionStart();
136 contentsOut.stringDatas.off = dexOut.getNextSectionStart();
139 contentsOut.debugInfos.off = dexOut.getNextSectionStart();
142 contentsOut.annotations.off = dexOut.getNextSectionStart();
145 contentsOut.encodedArrays.off
[all...]
/dalvik/dx/junit-tests/com/android/dx/merge/
H A DDexMergerTest.java61 assertEquals(0, merged.getTableOfContents().fieldIds.off);
/dalvik/dx/src/com/android/dx/cf/cst/
H A DConstantPoolParser.java166 int off = offsets[j];
167 if (off != 0) {
168 nextOffset = off;
/dalvik/dx/src/com/android/dx/cf/code/
H A DSimulator.java116 for (int off = bb.getStart(); off < end; /*off*/) {
117 int length = code.parseInstruction(off, visitor);
118 visitor.setPreviousOffset(off);
119 off += length;
/dalvik/dx/etc/
H A Ddx.bat1 @echo off
H A DmainDexClasses.bat1 @echo off
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 194 milliseconds