Searched defs:toHexString (Results 1 - 13 of 13) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DHex.java16 public static String toHexString( method in class:Hex
19 return toHexString(data, 0, data.length);
22 public static String toHexString( method in class:Hex
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
H A DHexDump.java36 result.append(toHexString(offset));
57 result.append(toHexString(i));
94 public static String toHexString(byte b) method in class:HexDump
96 return toHexString(toByteArray(b));
99 public static String toHexString(byte[] array) method in class:HexDump
101 return toHexString(array, 0, array.length);
104 public static String toHexString(byte[] array, int offset, int length) method in class:HexDump
119 public static String toHexString(int i) method in class:HexDump
121 return toHexString(toByteArray(i));
/external/nist-sip/java/gov/nist/javax/sip/
H A DUtils.java73 signature = toHexString(Integer.toString(Math.abs( rand.nextInt() % 1000 )).getBytes());
89 public static String toHexString(byte b[]) { method in class:Utils
141 String cidString = Utils.toHexString(cid);
158 return Integer.toHexString(rand.nextInt());
177 return SIPConstants.BRANCH_MAGIC_COOKIE + Utils.toHexString(bid) + this.signature;
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
H A DMessageDigestAlgorithm.java183 return toHexString(digest.digest(data.getBytes()));
216 private static String toHexString(byte b[]) { method in class:MessageDigestAlgorithm
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DIsValidUtf8TestUtil.java400 fail("Failure: (" + Long.toHexString(byteChar) + ") " +
401 toHexString(bytes) + " => " + toHexString(after, len));
404 private static String toHexString(byte[] b) { method in class:IsValidUtf8TestUtil
405 return toHexString(b, b.length);
408 private static String toHexString(byte[] b, int len) { method in class:IsValidUtf8TestUtil
/external/jetty/src/java/org/eclipse/jetty/util/
H A DTypeUtil.java427 public static String toHexString(byte b) method in class:TypeUtil
429 return toHexString(new byte[]{b}, 0, 1);
433 public static String toHexString(byte[] b) method in class:TypeUtil
435 return toHexString(b, 0, b.length);
439 public static String toHexString(byte[] b,int offset,int length) method in class:TypeUtil
/external/icu/icu4c/source/test/intltest/
H A Dusettest.cpp2112 static UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
2135 buf += toHexString((c & 0xF0000000) >> 28);
2136 buf += toHexString((c & 0x0F000000) >> 24);
2137 buf += toHexString((c & 0x00F00000) >> 20);
2138 buf += toHexString((c & 0x000F0000) >> 16);
2140 buf += toHexString((c & 0xF000) >> 12);
2141 buf += toHexString((c & 0x0F00) >> 8);
2142 buf += toHexString((c & 0x00F0) >> 4);
2143 buf += toHexString(c & 0x000F);
H A Ddtfmttst.cpp410 UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
422 buf += toHexString((c & 0xF000) >> 12);
423 buf += toHexString((c & 0x0F00) >> 8);
424 buf += toHexString((c & 0x00F0) >> 4);
425 buf += toHexString(c & 0x000F);
H A Dnumfmtst.cpp687 static UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
699 buf += toHexString((c & 0xF000) >> 12);
700 buf += toHexString((c & 0x0F00) >> 8);
701 buf += toHexString((c & 0x00F0) >> 4);
702 buf += toHexString(c & 0x000F);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jetty/lib/
H A Djetty-util-6.1.26.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/mortbay/util/ org/mortbay/util/ajax/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 512 milliseconds