/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/chromium_org/third_party/icu/source/common/ |
D | util.cpp | 24 static const UChar DIGITS[] = { variable 54 result.append(DIGITS[0]); in appendNumber() 58 result.append(DIGITS[digit]); in appendNumber() 83 result.append(DIGITS[0xF&(c>>28)]); in escapeUnprintable() 84 result.append(DIGITS[0xF&(c>>24)]); in escapeUnprintable() 85 result.append(DIGITS[0xF&(c>>20)]); in escapeUnprintable() 86 result.append(DIGITS[0xF&(c>>16)]); in escapeUnprintable() 90 result.append(DIGITS[0xF&(c>>12)]); in escapeUnprintable() 91 result.append(DIGITS[0xF&(c>>8)]); in escapeUnprintable() 92 result.append(DIGITS[0xF&(c>>4)]); in escapeUnprintable() [all …]
|
/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 | 36 private static final char[] DIGITS = { field in Hex 109 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4 ]; in encodeHex() 110 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/libphonenumber/java/src/com/android/i18n/phonenumbers/ |
D | PhoneNumberUtil.java | 227 private static final String DIGITS = "\\p{Nd}"; field in PhoneNumberUtil 235 private static final Pattern CAPTURING_DIGIT_PATTERN = Pattern.compile("(" + DIGITS + ")"); 243 private static final String VALID_START_CHAR = "[" + PLUS_CHARS + DIGITS + "]"; 281 DIGITS + "{" + MIN_LENGTH_FOR_NSN + "}" + "|" + 282 "[" + PLUS_CHARS + "]*+(?:[" + VALID_PUNCTUATION + STAR_SIGN + "]*" + DIGITS + "){3,}[" + 283 VALID_PUNCTUATION + STAR_SIGN + VALID_ALPHA + DIGITS + "]*"; 293 private static final String CAPTURING_EXTN_DIGITS = "(" + DIGITS + "{1,7})"; 330 "[- ]+(" + DIGITS + "{1,5})#"); in createExtnPattern()
|
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/ |
D | glcpp-lex.l | 89 DIGITS [0-9][0-9]*
|
/external/mesa3d/src/glsl/glcpp/ |
D | glcpp-lex.l | 89 DIGITS [0-9][0-9]*
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
D | numfmtst.cpp | 1011 int32_t DIGITS[] = { in TestScientific() local 1035 if (df.getMinimumIntegerDigits() != DIGITS[4*i] || in TestScientific() 1036 df.getMaximumIntegerDigits() != DIGITS[4*i+1] || in TestScientific() 1037 df.getMinimumFractionDigits() != DIGITS[4*i+2] || in TestScientific() 1038 df.getMaximumFractionDigits() != DIGITS[4*i+3]) { in TestScientific() 1045 DIGITS[4*i] + "/" + in TestScientific() 1046 DIGITS[4*i+1] + ";" + in TestScientific() 1047 DIGITS[4*i+2] + "/" + in TestScientific() 1048 DIGITS[4*i+3]); in TestScientific()
|
/external/icu/icu4c/source/test/intltest/ |
D | numfmtst.cpp | 1285 int32_t DIGITS[] = { in TestScientific() local 1309 if (df.getMinimumIntegerDigits() != DIGITS[4*i] || in TestScientific() 1310 df.getMaximumIntegerDigits() != DIGITS[4*i+1] || in TestScientific() 1311 df.getMinimumFractionDigits() != DIGITS[4*i+2] || in TestScientific() 1312 df.getMaximumFractionDigits() != DIGITS[4*i+3]) { in TestScientific() 1319 DIGITS[4*i] + "/" + in TestScientific() 1320 DIGITS[4*i+1] + ";" + in TestScientific() 1321 DIGITS[4*i+2] + "/" + in TestScientific() 1322 DIGITS[4*i+3]); in TestScientific()
|
/external/qemu/android/ |
D | hw-events.h | 358 KEY_CODE(DIGITS ,0x19d) \
|
/external/srec/config/en.us/dictionary/ |
D | c0.6 | 29927 DIGITS D IH1 JH AH0 T S
|