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

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
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/Lib/test/
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/cpython3/Lib/test/
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')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
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/cpython2/Tools/pybench/
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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
unicodedata.c 24 const unsigned char combining; /* combining class value 0 - 255 */ member in struct:__anon5461
306 "combining(unichr)\n\
308 Returns the canonical combining class assigned to the Unicode\n\
309 character unichr as integer. Returns 0 if no combining class is\n\
319 if (!PyArg_ParseTuple(args, "O!:combining",
325 index = (int) _getrecord_ex(c)->combining;
586 prev = _getrecord_ex(*i)->combining;
589 cur = _getrecord_ex(*i)->combining;
603 prev = _getrecord_ex(*o)->combining;
757 unsigned char combining = record->combining; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
unicodedata.c 24 const unsigned char combining; /* combining class value 0 - 255 */ member in struct:__anon5805
306 "combining(unichr)\n\
308 Returns the canonical combining class assigned to the Unicode\n\
309 character unichr as integer. Returns 0 if no combining class is\n\
319 if (!PyArg_ParseTuple(args, "O!:combining",
325 index = (int) _getrecord_ex(c)->combining;
579 prev = _getrecord_ex(*i)->combining;
582 cur = _getrecord_ex(*i)->combining;
596 prev = _getrecord_ex(*o)->combining;
750 unsigned char combining = record->combining; local
    [all...]
  /external/python/cpython2/Modules/
unicodedata.c 24 const unsigned char combining; /* combining class value 0 - 255 */ member in struct:__anon36808
306 "combining(unichr)\n\
308 Returns the canonical combining class assigned to the Unicode\n\
309 character unichr as integer. Returns 0 if no combining class is\n\
319 if (!PyArg_ParseTuple(args, "O!:combining",
325 index = (int) _getrecord_ex(c)->combining;
586 prev = _getrecord_ex(*i)->combining;
589 cur = _getrecord_ex(*i)->combining;
603 prev = _getrecord_ex(*o)->combining;
761 unsigned char combining = record->combining; local
    [all...]
  /external/python/cpython3/Modules/
unicodedata.c 33 const unsigned char combining; /* combining class value 0 - 255 */ member in struct:__anon37436
302 unicodedata.UCD.combining -> int
308 Returns the canonical combining class assigned to the character chr as integer.
310 Returns 0 if no combining class is defined.
319 index = (int) _getrecord_ex(c)->combining;
592 prev = _getrecord_ex(PyUnicode_READ(kind, data, i))->combining;
594 cur = _getrecord_ex(PyUnicode_READ(kind, data, i))->combining;
609 prev = _getrecord_ex(PyUnicode_READ(kind, data, o))->combining;
613 prev = _getrecord_ex(PyUnicode_READ(kind, data, i))->combining;
798 unsigned char combining = record->combining; local
    [all...]
  /external/libvterm/src/
unicode.c 6 // moved 'combining' table to file scope, so other functions can see it
77 static const struct interval combining[] = { variable in typeref:struct:interval
158 * - Non-spacing and enclosing combining characters (general
192 if (bisearch(ucs, combining,
193 sizeof(combining) / sizeof(struct interval) - 1))
196 /* if we arrive here, ucs is not a combining or C0/C1 control character */
336 return bisearch(codepoint, combining, sizeof(combining) / sizeof(struct interval) - 1);
  /external/harfbuzz_ng/src/hb-ucdn/
ucdn.c 24 unsigned char combining; member in struct:__anon23677
202 return get_ucd_record(code)->combining;
  /external/syzkaller/vendor/golang.org/x/text/unicode/norm/
forminfo.go 41 ccc uint8 // leading canonical combining class (ccc if not decomposition)
42 tccc uint8 // trailing canonical combining class (ccc if not decomposition)
89 // boundaries for the combining variants.
161 // CCC returns the canonical combining class of the underlying rune.
composition.go 181 // insertOrdered inserts a rune in the buffer, ordered by Canonical Combining Class.
272 // insertCGJ inserts a Combining Grapheme Joiner (0x034f) into rb.
423 // See http://unicode.org/reports/tr15/#Hangul for details on combining Hangul.
468 // combining class as C."
maketables.go 100 ccc uint8 // canonical combining class
329 // Insert a rune in a buffer, ordered by Canonical Combining Class.
402 // Phase 2: forward and backward combining.
iter.go 356 // new segment or too many combining characters: exit normalization
  /build/soong/cmd/extract_linker/
main.go 88 // instead combining the segments with the following segment,
  /build/soong/ui/status/
status.go 15 // Package status tracks actions run by various tools, combining the counts
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
makeunicodedata.py 116 combining = int(record[3])
122 category, combining, bidirectional, mirrored, eastasianwidth,
816 # [ID, name, category, combining, bidi, decomp, (6)
    [all...]
  /external/python/cpython2/Tools/unicode/
makeunicodedata.py 116 combining = int(record[3])
122 category, combining, bidirectional, mirrored, eastasianwidth,
816 # [ID, name, category, combining, bidi, decomp, (6)
    [all...]
  /external/python/cpython3/Tools/unicode/
makeunicodedata.py 149 combining = int(record[3])
155 category, combining, bidirectional, mirrored, eastasianwidth,
    [all...]
  /external/blktrace/doc/
blktrace.tex 445 of blktrace, and blkparse is combining event streams and dumping
449 blktrace by specifying \emph{-i -} to blkparse, and combining it with
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
doctest.py 806 The globals for each DocTest is formed by combining `globs`
    [all...]
  /external/python/cpython2/Lib/
doctest.py     [all...]
  /external/python/cpython3/Lib/
doctest.py     [all...]
  /external/icu/icu4c/source/i18n/
usearch.cpp     [all...]

Completed in 1916 milliseconds

1 2