HomeSort by relevance Sort by last modified time
    Searched refs:Hex (Results 51 - 75 of 280) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
FieldIdsSection.java 22 import com.android.dexgen.util.Hex;
84 out.annotate(4, "field_ids_size: " + Hex.u4(sz));
85 out.annotate(4, "field_ids_off: " + Hex.u4(offset));
MethodAnnotationStruct.java 22 import com.android.dexgen.util.Hex;
91 out.annotate(4, " method_idx: " + Hex.u4(methodIdx));
93 Hex.u4(annotationsOff));
MethodIdsSection.java 22 import com.android.dexgen.util.Hex;
84 out.annotate(4, "method_ids_size: " + Hex.u4(sz));
85 out.annotate(4, "method_ids_off: " + Hex.u4(offset));
ProtoIdsSection.java 22 import com.android.dexgen.util.Hex;
76 out.annotate(4, "proto_ids_size: " + Hex.u4(sz));
77 out.annotate(4, "proto_ids_off: " + Hex.u4(offset));
TypeListItem.java 24 import com.android.dexgen.util.Hex;
98 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz));
103 " " + Hex.u2(idx) + " // " + one.toHuman());
  /dalvik/dexgen/src/com/android/dexgen/util/
HexParser.java 31 * Parses the given text as hex, returning a {@code byte[]}
33 * start with a hex offset followed by a colon (which is verified
35 * hex digits freely interspersed with whitespace. If a pound sign
106 "offset " + Hex.u4(outAt));
128 Hex.u4(outAt));
133 "offset " + Hex.u4(outAt));
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 49 import com.android.dx.util.Hex;
136 "constant_pool_count: " + Hex.u2(offsets.length));
170 ? Hex.u2(i) + ": utf8{\"" + cst.toHuman() + "\"}"
171 : Hex.u2(i) + ": " + cst.toString();
229 throw new ParseException("unknown tag byte: " + Hex.u1(tag));
233 ex.addContext("...while preparsing cst " + Hex.u2(i) + " at offset " + Hex.u4(at));
339 throw new ParseException("unknown tag byte: " + Hex.u1(tag));
343 ex.addContext("...while parsing cst " + Hex.u2(idx) +
344 " at offset " + Hex.u4(at))
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeFactory.java 26 import com.android.dx.util.Hex;
93 "length: " + Hex.u4(length));
101 "attribute at offset " + Hex.u4(offset));
  /dalvik/dx/src/com/android/dx/dex/code/
InsnFormat.java 28 import com.android.dx.util.Hex;
287 case 4: sb.append(Hex.uNibble((int) bits)); break;
288 case 8: sb.append(Hex.u1((int) bits)); break;
289 case 16: sb.append(Hex.u2((int) bits)); break;
290 case 32: sb.append(Hex.u4((int) bits)); break;
291 case 64: sb.append(Hex.u8(bits)); break;
311 return (address == (char) address) ? Hex.u2(address) : Hex.u4(address);
324 return (offset == (short) offset) ? Hex.s2(offset) : Hex.s4(offset)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
FieldAnnotationStruct.java 22 import com.android.dx.util.Hex;
91 out.annotate(4, " field_idx: " + Hex.u4(fieldIdx));
93 Hex.u4(annotationsOff));
FieldIdsSection.java 22 import com.android.dx.util.Hex;
84 out.annotate(4, "field_ids_size: " + Hex.u4(sz));
85 out.annotate(4, "field_ids_off: " + Hex.u4(offset));
MethodAnnotationStruct.java 22 import com.android.dx.util.Hex;
91 out.annotate(4, " method_idx: " + Hex.u4(methodIdx));
93 Hex.u4(annotationsOff));
MethodIdsSection.java 22 import com.android.dx.util.Hex;
84 out.annotate(4, "method_ids_size: " + Hex.u4(sz));
85 out.annotate(4, "method_ids_off: " + Hex.u4(offset));
ProtoIdsSection.java 22 import com.android.dx.util.Hex;
75 out.annotate(4, "proto_ids_size: " + Hex.u4(sz));
76 out.annotate(4, "proto_ids_off: " + Hex.u4(offset));
TypeListItem.java 23 import com.android.dx.util.Hex;
97 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz));
102 " " + Hex.u2(idx) + " // " + one.toHuman());
  /dalvik/dx/src/com/android/dx/util/
HexParser.java 31 * Parses the given text as hex, returning a {@code byte[]}
33 * start with a hex offset followed by a colon (which is verified
35 * hex digits freely interspersed with whitespace. If a pound sign
106 "offset " + Hex.u4(outAt));
128 Hex.u4(outAt));
133 "offset " + Hex.u4(outAt));
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
InsnFormat.java 28 import com.android.dx.util.Hex;
288 case 4: sb.append(Hex.uNibble((int) bits)); break;
289 case 8: sb.append(Hex.u1((int) bits)); break;
290 case 16: sb.append(Hex.u2((int) bits)); break;
291 case 32: sb.append(Hex.u4((int) bits)); break;
292 case 64: sb.append(Hex.u8(bits)); break;
312 return (address == (char) address) ? Hex.u2(address) : Hex.u4(address);
325 return (offset == (short) offset) ? Hex.s2(offset) : Hex.s4(offset)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
FieldAnnotationStruct.java 22 import com.android.dx.util.Hex;
91 out.annotate(4, " field_idx: " + Hex.u4(fieldIdx));
93 Hex.u4(annotationsOff));
FieldIdsSection.java 22 import com.android.dx.util.Hex;
84 out.annotate(4, "field_ids_size: " + Hex.u4(sz));
85 out.annotate(4, "field_ids_off: " + Hex.u4(offset));
MethodAnnotationStruct.java 22 import com.android.dx.util.Hex;
91 out.annotate(4, " method_idx: " + Hex.u4(methodIdx));
93 Hex.u4(annotationsOff));
MethodIdsSection.java 22 import com.android.dx.util.Hex;
84 out.annotate(4, "method_ids_size: " + Hex.u4(sz));
85 out.annotate(4, "method_ids_off: " + Hex.u4(offset));
ProtoIdsSection.java 22 import com.android.dx.util.Hex;
76 out.annotate(4, "proto_ids_size: " + Hex.u4(sz));
77 out.annotate(4, "proto_ids_off: " + Hex.u4(offset));
TypeListItem.java 24 import com.android.dx.util.Hex;
98 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz));
103 " " + Hex.u2(idx) + " // " + one.toHuman());
  /external/dexmaker/src/dx/java/com/android/dx/util/
HexParser.java 31 * Parses the given text as hex, returning a {@code byte[]}
33 * start with a hex offset followed by a colon (which is verified
35 * hex digits freely interspersed with whitespace. If a pound sign
106 "offset " + Hex.u4(outAt));
128 Hex.u4(outAt));
133 "offset " + Hex.u4(outAt));
  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 34 import com.android.dx.util.Hex;
130 + Hex.u2(rmeth.getFirstLabel()) + ";");
141 System.out.println("\tn" + Hex.u2(label) + " -> returns;");
143 System.out.println("\tn" + Hex.u2(label) + " -> n"
144 + Hex.u2(successors.get(0)) + ";");
146 System.out.print("\tn" + Hex.u2(label) + " -> {");
151 System.out.print(" n" + Hex.u2(successor) + " ");
157 System.out.println("\tn" + Hex.u2(label) + " -> n"
158 + Hex.u2(bb.getPrimarySuccessor())

Completed in 262 milliseconds

1 23 4 5 6 7 8 91011>>