HomeSort by relevance Sort by last modified time
    Searched refs:toHexString (Results 1 - 25 of 482) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/041-narrowing/src/
Main.java 10 + Long.toHexString(Double.doubleToRawLongBits(Double.POSITIVE_INFINITY)));
12 + Long.toHexString(Double.doubleToRawLongBits(Double.NEGATIVE_INFINITY)));
14 + Long.toHexString(Double.doubleToRawLongBits(Float.POSITIVE_INFINITY)));
16 + Long.toHexString(Double.doubleToRawLongBits(Float.NEGATIVE_INFINITY)));
18 + Long.toHexString(Double.doubleToRawLongBits(Double.NaN)));
20 + Long.toHexString(Double.doubleToRawLongBits(Float.NaN)));
24 + (Long.toHexString((byte)dbl2).equals("0") ? "00" : Long.toHexString((byte)dbl2)
27 + (Integer.toHexString((short)dbl2).equals("0") ? "0000" : Integer.toHexString(
    [all...]
  /dalvik/tests/005-args/src/
ArgsTest.java 34 System.out.println("VALUES: " + Long.toHexString(mLongArray[0]) + " "
35 + Long.toHexString(mLongArray[1]) + " " + Long.toHexString(j));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccFileNotFound.java 32 super("ICC EF Not Found 0x" + Integer.toHexString(ef));
IccIoResult.java 40 return "IccIoResponse sw1:0x" + Integer.toHexString(sw1) + " sw2:0x"
41 + Integer.toHexString(sw2);
  /libcore/luni/src/test/java/libcore/java/io/
DataOutputStreamTest.java 32 assertEquals("[01, 00]", toHexString(bytes.toByteArray()));
42 assertEquals("[ff, 00, 01, 81, 34]", toHexString(bytes.toByteArray()));
48 assertEquals("[30, 34, 31]", toHexString(bytes.toByteArray()));
55 assertEquals("[00, 30, 12, 34]", toHexString(bytes.toByteArray()));
61 assertEquals("[00, 30, 12, 34, 00, 31]", toHexString(bytes.toByteArray()));
66 assertEquals("[01, 23, 45, 67, 89, ab, cd, ef]", toHexString(bytes.toByteArray()));
71 assertEquals("[01, 23, 45, 67]", toHexString(bytes.toByteArray()));
76 assertEquals("[01, 23, 45, 67]", toHexString(bytes.toByteArray()));
81 assertEquals("[01, 23, 45, 67, 89, ab, cd, ef]", toHexString(bytes.toByteArray()));
87 assertEquals("[45, 67]", toHexString(bytes.toByteArray()))
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
HexDump.java 36 result.append(toHexString(offset));
57 result.append(toHexString(i));
94 public static String toHexString(byte b)
96 return toHexString(toByteArray(b));
99 public static String toHexString(byte[] array)
101 return toHexString(array, 0, array.length);
104 public static String toHexString(byte[] array, int offset, int length)
119 public static String toHexString(int i)
121 return toHexString(toByteArray(i));
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
JavaScriptTarget.java 40 String hex = Integer.toHexString(v|0x10000).substring(1,5);
58 writeHexWithPadding(buf, Integer.toHexString((int)(word & 0x00000000ffffffffL)));
60 writeHexWithPadding(buf, Integer.toHexString((int)(word >> 32)));
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
IndexedItem.java 79 return '[' + Integer.toHexString(index) + ']';
  /dalvik/dx/src/com/android/dx/dex/file/
IndexedItem.java 79 return '[' + Integer.toHexString(index) + ']';
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
IndexedItem.java 79 return '[' + Integer.toHexString(index) + ']';
  /frameworks/base/core/java/android/content/pm/
FeatureInfo.java 70 + Integer.toHexString(System.identityHashCode(this))
71 + " " + name + " fl=0x" + Integer.toHexString(flags) + "}";
74 + Integer.toHexString(System.identityHashCode(this))
76 + " fl=0x" + Integer.toHexString(flags) + "}";
  /libcore/luni/src/main/java/java/util/
IllegalFormatCodePointException.java 56 return Integer.toHexString(c);
  /dalvik/tests/027-arithmetic/src/
Main.java 20 System.out.println("values are " + Integer.toHexString(i1)
21 + " and " + Integer.toHexString(i2));
23 System.out.println("First l is " + Long.toHexString(l));
34 System.out.println("Second l is " + Long.toHexString(l));
51 System.out.println("shiftTest2 l is " + Long.toHexString(result));
129 System.out.println("b=0x" + Integer.toHexString((int)b)
130 + ", s=0x" + Integer.toHexString((int)s)
131 + ", c=0x" + Integer.toHexString((int)c)
132 + ", i=0x" + Integer.toHexString(i));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
KeyUsage.java 73 return "KeyUsage: 0x" + Integer.toHexString(data[0] & 0xff);
75 return "KeyUsage: 0x" + Integer.toHexString((data[1] & 0xff) << 8 | (data[0] & 0xff));
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Explicit.java 65 in.tagOffset + "]. Expected tag: " + Integer.toHexString(constrId) + ", " +
66 "but encountered tag " + Integer.toHexString(in.tag));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/misc/
NetscapeCertType.java 52 return "NetscapeCertType: 0x" + Integer.toHexString(data[0] & 0xff);
  /frameworks/base/opengl/java/android/opengl/
GLException.java 38 errorString = "Unknown error 0x" + Integer.toHexString(error);
  /frameworks/base/services/java/com/android/server/pm/
SharedUserSetting.java 40 return "SharedUserSetting{" + Integer.toHexString(System.identityHashCode(this)) + " "
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
Window.java 39 return Integer.toHexString(hashCode);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
HeaderItem.java 149 out.annotate("file_size: 0x" + Integer.toHexString(dexFile.getFileSize()) + " (" + dexFile.getFileSize() +
153 out.annotate("header_size: 0x" + Integer.toHexString(HEADER_SIZE));
156 out.annotate("endian_tag: 0x" + Integer.toHexString(LITTLE_ENDIAN));
165 out.annotate("map_off: 0x" + Integer.toHexString(dexFile.MapItem.getOffset()));
171 out.annotate("string_ids_off: 0x" + Integer.toHexString(dexFile.StringIdsSection.getOffset()));
177 out.annotate("type_ids_off: 0x" + Integer.toHexString(dexFile.TypeIdsSection.getOffset()));
183 out.annotate("proto_ids_off: 0x" + Integer.toHexString(dexFile.ProtoIdsSection.getOffset()));
189 out.annotate("field_ids_off: 0x" + Integer.toHexString(dexFile.FieldIdsSection.getOffset()));
195 out.annotate("method_ids_off: 0x" + Integer.toHexString(dexFile.MethodIdsSection.getOffset()));
201 out.annotate("class_defs_off: 0x" + Integer.toHexString(dexFile.ClassDefsSection.getOffset()))
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
Array.java 39 result.append(Byte.toHexString(data[i], false));
70 String offset = Integer.toHexString(i);
79 sb.append(Byte.toHexString(array[i], false));
  /external/nist-sip/java/gov/nist/javax/sip/
Utils.java 73 signature = toHexString(Integer.toString(Math.abs( rand.nextInt() % 1000 )).getBytes());
89 public static String toHexString(byte b[]) {
141 String cidString = Utils.toHexString(cid);
158 return Integer.toHexString(rand.nextInt());
177 return SIPConstants.BRANCH_MAGIC_COOKIE + Utils.toHexString(bid) + this.signature;
  /frameworks/base/core/tests/coretests/src/android/app/activity/
TestedScreen.java 41 + Integer.toHexString(System.identityHashCode(this)) + ": " + getIntent());
48 + Integer.toHexString(System.identityHashCode(this)) + ": " + getIntent());
54 + Integer.toHexString(System.identityHashCode(this)) + ": " + getIntent());
70 + Integer.toHexString(System.identityHashCode(this)) + ": " + getIntent());
87 + Integer.toHexString(System.identityHashCode(this)) + ": " + getIntent());
103 + Integer.toHexString(System.identityHashCode(this)) + ": " + getIntent());
120 + Integer.toHexString(System.identityHashCode(this)) + ": " + getIntent());
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
BitwiseStreamsTest.java 45 assertEquals(HexDump.toHexString(inBuf), HexDump.toHexString(inBufDup));
59 assertEquals(HexDump.toHexString(inBuf), HexDump.toHexString(inBufDup));
73 assertEquals(HexDump.toHexString(inBuf), HexDump.toHexString(inBufDup));
90 assertEquals(HexDump.toHexString(inBuf), HexDump.toHexString(inBufDup));
131 assertEquals(HexDump.toHexString(inBuf), HexDump.toHexString(inBufDup))
    [all...]
  /frameworks/base/core/java/android/content/res/
Resources.java 231 + Integer.toHexString(id));
263 throw new NotFoundException("Plural resource ID #0x" + Integer.toHexString(id)
319 + Integer.toHexString(id));
432 + Integer.toHexString(id));
452 + Integer.toHexString(id));
472 + Integer.toHexString(id));
492 + Integer.toHexString(id));
527 "Resource ID #0x" + Integer.toHexString(id) + " type #0x"
528 + Integer.toHexString(value.type) + " is not valid");
560 "Resource ID #0x" + Integer.toHexString(id) + " type #0x
    [all...]

Completed in 576 milliseconds

1 2 3 4 5 6 7 8 91011>>