Searched refs:DIGITS (Results 1 - 25 of 36) sorted by relevance

12

/external/conscrypt/platform/src/main/java/org/conscrypt/
H A DHex.java28 private final static char[] DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' }; field in class:Hex
34 buf[c++] = DIGITS[(b >> 4) & 0xf];
35 buf[c++] = DIGITS[b & 0xf];
46 buf[--cursor] = DIGITS[i & 0xf];
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DJsEscapeFunction.java31 private static final char[] DIGITS = "0123456789ABCDEF".toCharArray(); field in class:JsEscapeFunction
70 return "\\x" + DIGITS[(c >> 4) & 0xF] + DIGITS[c & 0xF];
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DHex.java29 private static final char[] DIGITS = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; field in class:Hex
44 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4];
45 out[j++] = DIGITS[0x0F & data[i]];
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
H A DTestUtil.java63 static final char DIGITS[] = field in class:TestUtil
120 result.append(DIGITS[0xF & (c >> 28)]);
121 result.append(DIGITS[0xF & (c >> 24)]);
122 result.append(DIGITS[0xF & (c >> 20)]);
123 result.append(DIGITS[0xF & (c >> 16)]);
127 result.append(DIGITS[0xF & (c >> 12)]);
128 result.append(DIGITS[0xF & (c >> 8)]);
129 result.append(DIGITS[0xF & (c >> 4)]);
130 result.append(DIGITS[0xF & c]);
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestUtil.java62 static final char DIGITS[] = field in class:TestUtil
119 result.append(DIGITS[0xF & (c >> 28)]);
120 result.append(DIGITS[0xF & (c >> 24)]);
121 result.append(DIGITS[0xF & (c >> 20)]);
122 result.append(DIGITS[0xF & (c >> 16)]);
126 result.append(DIGITS[0xF & (c >> 12)]);
127 result.append(DIGITS[0xF & (c >> 8)]);
128 result.append(DIGITS[0xF & (c >> 4)]);
129 result.append(DIGITS[0xF & c]);
/external/icu/icu4c/source/common/
H A Dutil.cpp27 static const UChar DIGITS[] = { variable
57 result.append(DIGITS[0]);
61 result.append(DIGITS[digit]);
86 result.append(DIGITS[0xF&(c>>28)]);
87 result.append(DIGITS[0xF&(c>>24)]);
88 result.append(DIGITS[0xF&(c>>20)]);
89 result.append(DIGITS[0xF&(c>>16)]);
93 result.append(DIGITS[0xF&(c>>12)]);
94 result.append(DIGITS[0xF&(c>>8)]);
95 result.append(DIGITS[
[all...]
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java41 private static final char[] DIGITS = { field in class:Hex
114 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4 ];
115 out[j++] = DIGITS[ 0x0F & data[i] ];
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A DPython.g479 : '.' DIGITS (Exponent)?
480 | DIGITS ('.' (DIGITS (Exponent)?)? | Exponent)
489 : ('e' | 'E') ( '+' | '-' )? DIGITS
496 '0' DIGITS*
497 | '1'..'9' DIGITS*
506 DIGITS : ( '0' .. '9' )+ ;
/external/protobuf/js/binary/
H A Dutils.js435 jspb.utils.DIGITS = [
490 var table = jspb.utils.DIGITS;
607 muladd(10, jspb.utils.DIGITS.indexOf(dec[i]));
632 temp[i * 2 + 2] = jspb.utils.DIGITS[c >> 4];
633 temp[i * 2 + 3] = jspb.utils.DIGITS[c & 0xF];
654 var hi = jspb.utils.DIGITS.indexOf(hex[i * 2 + 2]);
655 var lo = jspb.utils.DIGITS.indexOf(hex[i * 2 + 3]);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUtility.java1358 static final char DIGITS[] = { field in class:Utility
1385 result.append(DIGITS[digit]);
1494 result.append(DIGITS[0xF&(c>>28)]);
1495 result.append(DIGITS[0xF&(c>>24)]);
1496 result.append(DIGITS[0xF&(c>>20)]);
1497 result.append(DIGITS[0xF&(c>>16)]);
1501 result.append(DIGITS[0xF&(c>>12)]);
1502 result.append(DIGITS[0xF&(c>>8)]);
1503 result.append(DIGITS[0xF&(c>>4)]);
1504 result.append(DIGITS[
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUtility.java1354 static final char DIGITS[] = { field in class:Utility
1381 result.append(DIGITS[digit]);
1490 result.append(DIGITS[0xF&(c>>28)]);
1491 result.append(DIGITS[0xF&(c>>24)]);
1492 result.append(DIGITS[0xF&(c>>20)]);
1493 result.append(DIGITS[0xF&(c>>16)]);
1497 result.append(DIGITS[0xF&(c>>12)]);
1498 result.append(DIGITS[0xF&(c>>8)]);
1499 result.append(DIGITS[0xF&(c>>4)]);
1500 result.append(DIGITS[
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/delegation/
H A Dimport.rb320 INTEGER: ('+'|'-')? DIGITS;
321 FLOAT: INTEGER '.' DIGITS (('e'|'E') INTEGER)?;
322 fragment DIGITS: ('0'..'9')+;
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp-lex.l89 DIGITS [0-9][0-9]*
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
H A DPhoneNumberUtil.java239 private static final String DIGITS = "\\p{Nd}"; field in class:PhoneNumberUtil
248 private static final Pattern CAPTURING_DIGIT_PATTERN = Pattern.compile("(" + DIGITS + ")");
256 private static final String VALID_START_CHAR = "[" + PLUS_CHARS + DIGITS + "]";
294 DIGITS + "{" + MIN_LENGTH_FOR_NSN + "}" + "|"
295 + "[" + PLUS_CHARS + "]*+(?:[" + VALID_PUNCTUATION + STAR_SIGN + "]*" + DIGITS + "){3,}["
296 + VALID_PUNCTUATION + STAR_SIGN + VALID_ALPHA + DIGITS + "]*";
306 private static final String CAPTURING_EXTN_DIGITS = "(" + DIGITS + "{1,7})";
343 + "[- ]+(" + DIGITS + "{1,5})#");
/external/dtc/
H A Dchecks.c240 #define DIGITS "0123456789" macro
241 #define PROPNODECHARS LOWERCASE UPPERCASE DIGITS ",._+*#?-"
242 #define PROPNODECHARSSTRICT LOWERCASE UPPERCASE DIGITS ",-"
/external/fmtlib/fmt/
H A Dformat.h913 static const char DIGITS[];
997 *--buffer = Data::DIGITS[index + 1];
999 *--buffer = Data::DIGITS[index];
1007 *--buffer = Data::DIGITS[index + 1];
1009 *--buffer = Data::DIGITS[index];
3325 *--buffer_end = internal::Data::DIGITS[index + 1];
3326 *--buffer_end = internal::Data::DIGITS[index];
3333 *--buffer_end = internal::Data::DIGITS[index + 1];
3334 *--buffer_end = internal::Data::DIGITS[index];
3401 *buffer++ = internal::Data::DIGITS[inde
[all...]
H A Dformat.cc263 const char internal::BasicData<T>::DIGITS[] = member in class:fmt::internal::BasicData
/external/okhttp/okio/okio/src/main/java/okio/
H A DBuffer.java48 private static final byte[] DIGITS = field in class:Buffer
1075 data[--pos] = DIGITS[digit];
1098 data[pos] = DIGITS[(int) (v & 0xF)];
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DNumberFormatTest.java1468 int DIGITS[] = {
1486 if (df.getMinimumIntegerDigits() != DIGITS[4 * i]
1487 || df.getMaximumIntegerDigits() != DIGITS[4 * i + 1]
1488 || df.getMinimumFractionDigits() != DIGITS[4 * i + 2]
1489 || df.getMaximumFractionDigits() != DIGITS[4 * i + 3]) {
1495 + DIGITS[4 * i] + "/"
1496 + DIGITS[4 * i + 1] + ";"
1497 + DIGITS[4 * i + 2] + "/"
1498 + DIGITS[4 * i + 3]);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatTest.java1467 int DIGITS[] = {
1485 if (df.getMinimumIntegerDigits() != DIGITS[4 * i]
1486 || df.getMaximumIntegerDigits() != DIGITS[4 * i + 1]
1487 || df.getMinimumFractionDigits() != DIGITS[4 * i + 2]
1488 || df.getMaximumFractionDigits() != DIGITS[4 * i + 3]) {
1494 + DIGITS[4 * i] + "/"
1495 + DIGITS[4 * i + 1] + ";"
1496 + DIGITS[4 * i + 2] + "/"
1497 + DIGITS[4 * i + 3]);
/external/icu/icu4c/source/test/intltest/
H A Dnumfmtst.cpp1734 int32_t DIGITS[] = { local
1758 if (df.getMinimumIntegerDigits() != DIGITS[4*i] ||
1759 df.getMaximumIntegerDigits() != DIGITS[4*i+1] ||
1760 df.getMinimumFractionDigits() != DIGITS[4*i+2] ||
1761 df.getMaximumFractionDigits() != DIGITS[4*i+3]) {
1768 DIGITS[4*i] + "/" +
1769 DIGITS[4*i+1] + ";" +
1770 DIGITS[4*i+2] + "/" +
1771 DIGITS[4*i+3]); local
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/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/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlog4j-1.3alpha-8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...

Completed in 872 milliseconds

12