/external/conscrypt/src/platform/java/org/conscrypt/ |
Hex.java | 28 private final static char[] DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' }; 34 buf[c++] = DIGITS[(b >> 4) & 0xf]; 35 buf[c++] = DIGITS[b & 0xf]; 41 int bufLen = 8; // Max number of hex digits in an int 46 buf[--cursor] = DIGITS[i & 0xf];
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/ |
JsEscapeFunction.java | 31 private static final char[] DIGITS = "0123456789ABCDEF".toCharArray(); 70 return "\\x" + DIGITS[(c >> 4) & 0xF] + DIGITS[c & 0xF];
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/ |
Hex.java | 39 private static final byte[] DIGITS = new byte['f'+1]; 42 DIGITS[i] = -1; 45 DIGITS['0' + i] = i; 48 DIGITS['A' + i] = (byte)(10 + i); 49 DIGITS['a' + i] = (byte)(10 + i); 98 final byte d1 = DIGITS[c1]; 110 final byte d2 = DIGITS[c2];
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
Hex.java | 29 private static final char[] DIGITS = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; 44 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4]; 45 out[j++] = DIGITS[0x0F & data[i]];
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/ |
ContentTypeParserConstants.java | 25 int DIGITS = 20; 56 "<DIGITS>",
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/ |
DateTimeParserConstants.java | 26 int DIGITS = 46; 81 "<DIGITS>",
|
DateTimeParser.java | 213 t = jj_consume_token(DIGITS); 278 t = jj_consume_token(DIGITS); 304 t = jj_consume_token(DIGITS); 311 t = jj_consume_token(DIGITS); 318 t = jj_consume_token(DIGITS); 328 u = jj_consume_token(DIGITS);
|
/packages/services/Telephony/src/org/apache/james/mime4j/field/contenttype/parser/ |
ContentTypeParserConstants.java | 25 int DIGITS = 20; 56 "<DIGITS>",
|
/packages/services/Telephony/src/org/apache/james/mime4j/field/datetime/parser/ |
DateTimeParserConstants.java | 26 int DIGITS = 46; 81 "<DIGITS>",
|
DateTimeParser.java | 213 t = jj_consume_token(DIGITS); 278 t = jj_consume_token(DIGITS); 304 t = jj_consume_token(DIGITS); 311 t = jj_consume_token(DIGITS); 318 t = jj_consume_token(DIGITS); 328 u = jj_consume_token(DIGITS);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
TestUtil.java | 61 static final char DIGITS[] = 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/ |
TestUtil.java | 60 static final char DIGITS[] = 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]);
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/ |
IntegralToString.java | 95 * The digits for every supported radix. 97 private static final char[] DIGITS = { 144 buf[--cursor] = DIGITS[radix * q - i]; 212 // Calculate digits two-at-a-time till remaining digits fit in 16 bits 222 // Calculate remaining digits one-at-a-time for performance 227 buf[--cursor] = DIGITS[r]; 278 buf[--cursor] = DIGITS[(int) (radix * q - v)]; 330 int low = (int) (n % 1000000000); // Extract low-order 9 digits 333 // Zero-pad Low order part to 9 digits 451 char[] digits = upperCase ? UPPER_CASE_DIGITS : DIGITS; local 458 char[] digits = upperCase ? UPPER_CASE_DIGITS : DIGITS; local 466 char[] digits = upperCase ? UPPER_CASE_DIGITS : DIGITS; local 481 char[] digits = upperCase ? UPPER_CASE_DIGITS : DIGITS; local [all...] |
/external/icu/icu4c/source/common/ |
util.cpp | 25 static const UChar DIGITS[] = { 45 // First determine the number of digits 53 // Now generate the digits 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)]) [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
NumberKeyListenerTest.java | 50 mMockNumberKeyListener = new MockNumberKeyListener(MockNumberKeyListener.DIGITS); 94 mMockNumberKeyListener = new MockNumberKeyListener(MockNumberKeyListener.DIGITS); 113 mMockNumberKeyListener = new MockNumberKeyListener(MockNumberKeyListener.DIGITS); 134 new MockNumberKeyListener(MockNumberKeyListener.DIGITS); 151 int keyCode = TextMethodUtils.getUnacceptedKeyCode(MockNumberKeyListener.DIGITS); 179 static final char[] DIGITS =
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
Hex.java | 41 private static final char[] DIGITS = { 53 * @param data An array of characters containing hexidecimal digits 114 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4 ]; 115 out[j++] = DIGITS[ 0x0F & data[i] ]; 128 * @param array An array of character bytes containing hexidecimal digits 146 * @param object A String or, an array of character bytes containing hexidecimal digits
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
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' )+ ;
|
/libcore/ojluni/src/main/java/java/lang/ |
Byte.java | 109 * string must all be digits, of the specified radix (as 158 * byte}. The characters in the string must all be decimal digits, 257 * except that underscores are not accepted between digits. 478 char[] digits = upperCase ? UPPER_CASE_DIGITS : DIGITS; local 479 char[] buf = new char[2]; // We always want two digits. 480 buf[0] = digits[(b >> 4) & 0xf]; 481 buf[1] = digits[b & 0xf]; 484 private static final char[] DIGITS = {
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
Utility.java | [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
Utility.java | [all...] |
/external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/ |
security.py | 26 HEXADECIMAL_DIGITS = string.digits + 'abcdef' 27 DIGITS = string.digits 30 LOWERCASE_ALPHANUMERIC = string.lowercase + string.digits 31 UPPERCASE_ALPHANUMERIC = string.uppercase + string.digits 33 ALPHANUMERIC = string.letters + string.digits 34 ASCII_PRINTABLE = string.letters + string.digits + string.punctuation 60 DIGITS 10 3.3219 bits
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
sre_parse.py | 23 DIGITS = set("0123456789") 237 # hexadecimal escape (exactly two digits) 245 # octal escape (up to three digits) 250 elif c in DIGITS: 280 elif c in DIGITS: 282 if source.next in DIGITS: 286 # got three octal digits; this is an octal escape 489 while source.next in DIGITS: 492 while source.next in DIGITS: 758 elif c in DIGITS [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
sre_parse.py | 23 DIGITS = set("0123456789") 237 # hexadecimal escape (exactly two digits) 245 # octal escape (up to three digits) 250 elif c in DIGITS: 280 elif c in DIGITS: 282 if source.next in DIGITS: 286 # got three octal digits; this is an octal escape 489 while source.next in DIGITS: 492 while source.next in DIGITS: 758 elif c in DIGITS [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
sre_parse.py | 23 DIGITS = set("0123456789") 237 # hexadecimal escape (exactly two digits) 245 # octal escape (up to three digits) 250 elif c in DIGITS: 280 elif c in DIGITS: 282 if source.next in DIGITS: 286 # got three octal digits; this is an octal escape 489 while source.next in DIGITS: 492 while source.next in DIGITS: 758 elif c in DIGITS [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
sre_parse.py | 23 DIGITS = set("0123456789") 237 # hexadecimal escape (exactly two digits) 245 # octal escape (up to three digits) 250 elif c in DIGITS: 280 elif c in DIGITS: 282 if source.next in DIGITS: 286 # got three octal digits; this is an octal escape 489 while source.next in DIGITS: 492 while source.next in DIGITS: 758 elif c in DIGITS [all...] |