Home
last modified time | relevance | path

Searched refs:HEX_DIGIT (Results 1 – 22 of 22) sorted by relevance

/external/antlr/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/
DTLexer.g60 HEX_DIGIT : ('0'..'9'|'a'..'f'|'A'..'F') ;
78 : '\\' 'u' HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT
/external/smali/smali/src/test/antlr/org/jf/smali/
DexpectedTokensTestGrammar.g8 * HEX_PREFIX, HEX_DIGIT, ESCAPE_SEQUENCE, STRING_LITERAL, BASE_STRING_LITERAL
106 fragment HEX_DIGIT
110 : HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DUtility.java671 buffer.append(HEX_DIGIT[(c & 0700) >> 6]); // HEX_DIGIT works for octal in formatForSource()
672 buffer.append(HEX_DIGIT[(c & 0070) >> 3]); in formatForSource()
673 buffer.append(HEX_DIGIT[(c & 0007)]); in formatForSource()
683 buffer.append(HEX_DIGIT[(c & 0xF000) >> 12]); in formatForSource()
684 buffer.append(HEX_DIGIT[(c & 0x0F00) >> 8]); in formatForSource()
685 buffer.append(HEX_DIGIT[(c & 0x00F0) >> 4]); in formatForSource()
686 buffer.append(HEX_DIGIT[(c & 0x000F)]); in formatForSource()
695 static final char[] HEX_DIGIT = {'0','1','2','3','4','5','6','7', field in Utility
720 buffer.append(HEX_DIGIT[(c & 0700) >> 6]); // HEX_DIGIT works for octal in format1ForSource()
721 buffer.append(HEX_DIGIT[(c & 0070) >> 3]); in format1ForSource()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DUtility.java675 buffer.append(HEX_DIGIT[(c & 0700) >> 6]); // HEX_DIGIT works for octal in formatForSource()
676 buffer.append(HEX_DIGIT[(c & 0070) >> 3]); in formatForSource()
677 buffer.append(HEX_DIGIT[(c & 0007)]); in formatForSource()
687 buffer.append(HEX_DIGIT[(c & 0xF000) >> 12]); in formatForSource()
688 buffer.append(HEX_DIGIT[(c & 0x0F00) >> 8]); in formatForSource()
689 buffer.append(HEX_DIGIT[(c & 0x00F0) >> 4]); in formatForSource()
690 buffer.append(HEX_DIGIT[(c & 0x000F)]); in formatForSource()
699 static final char[] HEX_DIGIT = {'0','1','2','3','4','5','6','7', field in Utility
724 buffer.append(HEX_DIGIT[(c & 0700) >> 6]); // HEX_DIGIT works for octal in format1ForSource()
725 buffer.append(HEX_DIGIT[(c & 0070) >> 3]); in format1ForSource()
[all …]
/external/rust/crates/regex-syntax/src/unicode_tables/
Dproperty_bool.rs35 ("Hex_Digit", HEX_DIGIT),
5931 pub const HEX_DIGIT: &'static [(char, char)] = &[ constant
/external/python/cpython3/Objects/
Dfloatobject.c1387 #define HEX_DIGIT(j) hex_from_char(*((j) < fdigits ? \ in float_fromhex() macro
1396 while (ndigits > 0 && HEX_DIGIT(ndigits-1) == 0) in float_fromhex()
1410 for (digit = HEX_DIGIT(ndigits-1); digit != 0; digit /= 2) in float_fromhex()
1429 x = 16.0*x + HEX_DIGIT(i); in float_fromhex()
1438 x = 16.0*x + HEX_DIGIT(i); in float_fromhex()
1439 digit = HEX_DIGIT(key_digit); in float_fromhex()
1447 (half_eps == 8 && (HEX_DIGIT(key_digit+1) & 1) != 0)) in float_fromhex()
1451 if (HEX_DIGIT(i) != 0) { in float_fromhex()
/external/icu/android_icu4j/src/main/java/android/icu/lang/
DUProperty.java142 public static final int HEX_DIGIT = 13; field
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DUProperty.java157 public static final int HEX_DIGIT = 13; field
/external/python/cpython2/Objects/
Dfloatobject.c1590 #define HEX_DIGIT(j) hex_from_char(*((j) < fdigits ? \ in float_fromhex() macro
1599 while (ndigits > 0 && HEX_DIGIT(ndigits-1) == 0) in float_fromhex()
1613 for (digit = HEX_DIGIT(ndigits-1); digit != 0; digit /= 2) in float_fromhex()
1632 x = 16.0*x + HEX_DIGIT(i); in float_fromhex()
1641 x = 16.0*x + HEX_DIGIT(i); in float_fromhex()
1642 digit = HEX_DIGIT(key_digit); in float_fromhex()
1650 (half_eps == 8 && (HEX_DIGIT(key_digit+1) & 1) != 0)) in float_fromhex()
1654 if (HEX_DIGIT(i) != 0) { in float_fromhex()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
DUCharacterTest.java1825 { 0x0044, UProperty.HEX_DIGIT, 1 }, in TestAdditionalProperties()
1826 { 0xff46, UProperty.HEX_DIGIT, 1 }, in TestAdditionalProperties()
1827 { 0x0047, UProperty.HEX_DIGIT, 0 }, in TestAdditionalProperties()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DUCharacterTest.java1822 { 0x0044, UProperty.HEX_DIGIT, 1 }, in TestAdditionalProperties()
1823 { 0xff46, UProperty.HEX_DIGIT, 1 }, in TestAdditionalProperties()
1824 { 0x0047, UProperty.HEX_DIGIT, 0 }, in TestAdditionalProperties()
/external/icu/android_icu4j/api/public/
Dcurrent.txt1237 field public static final int HEX_DIGIT = 13; // 0xd
/external/icu/icu4j/tools/build/
Dicu4j60.api3.gz
Dicu4j62.api3.gz12;ICU4J 62.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j61.api3.gz
Dicu4j59.api3.gz12;ICU4J 59.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j67.api3.gz12;ICU4J 67.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j63.api3.gz
Dicu4j65.api3.gz
Dicu4j68.api3.gz
Dicu4j64.api3.gz12;ICU4J 64.2;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j66.api3.gz