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

12

/external/conscrypt/src/platform/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.java61 static final char DIGITS[] = field in class:TestUtil
118 result.append(DIGITS[0xF & (c >> 28)]);
119 result.append(DIGITS[0xF & (c >> 24)]);
120 result.append(DIGITS[0xF & (c >> 20)]);
121 result.append(DIGITS[0xF & (c >> 16)]);
125 result.append(DIGITS[0xF & (c >> 12)]);
126 result.append(DIGITS[0xF & (c >> 8)]);
127 result.append(DIGITS[0xF & (c >> 4)]);
128 result.append(DIGITS[0xF & c]);
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestUtil.java60 static final char DIGITS[] = field in class:TestUtil
117 result.append(DIGITS[0xF & (c >> 28)]);
118 result.append(DIGITS[0xF & (c >> 24)]);
119 result.append(DIGITS[0xF & (c >> 20)]);
120 result.append(DIGITS[0xF & (c >> 16)]);
124 result.append(DIGITS[0xF & (c >> 12)]);
125 result.append(DIGITS[0xF & (c >> 8)]);
126 result.append(DIGITS[0xF & (c >> 4)]);
127 result.append(DIGITS[0xF & c]);
/external/icu/icu4c/source/common/
H A Dutil.cpp25 static const UChar DIGITS[] = { variable
55 result.append(DIGITS[0]);
59 result.append(DIGITS[digit]);
84 result.append(DIGITS[0xF&(c>>28)]);
85 result.append(DIGITS[0xF&(c>>24)]);
86 result.append(DIGITS[0xF&(c>>20)]);
87 result.append(DIGITS[0xF&(c>>16)]);
91 result.append(DIGITS[0xF&(c>>12)]);
92 result.append(DIGITS[0xF&(c>>8)]);
93 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/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUtility.java1343 static final char DIGITS[] = { field in class:Utility
1370 result.append(DIGITS[digit]);
1479 result.append(DIGITS[0xF&(c>>28)]);
1480 result.append(DIGITS[0xF&(c>>24)]);
1481 result.append(DIGITS[0xF&(c>>20)]);
1482 result.append(DIGITS[0xF&(c>>16)]);
1486 result.append(DIGITS[0xF&(c>>12)]);
1487 result.append(DIGITS[0xF&(c>>8)]);
1488 result.append(DIGITS[0xF&(c>>4)]);
1489 result.append(DIGITS[
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUtility.java1339 static final char DIGITS[] = { field in class:Utility
1366 result.append(DIGITS[digit]);
1475 result.append(DIGITS[0xF&(c>>28)]);
1476 result.append(DIGITS[0xF&(c>>24)]);
1477 result.append(DIGITS[0xF&(c>>20)]);
1478 result.append(DIGITS[0xF&(c>>16)]);
1482 result.append(DIGITS[0xF&(c>>12)]);
1483 result.append(DIGITS[0xF&(c>>8)]);
1484 result.append(DIGITS[0xF&(c>>4)]);
1485 result.append(DIGITS[
[all...]
/external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
H A Dsecurity.py27 DIGITS = string.digits variable
60 DIGITS 10 3.3219 bits
/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.java221 private static final String DIGITS = "\\p{Nd}"; field in class:PhoneNumberUtil
229 private static final Pattern CAPTURING_DIGIT_PATTERN = Pattern.compile("(" + DIGITS + ")");
237 private static final String VALID_START_CHAR = "[" + PLUS_CHARS + DIGITS + "]";
275 DIGITS + "{" + MIN_LENGTH_FOR_NSN + "}" + "|" +
276 "[" + PLUS_CHARS + "]*+(?:[" + VALID_PUNCTUATION + STAR_SIGN + "]*" + DIGITS + "){3,}[" +
277 VALID_PUNCTUATION + STAR_SIGN + VALID_ALPHA + DIGITS + "]*";
287 private static final String CAPTURING_EXTN_DIGITS = "(" + DIGITS + "{1,7})";
324 "[- ]+(" + DIGITS + "{1,5})#");
/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.java1427 int DIGITS[] = {
1445 if (df.getMinimumIntegerDigits() != DIGITS[4 * i]
1446 || df.getMaximumIntegerDigits() != DIGITS[4 * i + 1]
1447 || df.getMinimumFractionDigits() != DIGITS[4 * i + 2]
1448 || df.getMaximumFractionDigits() != DIGITS[4 * i + 3]) {
1454 + DIGITS[4 * i] + "/"
1455 + DIGITS[4 * i + 1] + ";"
1456 + DIGITS[4 * i + 2] + "/"
1457 + DIGITS[4 * i + 3]);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatTest.java1423 int DIGITS[] = {
1441 if (df.getMinimumIntegerDigits() != DIGITS[4 * i]
1442 || df.getMaximumIntegerDigits() != DIGITS[4 * i + 1]
1443 || df.getMinimumFractionDigits() != DIGITS[4 * i + 2]
1444 || df.getMaximumFractionDigits() != DIGITS[4 * i + 3]) {
1450 + DIGITS[4 * i] + "/"
1451 + DIGITS[4 * i + 1] + ";"
1452 + DIGITS[4 * i + 2] + "/"
1453 + DIGITS[4 * i + 3]);
/external/icu/icu4c/source/test/intltest/
H A Dnumfmtst.cpp1733 int32_t DIGITS[] = { local
1757 if (df.getMinimumIntegerDigits() != DIGITS[4*i] ||
1758 df.getMaximumIntegerDigits() != DIGITS[4*i+1] ||
1759 df.getMinimumFractionDigits() != DIGITS[4*i+2] ||
1760 df.getMaximumFractionDigits() != DIGITS[4*i+3]) {
1767 DIGITS[4*i] + "/" +
1768 DIGITS[4*i+1] + ";" +
1769 DIGITS[4*i+2] + "/" +
1770 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 ...
H A Dcom.ibm.icu_4.2.1.v20100412.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/ ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/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/ ...
/external/guice/lib/build/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/xml/ javax/xml/parsers/ META-INF/services/ ...

Completed in 3298 milliseconds

12