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

1 2 3

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
DeadKeyCombiner.java 70 * Maps Unicode combining diacritical to display-form dead key.
75 // U+0300: COMBINING GRAVE ACCENT
77 // U+0301: COMBINING ACUTE ACCENT
79 // U+0302: COMBINING CIRCUMFLEX ACCENT
81 // U+0303: COMBINING TILDE
83 // U+0304: COMBINING MACRON
85 // U+0306: COMBINING BREVE
87 // U+0307: COMBINING DOT ABOVE
89 // U+0308: COMBINING DIAERESIS
91 // U+0309: COMBINING HOOK ABOV
283 final int combining = Data.sAccentToCombining.get(deadCodePoint); local
    [all...]
  /frameworks/base/core/java/android/view/
KeyCharacterMap.java 185 * Maps Unicode combining diacritical to display-form dead key.
234 private static void addCombining(int combining, int accent) {
235 sCombiningToAccent.append(combining, accent);
236 sAccentToCombining.append(accent, combining);
240 * Maps combinations of (display-form) combining key and second character
266 final int combining = sAccentToCombining.get(accent); local
267 if (combining == 0) {
270 final int combination = (combining << 16) | c;
363 * @return The associated character or combining accent, or 0 if none.
479 * Get the character that is produced by combining the dead key producing accen
496 int combining = sAccentToCombining.get(accent); local
    [all...]
  /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')
  /prebuilts/gdb/darwin-x86/lib/python2.7/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')
  /prebuilts/gdb/linux-x86/lib/python2.7/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')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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')
  /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:__anon5550
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:__anon5894
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:__anon30403
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...]
  /external/libvterm/src/
unicode.c 6 // moved 'combining' table to file scope, so other functions can see it
79 static const struct interval combining[] = { variable in typeref:struct:interval
160 * - Non-spacing and enclosing combining characters (general
194 if (bisearch(ucs, combining,
195 sizeof(combining) / sizeof(struct interval) - 1))
198 /* if we arrive here, ucs is not a combining or C0/C1 control character */
331 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:__anon19928
198 return get_ucd_record(code)->combining;
  /prebuilts/go/darwin-x86/src/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)
86 // boundaries for the combining variants.
158 // CCC returns the canonical combining class of the underlying rune.
composition.go 190 // insertOrdered inserts a rune in the buffer, ordered by Canonical Combining Class.
278 // insertCGJ inserts a Combining Grapheme Joiner (0x034f) into rb.
429 // See http://unicode.org/reports/tr15/#Hangul for details on combining Hangul.
474 // combining class as C."
  /prebuilts/go/linux-x86/src/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)
86 // boundaries for the combining variants.
158 // CCC returns the canonical combining class of the underlying rune.
composition.go 190 // insertOrdered inserts a rune in the buffer, ordered by Canonical Combining Class.
278 // insertCGJ inserts a Combining Grapheme Joiner (0x034f) into rb.
429 // See http://unicode.org/reports/tr15/#Hangul for details on combining Hangul.
474 // combining class as C."
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
asm_test.go 127 // Load-combining tests.
  /prebuilts/go/darwin-x86/src/hash/crc32/
crc32_amd64.go 96 // combining calculation is different; the complete derivation is explained
112 // Combining the results requires precomputed tables, so we must choose a
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
asm_test.go 127 // Load-combining tests.
  /prebuilts/go/linux-x86/src/hash/crc32/
crc32_amd64.go 96 // combining calculation is different; the complete derivation is explained
112 // Combining the results requires precomputed tables, so we must choose a
  /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...]

Completed in 1213 milliseconds

1 2 3