/external/conscrypt/src/platform/java/org/conscrypt/ |
H A D | Hex.java | 28 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 D | JsEscapeFunction.java | 31 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 D | Hex.java | 29 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 D | TestUtil.java | 61 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 D | TestUtil.java | 60 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 D | util.cpp | 25 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 D | Hex.java | 41 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 D | Python.g | 479 : '.' 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 D | Utility.java | 1343 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 D | Utility.java | 1339 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 D | security.py | 27 DIGITS = string.digits variable 60 DIGITS 10 3.3219 bits
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/delegation/ |
H A D | import.rb | 320 INTEGER: ('+'|'-')? DIGITS; 321 FLOAT: INTEGER '.' DIGITS (('e'|'E') INTEGER)?; 322 fragment DIGITS: ('0'..'9')+;
|
/external/mesa3d/src/glsl/glcpp/ |
H A D | glcpp-lex.l | 89 DIGITS [0-9][0-9]*
|
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/ |
H A D | PhoneNumberUtil.java | 221 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 D | Buffer.java | 48 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 D | NumberFormatTest.java | 1427 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 D | NumberFormatTest.java | 1423 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 D | numfmtst.cpp | 1733 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 D | org.apache.commons.codec_1.3.0.v20100518-1140.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | com.ibm.icu_4.2.1.v20100412.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
H A D | yjp-controller-api-redist.jar | META-INF/ META-INF/MANIFEST.MF com/ com/yourkit/ com/yourkit/api/ com/yourkit/runtime/ com/ ... |
H A D | findbugs.jar | META-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ... |
/external/slf4j/log4j-over-slf4j/compatibility/lib/ |
H A D | log4j-1.3alpha-8.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ... |
/external/zxing/core/ |
H A D | core.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ... |
/external/guice/lib/build/jdiff/ |
H A D | xerces.jar | META-INF/ META-INF/MANIFEST.MF javax/ javax/xml/ javax/xml/parsers/ META-INF/services/ ... |