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

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DHex.java13 public static String toHexString( method in class:Hex
16 return toHexString(data, 0, data.length);
19 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/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorTraceEvents.cpp54 String toHexString(const void* p) function in namespace:blink::__anon11119
73 value->setString("frame", toHexString(&frame));
122 value->setString("frame", toHexString(renderer->frame()));
133 value->setString("frame", toHexString(renderer->frame()));
145 value->setString("frame", toHexString(frame));
157 value->setString("frame", toHexString(frame));
169 value->setString("frame", toHexString(frame));
199 value->setString("frame", toHexString(frame));
225 value->setString("frame", toHexString(document->frame()));
234 value->setString("frame", toHexString(documen
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dusettest.cpp2114 static UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
2137 buf += toHexString((c & 0xF0000000) >> 28);
2138 buf += toHexString((c & 0x0F000000) >> 24);
2139 buf += toHexString((c & 0x00F00000) >> 20);
2140 buf += toHexString((c & 0x000F0000) >> 16);
2142 buf += toHexString((c & 0xF000) >> 12);
2143 buf += toHexString((c & 0x0F00) >> 8);
2144 buf += toHexString((c & 0x00F0) >> 4);
2145 buf += toHexString(c & 0x000F);
H A Ddtfmttst.cpp398 UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
410 buf += toHexString((c & 0xF000) >> 12);
411 buf += toHexString((c & 0x0F00) >> 8);
412 buf += toHexString((c & 0x00F0) >> 4);
413 buf += toHexString(c & 0x000F);
H A Dnumfmtst.cpp682 static UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
694 buf += toHexString((c & 0xF000) >> 12);
695 buf += toHexString((c & 0x0F00) >> 8);
696 buf += toHexString((c & 0x00F0) >> 4);
697 buf += toHexString(c & 0x000F);
/external/icu/icu4c/source/test/intltest/
H A Dusettest.cpp2114 static UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
2137 buf += toHexString((c & 0xF0000000) >> 28);
2138 buf += toHexString((c & 0x0F000000) >> 24);
2139 buf += toHexString((c & 0x00F00000) >> 20);
2140 buf += toHexString((c & 0x000F0000) >> 16);
2142 buf += toHexString((c & 0xF000) >> 12);
2143 buf += toHexString((c & 0x0F00) >> 8);
2144 buf += toHexString((c & 0x00F0) >> 4);
2145 buf += toHexString(c & 0x000F);
H A Ddtfmttst.cpp400 UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
412 buf += toHexString((c & 0xF000) >> 12);
413 buf += toHexString((c & 0x0F00) >> 8);
414 buf += toHexString((c & 0x00F0) >> 4);
415 buf += toHexString(c & 0x000F);
H A Dnumfmtst.cpp686 static UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
698 buf += toHexString((c & 0xF000) >> 12);
699 buf += toHexString((c & 0x0F00) >> 8);
700 buf += toHexString((c & 0x00F0) >> 4);
701 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/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/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 548 milliseconds