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

/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/icu4c/common/
H A Dutil.cpp24 static const UChar DIGITS[] = { variable
54 result.append(DIGITS[0]);
58 result.append(DIGITS[digit]);
83 result.append(DIGITS[0xF&(c>>28)]);
84 result.append(DIGITS[0xF&(c>>24)]);
85 result.append(DIGITS[0xF&(c>>20)]);
86 result.append(DIGITS[0xF&(c>>16)]);
90 result.append(DIGITS[0xF&(c>>12)]);
91 result.append(DIGITS[0xF&(c>>8)]);
92 result.append(DIGITS[
[all...]
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java36 private static final char[] DIGITS = { field in class:Hex
109 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4 ];
110 out[j++] = DIGITS[ 0x0F & data[i] ];
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp-lex.l71 DIGITS [0-9][0-9]*
109 {HASH}line{HSPACE}+{DIGITS}{HSPACE}+{DIGITS}{HSPACE}*$ {
125 {HASH}line{HSPACE}+{DIGITS}{HSPACE}*$ {
/external/dropbear/libtommath/mtest/
H A Dmpi.c284 if((DIGITS(mp) = s_mp_alloc(prec, sizeof(mp_digit))) == NULL)
314 if((DIGITS(mp) = s_mp_alloc(USED(from), sizeof(mp_digit))) == NULL)
317 s_mp_copy(DIGITS(from), DIGITS(mp), USED(from));
356 s_mp_setz(DIGITS(to) + USED(from), ALLOC(to) - USED(from));
357 s_mp_copy(DIGITS(from), DIGITS(to), USED(from));
363 s_mp_copy(DIGITS(from), tmp, USED(from));
365 if(DIGITS(to) != NULL) {
367 s_mp_setz(DIGITS(t
[all...]
H A Dmpi.h59 #define DIGITS(MP) ((MP)->dp) macro
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhoneNumberUtil.java199 private static final String DIGITS = "\\p{Nd}"; field in class:PhoneNumberUtil
207 private static final Pattern CAPTURING_DIGIT_PATTERN = Pattern.compile("(" + DIGITS + ")");
215 private static final String VALID_START_CHAR = "[" + PLUS_CHARS + DIGITS + "]";
246 "[" + PLUS_CHARS + "]*(?:[" + VALID_PUNCTUATION + "]*" + DIGITS + "){3,}[" +
247 VALID_PUNCTUATION + VALID_ALPHA + DIGITS + "]*";
257 private static final String CAPTURING_EXTN_DIGITS = "(" + DIGITS + "{1,7})";
294 "[- ]+(" + DIGITS + "{1,5})#");
/external/icu4c/test/intltest/
H A Dnumfmtst.cpp1011 int32_t DIGITS[] = { local
1035 if (df.getMinimumIntegerDigits() != DIGITS[4*i] ||
1036 df.getMaximumIntegerDigits() != DIGITS[4*i+1] ||
1037 df.getMinimumFractionDigits() != DIGITS[4*i+2] ||
1038 df.getMaximumFractionDigits() != DIGITS[4*i+3]) {
1045 DIGITS[4*i] + "/" +
1046 DIGITS[4*i+1] + ";" +
1047 DIGITS[4*i+2] + "/" +
1048 DIGITS[4*i+3]); local
/external/qemu/android/
H A Dhw-events.h347 KEY_CODE(DIGITS ,0x19d) \
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
H A Dprocess.js272 var DIGITS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_";
276 ret = DIGITS.charAt(num % 54) + ret;
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 2659 milliseconds