/external/libvterm/src/ |
D | unicode.c | 77 static const struct interval combining[] = { variable 192 if (bisearch(ucs, combining, in mk_wcwidth() 193 sizeof(combining) / sizeof(struct interval) - 1)) in mk_wcwidth() 336 return bisearch(codepoint, combining, sizeof(combining) / sizeof(struct interval) - 1); in vterm_unicode_is_combining()
|
/external/libxkbcommon/xkbcommon/test/data/symbols/ |
D | us | 996 key <AE03> { [ 3, numbersign, 0x1000300, 0x1000300 ] }; // combining grave 997 key <AE04> { [ 4, dollar, 0x1000301, 0x1000301 ] }; // combining acute 998 key <AE05> { [ 5, percent, 0x1000306, 0x1000306 ] }; // combining breve above 999 key <AE06> { [ 6,asciicircum, 0x100030A, 0x100030A ] }; // combining ring above 1000 … key <AE07> { [ 7, ampersand, 0x1000302, 0x1000302 ] }; // combining circumflex above 1001 key <AE08> { [ 8, asterisk, 0x100030C, 0x100030C ] }; // combining caron above 1002 key <AE09> { [ 9, parenleft, 0x1000307, 0x1000307 ] }; // combining dot above 1003 key <AE10> { [ 0, parenright, 0x1000308, 0x1000308 ] }; // combining diaeresis above 1004 key <AE11> { [ minus, underscore, 0x1000304, 0x1000304 ] }; // combining macron above 1005 key <AE12> { [ equal, plus, 0x1000303, 0x1000303 ] }; // combining tilde above [all …]
|
/external/python/cpython2/Tools/pybench/ |
D | Unicode.py | 476 combining = unicodedata.combining 489 combining(c) 498 combining(c) 507 combining(c) 516 combining(c) 525 combining(c) 538 combining = unicodedata.combining
|
/external/python/cpython3/Lib/test/ |
D | test_unicodedata.py | 99 str(self.db.combining(char)), 178 self.assertEqual(self.db.combining('\uFFFE'), 0) 179 self.assertEqual(self.db.combining('a'), 0) 180 self.assertEqual(self.db.combining('\u20e1'), 230) 181 self.assertEqual(self.db.combining('\U00020000'), 0) 183 self.assertRaises(TypeError, self.db.combining) 184 self.assertRaises(TypeError, self.db.combining, 'xx')
|
/external/python/cpython2/Modules/ |
D | unicodedata.c | 24 const unsigned char combining; /* combining class value 0 - 255 */ member 325 index = (int) _getrecord_ex(c)->combining; in unicodedata_combining() 586 prev = _getrecord_ex(*i)->combining; in nfd_nfkd() 589 cur = _getrecord_ex(*i)->combining; in nfd_nfkd() 603 prev = _getrecord_ex(*o)->combining; in nfd_nfkd() 607 prev = _getrecord_ex(*i)->combining; in nfd_nfkd() 695 int comb1 = _getrecord_ex(*i1)->combining; in nfc_nfkc() 761 unsigned char combining = record->combining; in is_normalized() local 766 if (combining && prev_combining > combining) in is_normalized() 768 prev_combining = combining; in is_normalized()
|
/external/python/cpython3/Modules/ |
D | unicodedata.c | 33 const unsigned char combining; /* combining class value 0 - 255 */ member 319 index = (int) _getrecord_ex(c)->combining; in unicodedata_UCD_combining_impl() 592 prev = _getrecord_ex(PyUnicode_READ(kind, data, i))->combining; in nfd_nfkd() 594 cur = _getrecord_ex(PyUnicode_READ(kind, data, i))->combining; in nfd_nfkd() 609 prev = _getrecord_ex(PyUnicode_READ(kind, data, o))->combining; in nfd_nfkd() 613 prev = _getrecord_ex(PyUnicode_READ(kind, data, i))->combining; in nfd_nfkd() 718 int comb1 = _getrecord_ex(code1)->combining; in nfc_nfkc() 798 unsigned char combining = record->combining; in is_normalized() local 803 if (combining && prev_combining > combining) in is_normalized() 805 prev_combining = combining; in is_normalized()
|
/external/python/cpython2/Lib/test/ |
D | test_unicodedata.py | 99 str(self.db.combining(char)), 174 self.assertEqual(self.db.combining(u'\uFFFE'), 0) 175 self.assertEqual(self.db.combining(u'a'), 0) 176 self.assertEqual(self.db.combining(u'\u20e1'), 230) 177 self.assertEqual(self.db.combining(u'\U00020000'), 0) 179 self.assertRaises(TypeError, self.db.combining) 180 self.assertRaises(TypeError, self.db.combining, u'xx')
|
/external/python/cpython2/Doc/library/ |
D | unicodedata.rst | 73 .. function:: combining(unichr) 75 Returns the canonical combining class assigned to the Unicode character *unichr* 76 as integer. Returns ``0`` if no combining class is defined. 130 a human reader, if one has combining characters and the other
|
/external/python/cpython3/Doc/library/ |
D | unicodedata.rst | 78 .. function:: combining(chr) 80 Returns the canonical combining class assigned to the character *chr* 81 as integer. Returns ``0`` if no combining class is defined. 133 a human reader, if one has combining characters and the other
|
/external/harfbuzz_ng/src/hb-ucdn/ |
D | ucdn.c | 24 unsigned char combining; member 202 return get_ucd_record(code)->combining; in ucdn_get_combining_class()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | bswap-rotate.ll | 6 ; This test checks for combining rotates with inconsistent constant value types.
|
/external/fonttools/ |
D | .coveragerc | 9 # these are treated as equivalent when combining data
|
/external/icu/icu4c/source/samples/translit/ |
D | README.TXT | 91 to convert each character to a sequence of base and combining 93 Then discard the combining characters (the accents etc.) leaving the
|
/external/perfetto/docs/ |
D | multi-layer-tracing.md | 9 services. The concrete use case is combining multiprocess tracing in Chromium
|
/external/llvm/test/Transforms/InstCombine/ |
D | 2003-07-21-ExternalConstant.ll | 5 ; This regression test helps check whether the instruction combining
|
D | 2008-11-08-FCmp.ll | 4 ; When inst combining an FCMP with the LHS coming from a uitofp instruction, we
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | 2003-07-21-ExternalConstant.ll | 5 ; This regression test helps check whether the instruction combining
|
D | 2008-11-08-FCmp.ll | 4 ; When inst combining an FCMP with the LHS coming from a uitofp instruction, we
|
/external/swiftshader/third_party/LLVM/test/Transforms/InstCombine/ |
D | 2003-07-21-ExternalConstant.ll | 5 ; This regression test helps check whether the instruction combining
|
D | 2008-11-08-FCmp.ll | 4 ; When inst combining an FCMP with the LHS coming from a uitofp instruction, we
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/ |
D | expand-isel-8.mir | 1 # This file tests combining three consecutive ISELs scenario.
|
/external/deqp/doc/testspecs/GLES3/ |
D | functional.texture.sampler.txt | 42 have random texture parameters set. Image is then rendered combining samples
|
/external/icu/icu4c/source/test/testdata/ |
D | testnorm.txt | 48 # D802:2 # surrogates with non-zero combining classes
|
/external/llvm/test/CodeGen/ARM/ |
D | swift-vldm.ll | 6 ; micro-ops on swift and so aren't worth combining.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/ |
D | swift-vldm.ll | 6 ; micro-ops on swift and so aren't worth combining.
|