HomeSort by relevance Sort by last modified time
    Searched refs:Hex (Results 126 - 150 of 263) sorted by null

1 2 3 4 56 7 8 91011

  /dalvik/dx/src/com/android/dx/dex/file/
MapItem.java 20 import com.android.dx.util.Hex;
222 out.annotate(2, " type: " + Hex.u2(value) + " // " +
225 out.annotate(4, " size: " + Hex.u4(itemCount));
226 out.annotate(4, " offset: " + Hex.u4(offset));
ProtoIdItem.java 25 import com.android.dx.util.Hex;
148 out.annotate(4, " shorty_idx: " + Hex.u4(shortyIdx) +
150 out.annotate(4, " return_type_idx: " + Hex.u4(returnIdx) +
152 out.annotate(4, " parameters_off: " + Hex.u4(paramsOff));
AnnotationsDirectoryItem.java 24 import com.android.dx.util.Hex;
292 out.annotate(4, " class_annotations_off: " + Hex.u4(classOff));
294 Hex.u4(fieldsSize));
296 Hex.u4(methodsSize));
298 Hex.u4(parametersSize));
ClassDefsSection.java 24 import com.android.dx.util.Hex;
95 out.annotate(4, "class_defs_size: " + Hex.u4(sz));
96 out.annotate(4, "class_defs_off: " + Hex.u4(offset));
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
SwitchData.java 23 import com.android.dx.util.Hex;
186 sb.append(Hex.u2(baseAddress));
194 sb.append(Hex.u4(absTarget));
196 sb.append(Hex.s4(relTarget));
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
EncodedMethod.java 25 import com.android.dx.util.Hex;
100 sb.append(Hex.u2(getAccessFlags()));
182 " method_idx: " + Hex.u4(methodIdx));
187 " code_off: " + Hex.u4(codeOff));
MapItem.java 20 import com.android.dx.util.Hex;
223 out.annotate(2, " type: " + Hex.u2(value) + " // " +
226 out.annotate(4, " size: " + Hex.u4(itemCount));
227 out.annotate(4, " offset: " + Hex.u4(offset));
ProtoIdItem.java 25 import com.android.dx.util.Hex;
148 out.annotate(4, " shorty_idx: " + Hex.u4(shortyIdx) +
150 out.annotate(4, " return_type_idx: " + Hex.u4(returnIdx) +
152 out.annotate(4, " parameters_off: " + Hex.u4(paramsOff));
AnnotationsDirectoryItem.java 24 import com.android.dx.util.Hex;
293 out.annotate(4, " class_annotations_off: " + Hex.u4(classOff));
295 Hex.u4(fieldsSize));
297 Hex.u4(methodsSize));
299 Hex.u4(parametersSize));
ClassDefsSection.java 24 import com.android.dx.util.Hex;
96 out.annotate(4, "class_defs_size: " + Hex.u4(sz));
97 out.annotate(4, "class_defs_off: " + Hex.u4(offset));
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
Hex.java 28 public class Hex {
38 // two characters form the hex value.
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegOps.java 19 import com.android.dexgen.util.Hex;
372 return "unknown-" + Hex.u1(opcode);
  /dalvik/dx/src/com/android/dx/rop/code/
RegOps.java 19 import com.android.dx.util.Hex;
372 return "unknown-" + Hex.u1(opcode);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1OctetString.java 8 import org.bouncycastle.util.encoders.Hex;
144 return "#"+new String(Hex.encode(string));
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RegOps.java 19 import com.android.dx.util.Hex;
372 return "unknown-" + Hex.u1(opcode);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
CencSampleEncryptionInformationGroupEntry.java 19 import com.coremedia.iso.Hex;
90 ", kid=" + Hex.encodeHex(kid) +
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
ProtectionSpecificHeader.java 4 import com.coremedia.iso.Hex;
75 sb.append(Hex.encodeHex(bytes));
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameNormalizer.java 18 import com.android.providers.contacts.util.Hex;
79 return Hex.encodeHex(key.toByteArray(), true);
  /external/chromium_org/third_party/re2/re2/
re2.h 167 // PARSING HEX/OCTAL/C-RADIX NUMBERS
171 // instead wrap the pointer with a call to one of the operators Hex(),
179 // RE2::Octal(&a), RE2::Hex(&b), RE2::CRadix(&c), RE2::CRadix(&d));
663 static inline Arg Hex(short* x);
664 static inline Arg Hex(unsigned short* x);
665 static inline Arg Hex(int* x);
666 static inline Arg Hex(unsigned int* x);
667 static inline Arg Hex(long* x);
668 static inline Arg Hex(unsigned long* x);
669 static inline Arg Hex(long long* x)
    [all...]
  /external/regex-re2/re2/
re2.h 167 // PARSING HEX/OCTAL/C-RADIX NUMBERS
171 // instead wrap the pointer with a call to one of the operators Hex(),
179 // RE2::Octal(&a), RE2::Hex(&b), RE2::CRadix(&c), RE2::CRadix(&d));
675 static inline Arg Hex(short* x);
676 static inline Arg Hex(unsigned short* x);
677 static inline Arg Hex(int* x);
678 static inline Arg Hex(unsigned int* x);
679 static inline Arg Hex(long* x);
680 static inline Arg Hex(unsigned long* x);
681 static inline Arg Hex(long long* x)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationsDirectoryItem.java 24 import com.android.dexgen.util.Hex;
293 out.annotate(4, " class_annotations_off: " + Hex.u4(classOff));
295 Hex.u4(fieldsSize));
297 Hex.u4(methodsSize));
299 Hex.u4(parametersSize));
ClassDefsSection.java 24 import com.android.dexgen.util.Hex;
96 out.annotate(4, "class_defs_size: " + Hex.u4(sz));
97 out.annotate(4, "class_defs_off: " + Hex.u4(offset));
  /dalvik/dx/src/com/android/dx/command/dump/
SsaDumper.java 32 import com.android.dx.util.Hex;
119 sb.append(Hex.u2(
130 .append(Hex.u2(block.getRopLabel())).append('\n');
137 sb.append(Hex.u2(ssaMeth.blockIndexToRopLabel(i)));
161 sb.append(Hex.u2(succLabelList.get(i)));
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstUtf8.java 20 import com.android.dexgen.util.Hex;
171 throw new IllegalArgumentException("bad utf-8 byte " + Hex.u1(value) +
172 " at offset " + Hex.u4(offset));
  /dalvik/dx/src/com/android/dx/rop/cst/
CstString.java 21 import com.android.dx.util.Hex;
171 throw new IllegalArgumentException("bad utf-8 byte " + Hex.u1(value) +
172 " at offset " + Hex.u4(offset));

Completed in 729 milliseconds

1 2 3 4 56 7 8 91011