/external/antlr/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/ |
D | TLexer.g | 60 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/ |
D | expectedTokensTestGrammar.g | 8 * 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/ |
D | Utility.java | 671 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/ |
D | Utility.java | 675 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/ |
D | property_bool.rs | 35 ("Hex_Digit", HEX_DIGIT), 5931 pub const HEX_DIGIT: &'static [(char, char)] = &[ constant
|
/external/python/cpython3/Objects/ |
D | floatobject.c | 1387 #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/ |
D | UProperty.java | 142 public static final int HEX_DIGIT = 13; field
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
D | UProperty.java | 157 public static final int HEX_DIGIT = 13; field
|
/external/python/cpython2/Objects/ |
D | floatobject.c | 1590 #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/ |
D | UCharacterTest.java | 1825 { 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/ |
D | UCharacterTest.java | 1822 { 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/ |
D | current.txt | 1237 field public static final int HEX_DIGIT = 13; // 0xd
|
/external/icu/icu4j/tools/build/ |
D | icu4j60.api3.gz |
|
D | icu4j62.api3.gz | 12;ICU4J 62.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j61.api3.gz |
|
D | icu4j59.api3.gz | 12;ICU4J 59.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j67.api3.gz | 12;ICU4J 67.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j63.api3.gz |
|
D | icu4j65.api3.gz |
|
D | icu4j68.api3.gz |
|
D | icu4j64.api3.gz | 12;ICU4J 64.2;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j66.api3.gz |
|