Searched defs:hexDigits (Results 1 - 10 of 10) sorted by relevance

/external/guava/guava/src/com/google/common/hash/
H A DHashCode.java114 sb.append(hexDigits[(b >> 4) & 0xf]).append(hexDigits[b & 0xf]);
119 private static final char[] hexDigits = "0123456789abcdef".toCharArray(); field in class:HashCode
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHexNumber.h46 const LChar* hexDigits = Internal::hexDigitsForMode(mode); local
47 destination.append(hexDigits[byte >> 4]);
48 destination.append(hexDigits[byte & 0xF]);
54 const LChar* hexDigits = Internal::hexDigitsForMode(mode); local
56 destination[index++] = hexDigits[byte >> 4];
57 destination[index++] = hexDigits[byte & 0xF];
63 const LChar* hexDigits = Internal::hexDigitsForMode(mode); local
64 *destination++ = hexDigits[byte >> 4];
65 *destination++ = hexDigits[byte & 0xF];
71 const LChar* hexDigits local
87 const LChar* hexDigits = Internal::hexDigitsForMode(mode); local
[all...]
/external/javassist/src/main/javassist/util/proxy/
H A DProxyFactory.java435 private static char[] hexDigits = field in class:ProxyFactory
454 sbuf.append(hexDigits[lo]);
455 sbuf.append(hexDigits[hi]);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dyjp-controller-api-redist.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/yourkit/ com/yourkit/api/ com/yourkit/runtime/ com/ ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...

Completed in 143 milliseconds