/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
D | TestUtil.java | 61 static final char DIGITS[] = field in TestUtil 118 result.append(DIGITS[0xF & (c >> 28)]); in escapeUnprintable() 119 result.append(DIGITS[0xF & (c >> 24)]); in escapeUnprintable() 120 result.append(DIGITS[0xF & (c >> 20)]); in escapeUnprintable() 121 result.append(DIGITS[0xF & (c >> 16)]); in escapeUnprintable() 125 result.append(DIGITS[0xF & (c >> 12)]); in escapeUnprintable() 126 result.append(DIGITS[0xF & (c >> 8)]); in escapeUnprintable() 127 result.append(DIGITS[0xF & (c >> 4)]); in escapeUnprintable() 128 result.append(DIGITS[0xF & c]); in escapeUnprintable()
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
D | TestUtil.java | 60 static final char DIGITS[] = field in TestUtil 117 result.append(DIGITS[0xF & (c >> 28)]); in escapeUnprintable() 118 result.append(DIGITS[0xF & (c >> 24)]); in escapeUnprintable() 119 result.append(DIGITS[0xF & (c >> 20)]); in escapeUnprintable() 120 result.append(DIGITS[0xF & (c >> 16)]); in escapeUnprintable() 124 result.append(DIGITS[0xF & (c >> 12)]); in escapeUnprintable() 125 result.append(DIGITS[0xF & (c >> 8)]); in escapeUnprintable() 126 result.append(DIGITS[0xF & (c >> 4)]); in escapeUnprintable() 127 result.append(DIGITS[0xF & c]); in escapeUnprintable()
|
/external/icu/icu4c/source/common/ |
D | util.cpp | 25 static const UChar DIGITS[] = { variable 55 result.append(DIGITS[0]); in appendNumber() 59 result.append(DIGITS[digit]); in appendNumber() 84 result.append(DIGITS[0xF&(c>>28)]); in escapeUnprintable() 85 result.append(DIGITS[0xF&(c>>24)]); in escapeUnprintable() 86 result.append(DIGITS[0xF&(c>>20)]); in escapeUnprintable() 87 result.append(DIGITS[0xF&(c>>16)]); in escapeUnprintable() 91 result.append(DIGITS[0xF&(c>>12)]); in escapeUnprintable() 92 result.append(DIGITS[0xF&(c>>8)]); in escapeUnprintable() 93 result.append(DIGITS[0xF&(c>>4)]); in escapeUnprintable() [all …]
|
/external/conscrypt/src/platform/java/org/conscrypt/ |
D | Hex.java | 28 …private final static char[] DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b',… field in Hex 34 buf[c++] = DIGITS[(b >> 4) & 0xf]; in bytesToHexString() 35 buf[c++] = DIGITS[b & 0xf]; in bytesToHexString() 46 buf[--cursor] = DIGITS[i & 0xf]; in intToHexString()
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/ |
D | JsEscapeFunction.java | 31 private static final char[] DIGITS = "0123456789ABCDEF".toCharArray(); field in JsEscapeFunction 70 return "\\x" + DIGITS[(c >> 4) & 0xF] + DIGITS[c & 0xF]; in getEscapeString()
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
D | Hex.java | 29 …private static final char[] DIGITS = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', … field in Hex 44 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4]; in encodeHex() 45 out[j++] = DIGITS[0x0F & data[i]]; in encodeHex()
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
D | Hex.java | 41 private static final char[] DIGITS = { field in Hex 114 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4 ]; in encodeHex() 115 out[j++] = DIGITS[ 0x0F & data[i] ]; in encodeHex()
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
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/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Utility.java | 1339 static final char DIGITS[] = { 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[0xF&c]);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | Utility.java | 1343 static final char DIGITS[] = { 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[0xF&c]);
|
/external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/ |
D | security.py | 27 DIGITS = string.digits variable
|
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/ |
D | PhoneNumberUtil.java | 221 private static final String DIGITS = "\\p{Nd}"; field in 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})#"); in createExtnPattern()
|
/external/mesa3d/src/glsl/glcpp/ |
D | glcpp-lex.l | 89 DIGITS [0-9][0-9]*
|
/external/okhttp/okio/okio/src/main/java/okio/ |
D | Buffer.java | 48 private static final byte[] DIGITS = field in Buffer 1075 data[--pos] = DIGITS[digit]; 1098 data[pos] = DIGITS[(int) (v & 0xF)];
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | NumberFormatTest.java | 1423 int DIGITS[] = { in TestScientific() local 1441 if (df.getMinimumIntegerDigits() != DIGITS[4 * i] in TestScientific() 1442 || df.getMaximumIntegerDigits() != DIGITS[4 * i + 1] in TestScientific() 1443 || df.getMinimumFractionDigits() != DIGITS[4 * i + 2] in TestScientific() 1444 || df.getMaximumFractionDigits() != DIGITS[4 * i + 3]) { in TestScientific() 1450 + DIGITS[4 * i] + "/" in TestScientific() 1451 + DIGITS[4 * i + 1] + ";" in TestScientific() 1452 + DIGITS[4 * i + 2] + "/" in TestScientific() 1453 + DIGITS[4 * i + 3]); in TestScientific()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | NumberFormatTest.java | 1427 int DIGITS[] = { in TestScientific() local 1445 if (df.getMinimumIntegerDigits() != DIGITS[4 * i] in TestScientific() 1446 || df.getMaximumIntegerDigits() != DIGITS[4 * i + 1] in TestScientific() 1447 || df.getMinimumFractionDigits() != DIGITS[4 * i + 2] in TestScientific() 1448 || df.getMaximumFractionDigits() != DIGITS[4 * i + 3]) { in TestScientific() 1454 + DIGITS[4 * i] + "/" in TestScientific() 1455 + DIGITS[4 * i + 1] + ";" in TestScientific() 1456 + DIGITS[4 * i + 2] + "/" in TestScientific() 1457 + DIGITS[4 * i + 3]); in TestScientific()
|
/external/icu/icu4c/source/test/intltest/ |
D | numfmtst.cpp | 1733 int32_t DIGITS[] = { in TestScientific() local 1757 if (df.getMinimumIntegerDigits() != DIGITS[4*i] || in TestScientific() 1758 df.getMaximumIntegerDigits() != DIGITS[4*i+1] || in TestScientific() 1759 df.getMinimumFractionDigits() != DIGITS[4*i+2] || in TestScientific() 1760 df.getMaximumFractionDigits() != DIGITS[4*i+3]) { in TestScientific() 1767 DIGITS[4*i] + "/" + in TestScientific() 1768 DIGITS[4*i+1] + ";" + in TestScientific() 1769 DIGITS[4*i+2] + "/" + in TestScientific() 1770 DIGITS[4*i+3]); in TestScientific()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.apache.commons.codec_1.3.0.v20100518-1140.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | com.ibm.icu_4.2.1.v20100412.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
D | yjp-controller-api-redist.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/yourkit/
com/ ... |
D | findbugs.jar | META-INF/
META-INF/MANIFEST.MF
default.xsl
edu/
edu/umd ... |
/external/slf4j/log4j-over-slf4j/compatibility/lib/ |
D | log4j-1.3alpha-8.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/zxing/core/ |
D | core.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/guice/lib/build/jdiff/ |
D | xerces.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/xml/
javax/ ... |
/external/testng/ant/3rdparty/ |
D | doclava-1.0.3.jar | META-INF/MANIFEST.MF
assets/html/index.html
assets/templates/data ... |