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

1 2 3 4 5 6 7 8 91011>>

  /art/test/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/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...]
  /art/test/005-args/src/
ArgsTest.java 34 System.out.println("VALUES: " + Long.toHexString(mLongArray[0]) + " "
35 + Long.toHexString(mLongArray[1]) + " " + Long.toHexString(j));
  /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/uicc/
IccFileNotFound.java 33 super("ICC EF Not Found 0x" + Integer.toHexString(ef));
IccIoResult.java 42 return "IccIoResponse sw1:0x" + Integer.toHexString(sw1) + " sw2:0x"
43 + 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));
Preconditions.java 77 + Integer.toHexString(requestedFlags) + ", but only 0x"
78 + Integer.toHexString(allowedFlags) + " are allowed");
  /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);
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
ByteArrays.java 34 public static String toHexString(byte[] bytes) {
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
ByteArrays.java 35 public static String toHexString(byte[] bytes) {
  /art/test/027-arithmetic/src/
Main.java 34 System.out.println("values are " + Integer.toHexString(i1)
35 + " and " + Integer.toHexString(i2));
37 System.out.println("First l is " + Long.toHexString(l));
48 System.out.println("Second l is " + Long.toHexString(l));
65 System.out.println("shiftTest2 l is " + Long.toHexString(result));
143 System.out.println("b=0x" + Integer.toHexString((int)b)
144 + ", s=0x" + Integer.toHexString((int)s)
145 + ", c=0x" + Integer.toHexString((int)c)
146 + ", i=0x" + Integer.toHexString(i));
  /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));
  /frameworks/testing/uiautomator/utils/SleepUtils/AlarmService/src/com/android/testing/alarmservice/
WakeUpController.java 36 Log.i(LOG_TAG, "Created instance: 0x" + Integer.toHexString(this.hashCode()));
51 Log.i(LOG_TAG, "Create wakelock: 0x" + Integer.toHexString(mWakeLock.hashCode()));
  /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);
  /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 194 out.annotate("file_size: 0x" + Integer.toHexString(dexFile.getFileSize()) + " (" + dexFile.getFileSize() +
198 out.annotate("header_size: 0x" + Integer.toHexString(HEADER_SIZE));
201 out.annotate("endian_tag: 0x" + Integer.toHexString(LITTLE_ENDIAN));
210 out.annotate("map_off: 0x" + Integer.toHexString(dexFile.MapItem.getOffset()));
216 out.annotate("string_ids_off: 0x" + Integer.toHexString(dexFile.StringIdsSection.getOffset()));
222 out.annotate("type_ids_off: 0x" + Integer.toHexString(dexFile.TypeIdsSection.getOffset()));
228 out.annotate("proto_ids_off: 0x" + Integer.toHexString(dexFile.ProtoIdsSection.getOffset()));
234 out.annotate("field_ids_off: 0x" + Integer.toHexString(dexFile.FieldIdsSection.getOffset()));
240 out.annotate("method_ids_off: 0x" + Integer.toHexString(dexFile.MethodIdsSection.getOffset()));
246 out.annotate("class_defs_off: 0x" + Integer.toHexString(dexFile.ClassDefsSection.getOffset()))
    [all...]

Completed in 2525 milliseconds

1 2 3 4 5 6 7 8 91011>>