/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
D | XMLChar.java | 56 private static final byte[] CHARS = new byte[1 << 16]; field in XMLChar 98 CHARS[9] = 35; 99 CHARS[10] = 19; 100 CHARS[13] = 19; 101 CHARS[32] = 51; 102 CHARS[33] = 49; 103 CHARS[34] = 33; 104 Arrays.fill(CHARS, 35, 38, (byte) 49 ); // Fill 3 of value (byte) 49 in Arrays.fill() argument 105 CHARS[38] = 1; 106 Arrays.fill(CHARS, 39, 45, (byte) 49 ); // Fill 6 of value (byte) 49 in Arrays.fill() argument [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | XMLChar.java | 54 private static final byte[] CHARS = new byte[1 << 16]; field in XMLChar 269 CHARS[j] |= MASK_VALID | MASK_CONTENT; 275 CHARS[specialChar[i]] = (byte)(CHARS[specialChar[i]] & ~MASK_CONTENT); 280 CHARS[spaceChar[i]] |= MASK_SPACE; 285 CHARS[nameStartChar[i]] |= MASK_NAME_START | MASK_NAME | 290 CHARS[j] |= MASK_NAME_START | MASK_NAME | 295 CHARS[letterChar[i]] |= MASK_NAME_START | MASK_NAME | 301 CHARS[nameChar[i]] |= MASK_NAME | MASK_NCNAME; 305 CHARS[j] |= MASK_NAME | MASK_NCNAME; 310 CHARS[j] |= MASK_NAME | MASK_NCNAME; [all …]
|
/external/ltp/testcases/kernel/fs/doio/ |
D | dataascii.c | 36 #define CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghjiklmnopqrstuvwxyz\n" macro 37 #define CHARS_SIZE sizeof(CHARS) 58 charlist = CHARS; in dataasciigen() 87 charlist = CHARS; in dataasciichk()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | TrieMapTest.java | 135 checkGet(unicodeTestMap, TrieMap.Style.CHARS); in TestGet() 163 timeIteration(unicodeTestMap, comparisonTime, Style.CHARS, 3); in TestTimeIteration() 217 checkContents(unicodeTestMap, Style.CHARS); in TestContents() 255 checkSearch(Style.CHARS); in TestSearch() 307 timeBuilding(unicodeTestMap, comparisonTime, Style.CHARS, Option.SMALL, 20); in TestTimeBuilding() 308 timeBuilding(unicodeTestMap, comparisonTime, Style.CHARS, Option.FAST, 20); in TestTimeBuilding() 363 checkSize(size, Style.CHARS, Option.SMALL, 0.30); in TestSize() 364 checkSize(size, Style.CHARS, Option.FAST, 0.30); in TestSize() 425 timeGet(keys, unicodeTestMap, comparisonTime, Style.CHARS, 3); in TestTimeGet()
|
D | TrieMap.java | 37 BYTES, CHARS enumConstant
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | TrieMapTest.java | 132 checkGet(unicodeTestMap, TrieMap.Style.CHARS); in TestGet() 160 timeIteration(unicodeTestMap, comparisonTime, Style.CHARS, 3); in TestTimeIteration() 214 checkContents(unicodeTestMap, Style.CHARS); in TestContents() 252 checkSearch(Style.CHARS); in TestSearch() 304 timeBuilding(unicodeTestMap, comparisonTime, Style.CHARS, Option.SMALL, 20); in TestTimeBuilding() 305 timeBuilding(unicodeTestMap, comparisonTime, Style.CHARS, Option.FAST, 20); in TestTimeBuilding() 360 checkSize(size, Style.CHARS, Option.SMALL, 0.30); in TestSize() 361 checkSize(size, Style.CHARS, Option.FAST, 0.30); in TestSize() 422 timeGet(keys, unicodeTestMap, comparisonTime, Style.CHARS, 3); in TestTimeGet()
|
D | TrieMap.java | 36 BYTES, CHARS enumConstant
|
/external/rust/crates/nom/src/ |
D | util.rs | 19 static CHARS: &'static [u8] = b"0123456789abcdef"; variable 42 v.push(CHARS[(byte >> 4) as usize]); in to_hex_from() 43 v.push(CHARS[(byte & 0xf) as usize]); in to_hex_from()
|
/external/conscrypt/testing/src/main/java/org/conscrypt/ |
D | TestUtils.java | 78 private static final byte[] CHARS = field in TestUtils 424 int numChars = Math.min(remaining, CHARS.length); in newTextMessage() 425 System.arraycopy(CHARS, 0, msg, msgIndex, numChars); in newTextMessage()
|
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/ |
D | TestUtils.java | 80 private static final byte[] CHARS = field in TestUtils 430 int numChars = Math.min(remaining, CHARS.length); in newTextMessage() 431 System.arraycopy(CHARS, 0, msg, msgIndex, numChars); in newTextMessage()
|
/external/python/parse_type/parse_type/ |
D | parse.py | 489 CHARS = '0123456789abcdefghijklmnopqrstuvwxyz' 508 chars = CHARS[:base]
|
/external/fmtlib/include/fmt/ |
D | format.h | 3872 template <typename Char, Char... CHARS> class udl_formatter { 3876 static FMT_CONSTEXPR_DECL Char s[] = {CHARS..., '\0'}; 3907 template <typename Char, Char... CHARS> 3908 FMT_CONSTEXPR detail::udl_formatter<Char, CHARS...> operator""_format() {
|
/external/freetype/ |
D | ChangeLog.24 | 5997 (_bdf_parse_start): Handle `CHARS' keyword here too and pass current
|