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

1 2 3 4 5 6 7 8

  /frameworks/support/v4/java/android/support/v4/util/
DebugUtils.java 41 out.append(Integer.toHexString(System.identityHashCode(cls)));
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
ByteArrays.java 35 public static String toHexString(byte[] bytes) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Hex.java 16 public static String toHexString(
19 return toHexString(data, 0, data.length);
22 public static String toHexString(
  /external/guava/guava-tests/benchmark/com/google/common/collect/
InternersBenchmark.java 30 interner.intern(Double.toHexString(Math.random()));
38 interner.intern(Double.toHexString(Math.random()));
46 Double.toHexString(Math.random()).intern();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ProfileLevelIndicationDescriptor.java 43 sb.append("{profileLevelIndicationIndex=").append(Integer.toHexString(profileLevelIndicationIndex));
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
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/nist-sip/java/gov/nist/javax/sip/clientauthutils/
MessageDigestAlgorithm.java 183 return toHexString(digest.digest(data.getBytes()));
216 private static String toHexString(byte b[]) {
  /frameworks/base/core/java/android/content/res/
ObbInfo.java 65 sb.append(Integer.toHexString(System.identityHashCode(this)));
  /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));
  /frameworks/base/services/core/java/com/android/server/am/
ConnectionRecord.java 44 + " flags=0x" + Integer.toHexString(flags));
64 sb.append(Integer.toHexString(System.identityHashCode(this)));
115 sb.append(Integer.toHexString(System.identityHashCode(conn.asBinder())));
BroadcastFilter.java 66 sb.append(Integer.toHexString(System.identityHashCode(this)));
IntentBindRecord.java 68 pw.print(Integer.toHexString(System.identityHashCode(a)));
96 sb.append(Integer.toHexString(System.identityHashCode(this)));
UidRecord.java 52 sb.append(Integer.toHexString(System.identityHashCode(this)));
  /packages/apps/Bluetooth/src/com/android/bluetooth/
SignedLongLong.java 86 return toHexString();
93 public String toHexString(){
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/utils/
FingerprintUtils.java 56 sb.append(Integer.toHexString(num));
  /external/apache-http/src/org/apache/http/impl/conn/
Wire.java 73 buffer.append(Integer.toHexString(ch));
  /frameworks/base/core/java/android/content/pm/
PackageStats.java 84 sb.append(Integer.toHexString(System.identityHashCode(this)));
  /frameworks/base/core/java/android/view/
WindowId.java 183 sb.append(Integer.toHexString(System.identityHashCode(this)));
  /frameworks/base/services/core/java/com/android/server/wm/
WindowToken.java 103 sb.append(Integer.toHexString(System.identityHashCode(this)));
  /libcore/luni/src/main/java/java/lang/
Byte.java 235 public static String toHexString(byte b, boolean upperCase) {
  /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));
  /packages/apps/CertInstaller/src/com/android/certinstaller/
Util.java 62 return toHexString(algorithm.digest(), "");
70 private static String toHexString(byte[] bytes, String separator) {
73 hexString.append(Integer.toHexString(0xFF & b)).append(separator);
  /cts/suite/cts/deviceTests/videoperf/src/com/android/cts/videoperf/
CodecInfo.java 102 builder.append(Integer.toHexString(e));
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
UnicodeChart.java 88 canvas.drawText(Integer.toHexString(unichar),
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedOutputStream.java 102 this.out.writeLine(Integer.toHexString(this.cachePosition));
118 this.out.writeLine(Integer.toHexString(this.cachePosition + len));

Completed in 940 milliseconds

1 2 3 4 5 6 7 8