HomeSort by relevance Sort by last modified time
    Searched refs:DIGITS (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/conscrypt/platform/src/main/java/org/conscrypt/
Hex.java 28 private final static char[] DIGITS = {
35 buf[c++] = DIGITS[(b >> 4) & 0xf];
36 buf[c++] = DIGITS[b & 0xf];
42 int bufLen = 8; // Max number of hex digits in an int
47 buf[--cursor] = DIGITS[i & 0xf];
  /external/conscrypt/repackaged/platform/src/main/java/com/android/org/conscrypt/
Hex.java 30 private final static char[] DIGITS = {
37 buf[c++] = DIGITS[(b >> 4) & 0xf];
38 buf[c++] = DIGITS[b & 0xf];
44 int bufLen = 8; // Max number of hex digits in an int
49 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];
  /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]];
  /external/cldr/tools/java/com/ibm/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/desugar/test/java/com/google/devtools/build/android/desugar/testdata/
InterfaceWithLambda.java 22 List<String> DIGITS =
  /external/icu/icu4c/source/common/
util.cpp 27 static const UChar DIGITS[] = {
47 // First determine the number of digits
55 // Now generate the digits
57 result.append(DIGITS[0]);
61 result.append(DIGITS[digit]);
86 result.append(DIGITS[0xF&(c>>28)]);
87 result.append(DIGITS[0xF&(c>>24)]);
88 result.append(DIGITS[0xF&(c>>20)]);
89 result.append(DIGITS[0xF&(c>>16)]);
93 result.append(DIGITS[0xF&(c>>12)])
    [all...]
static_unicode_sets.h 56 DIGITS,
58 // Combined Separators with Digits (for lead code points)
static_unicode_sets.cpp 177 gUnicodeSets[DIGITS] = new UnicodeSet(u"[:digit:]", status);
179 gUnicodeSets[DIGITS_OR_ALL_SEPARATORS] = computeUnion(DIGITS, ALL_SEPARATORS);
180 gUnicodeSets[DIGITS_OR_STRICT_ALL_SEPARATORS] = computeUnion(DIGITS, STRICT_ALL_SEPARATORS);
  /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/icu/android_icu4j/src/main/tests/android/icu/dev/test/
TestUtil.java 69 static final char DIGITS[] =
126 result.append(DIGITS[0xF & (c >> 28)]);
127 result.append(DIGITS[0xF & (c >> 24)]);
128 result.append(DIGITS[0xF & (c >> 20)]);
129 result.append(DIGITS[0xF & (c >> 16)]);
133 result.append(DIGITS[0xF & (c >> 12)]);
134 result.append(DIGITS[0xF & (c >> 8)]);
135 result.append(DIGITS[0xF & (c >> 4)]);
136 result.append(DIGITS[0xF & c]);
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
TestUtil.java 66 static final char DIGITS[] =
123 result.append(DIGITS[0xF & (c >> 28)]);
124 result.append(DIGITS[0xF & (c >> 24)]);
125 result.append(DIGITS[0xF & (c >> 20)]);
126 result.append(DIGITS[0xF & (c >> 16)]);
130 result.append(DIGITS[0xF & (c >> 12)]);
131 result.append(DIGITS[0xF & (c >> 8)]);
132 result.append(DIGITS[0xF & (c >> 4)]);
133 result.append(DIGITS[0xF & c]);
  /cts/tests/tests/text/src/android/text/method/cts/
NumberKeyListenerTest.java 56 mMockNumberKeyListener = new MockNumberKeyListener(MockNumberKeyListener.DIGITS);
101 mMockNumberKeyListener = new MockNumberKeyListener(MockNumberKeyListener.DIGITS);
121 mMockNumberKeyListener = new MockNumberKeyListener(MockNumberKeyListener.DIGITS);
143 new MockNumberKeyListener(MockNumberKeyListener.DIGITS);
158 int keyCode = TextMethodUtils.getUnacceptedKeyCode(MockNumberKeyListener.DIGITS);
184 static final char[] DIGITS =
  /external/antlr/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' )+ ;
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestRangeAbbreviator.java 16 static final UnicodeSet DIGITS = new UnicodeSet("[:nd:]");
34 if (DIGITS.containsAll(testDayOfWeek)) {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
StaticUnicodeSets.java 65 DIGITS,
67 // Combined Separators with Digits (for lead code points)
258 unicodeSets.put(Key.DIGITS, new UnicodeSet("[:digit:]").freeze());
260 unicodeSets.put(Key.DIGITS_OR_ALL_SEPARATORS, computeUnion(Key.DIGITS, Key.ALL_SEPARATORS));
262 computeUnion(Key.DIGITS, Key.STRICT_ALL_SEPARATORS));
Utility.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
StaticUnicodeSets.java 60 DIGITS,
62 // Combined Separators with Digits (for lead code points)
253 unicodeSets.put(Key.DIGITS, new UnicodeSet("[:digit:]").freeze());
255 unicodeSets.put(Key.DIGITS_OR_ALL_SEPARATORS, computeUnion(Key.DIGITS, Key.ALL_SEPARATORS));
257 computeUnion(Key.DIGITS, Key.STRICT_ALL_SEPARATORS));
Utility.java     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
sre_parse.py 22 DIGITS = set("0123456789")
247 # hexadecimal escape (exactly two digits)
255 # octal escape (up to three digits)
260 elif c in DIGITS:
290 elif c in DIGITS:
292 if source.next in DIGITS:
296 # got three octal digits; this is an octal escape
504 while source.next in DIGITS:
507 while source.next in DIGITS:
789 elif c in DIGITS:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sre_parse.py 22 DIGITS = set("0123456789")
236 # hexadecimal escape (exactly two digits)
244 # octal escape (up to three digits)
249 elif c in DIGITS:
279 elif c in DIGITS:
281 if source.next in DIGITS:
285 # got three octal digits; this is an octal escape
488 while source.next in DIGITS:
491 while source.next in DIGITS:
745 elif c in DIGITS:
    [all...]
  /external/python/cpython2/Lib/
sre_parse.py 22 DIGITS = set("0123456789")
248 # hexadecimal escape (exactly two digits)
256 # octal escape (up to three digits)
261 elif c in DIGITS:
300 elif c in DIGITS:
302 if source.next in DIGITS:
306 # got three octal digits; this is an octal escape
523 while source.next in DIGITS:
526 while source.next in DIGITS:
814 elif c in DIGITS
    [all...]
  /external/antlr/runtime/Ruby/test/functional/delegation/
import.rb 320 INTEGER: ('+'|'-')? DIGITS;
321 FLOAT: INTEGER '.' DIGITS (('e'|'E') INTEGER)?;
322 fragment DIGITS: ('0'..'9')+;
  /external/eigen/lapack/
dlamch.f 43 *> t = number of (base) digits in the mantissa
89 INTRINSIC DIGITS, EPSILON, HUGE, MAXEXPONENT,
123 RMACH = DIGITS(ZERO)
slamch.f 47 *> t = number of (base) digits in the mantissa
93 INTRINSIC DIGITS, EPSILON, HUGE, MAXEXPONENT,
127 RMACH = DIGITS(ZERO)

Completed in 1461 milliseconds

1 2 3