HomeSort by relevance Sort by last modified time
    Searched defs:unicode (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/llvm/unittests/Support/
UnicodeTest.cpp 1 //===- unittests/Support/UnicodeTest.cpp - Unicode.h tests ----------------===//
10 #include "llvm/Support/Unicode.h"
15 namespace unicode { namespace in namespace:llvm::sys
18 TEST(Unicode, columnWidthUTF8) {
57 // UTF-8 sequences longer than 4 bytes correspond to unallocated Unicode
63 TEST(Unicode, isPrintable) {
91 } // namespace unicode
  /external/llvm/include/llvm/Support/
Unicode.h 1 //===- llvm/Support/Unicode.h - Unicode character properties -*- C++ -*-=====//
10 // This file defines functions that allow querying certain properties of Unicode
22 namespace unicode { namespace in namespace:llvm::sys
32 /// of a terminal capable to output Unicode characters.
34 /// All characters from the Unicode code point range are considered printable
38 /// http://www.unicode.org/versions/Unicode6.2.0/UnicodeStandard-6.2.pdf
53 /// with a generic Unicode-capable terminal.
63 } // namespace unicode
  /external/chromium_org/third_party/re2/re2/
make_unicode_casefold.py 10 """Generate C++ table for Unicode case folding."""
12 import unicode, sys namespace
111 lowergroups, casegroups = unicode.CaseGroups()
116 raise unicode.Error("casefold group too long: %s" % (c,))
119 raise unicode.Error("bad casegroups %d -> %d" % (c[i-1], c[i]))
make_unicode_groups.py 6 """Generate C++ tables for Unicode Script and Category groups."""
9 import unicode namespace
97 for name, codes in unicode.Categories().iteritems():
99 for name, codes in unicode.Scripts().iteritems():
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-normalize-private.hh 57 hb_unicode_funcs_t *unicode; member in struct:hb_ot_shape_normalize_context_t
hb-fallback-shape.cc 114 hb_unicode_funcs_t *unicode = buffer->unicode; local
120 if (has_space && unicode->is_default_ignorable (info[i].codepoint)) {
  /external/harfbuzz_ng/src/
hb-ot-shape-normalize-private.hh 57 hb_unicode_funcs_t *unicode; member in struct:hb_ot_shape_normalize_context_t
hb-fallback-shape.cc 114 hb_unicode_funcs_t *unicode = buffer->unicode; local
120 if (has_space && unicode->is_default_ignorable (info[i].codepoint)) {
  /external/llvm/lib/Support/
Unicode.cpp 1 //===- llvm/Support/Unicode.cpp - Unicode character properties -*- C++ -*-===//
11 // Unicode characters.
15 #include "llvm/Support/Unicode.h"
21 namespace unicode { namespace in namespace:llvm::sys
220 /// with a generic Unicode-capable terminal.
234 // http://www.unicode.org/versions/Unicode6.2.0/UnicodeStandard-6.2.pdf
364 } // namespace unicode
  /external/fonttools/Lib/fontTools/misc/
py23.py 11 unicode
13 unicode = str variable
  /external/chromium_org/remoting/host/linux/
unicode_to_keysym.cc 37 uint32_t unicode; member in struct:remoting::__anon15063::CodePair
41 // binary search. There might be multiple present keysyms for the same unicode
43 // have 1-to-1 mapping between keysym and unicode), but includes some
    [all...]
  /external/chromium_org/third_party/icu/source/samples/layout/
cmaps.cpp 129 LEUnicode16 unicode = (LEUnicode16) unicode32; local
134 if (SWAPU16(fStartCodes[fRangeShift]) <= unicode) {
141 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
146 if (unicode >= SWAPU16(fStartCodes[index]) && unicode <= SWAPU16(fEndCodes[index])) {
148 result = (TTGlyphID) unicode;
150 le_uint16 offset = unicode - SWAPU16(fStartCodes[index]);
  /external/icu/icu4c/source/samples/layout/
cmaps.cpp 129 LEUnicode16 unicode = (LEUnicode16) unicode32; local
134 if (SWAPU16(fStartCodes[fRangeShift]) <= unicode) {
141 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
146 if (unicode >= SWAPU16(fStartCodes[index]) && unicode <= SWAPU16(fEndCodes[index])) {
148 result = (TTGlyphID) unicode;
150 le_uint16 offset = unicode - SWAPU16(fStartCodes[index]);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontElement.cpp 72 const String& unicode = ligatures[i]; local
74 unsigned unicodeLength = unicode.length();
78 String lookupString = unicode.substring(i, 1);
161 AtomicString unicode = glyph.fastGetAttribute(SVGNames::unicodeAttr); local
163 if (glyphId.isEmpty() && unicode.isEmpty())
166 m_glyphMap.addGlyph(glyphId, unicode, glyph.buildGlyphIdentifier());
169 if (unicode.length() > 1 && !U16_IS_SURROGATE(unicode[0]))
170 ligatures.append(unicode.string());
  /external/chromium_org/third_party/freetype/include/freetype/internal/services/
svpscmap.h 32 * Adobe glyph name to unicode value.
51 * Simple unicode -> glyph index charmap built from font glyph names
56 FT_UInt32 unicode; /* bit 31 set: is glyph variant */ member in struct:PS_UniMap_
99 FT_UInt32 unicode );
103 FT_UInt32 *unicode );
  /external/chromium_org/third_party/icu/source/test/intltest/
convtest.h 22 #include "unicode/utypes.h"
26 #include "unicode/ucnv.h"
40 const UChar *unicode; member in struct:ConversionCase
44 /* UTF-8 version of unicode[unicodeLength] */
  /external/chromium_org/third_party/icu/source/test/letest/
FontObject.cpp 137 printf("Can't find unicode 'cmap'");
159 LEUnicode16 unicode = (LEUnicode16) unicode32; local
164 if (SWAPW(cmStartCodes[cmRangeShift]) <= unicode) {
171 if (SWAPW(cmStartCodes[index + probe]) <= unicode) {
176 if (unicode >= SWAPW(cmStartCodes[index]) && unicode <= SWAPW(cmEndCodes[index])) {
178 result = (LEGlyphID) unicode;
180 le_uint16 offset = unicode - SWAPW(cmStartCodes[index]);
cmaps.cpp 72 case 1: // Unicode BMP (UCS-2)
73 case 10: // Unicode UCS-4
97 case 0: // Unicode platform
170 LEUnicode16 unicode = (LEUnicode16) unicode32; local
175 if (SWAPU16(fStartCodes[fRangeShift]) <= unicode) {
182 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
187 if (unicode >= SWAPU16(fStartCodes[index]) && unicode <= SWAPU16(fEndCodes[index])) {
189 result = (TTGlyphID) unicode;
191 le_uint16 offset = unicode - SWAPU16(fStartCodes[index])
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/leperf/
FontObject.cpp 137 printf("Can't find unicode 'cmap'");
159 LEUnicode16 unicode = (LEUnicode16) unicode32; local
164 if (SWAPW(cmStartCodes[cmRangeShift]) <= unicode) {
171 if (SWAPW(cmStartCodes[index + probe]) <= unicode) {
176 if (unicode >= SWAPW(cmStartCodes[index]) && unicode <= SWAPW(cmEndCodes[index])) {
178 result = (LEGlyphID) unicode;
180 le_uint16 offset = unicode - SWAPW(cmStartCodes[index]);
cmaps.cpp 72 case 1: // Unicode BMP (UCS-2)
73 case 10: // Unicode UCS-4
97 case 0: // Unicode platform
170 LEUnicode16 unicode = (LEUnicode16) unicode32; local
175 if (SWAPU16(fStartCodes[fRangeShift]) <= unicode) {
182 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
187 if (unicode >= SWAPU16(fStartCodes[index]) && unicode <= SWAPU16(fEndCodes[index])) {
189 result = (TTGlyphID) unicode;
191 le_uint16 offset = unicode - SWAPU16(fStartCodes[index])
    [all...]
  /external/chromium_org/third_party/markupsafe/
_speedups.c 139 /* otherwise make the object unicode if it isn't, then escape */
143 PyObject *unicode = PyObject_Unicode(text); local
145 PyObject *unicode = PyObject_Str(text);
147 if (!unicode)
149 s = escape_unicode((PyUnicodeObject*)unicode);
150 Py_DECREF(unicode);
155 /* convert the unicode string into a markup object. */
196 "Make a string unicode if it isn't already. That way a markup\n"
197 "string is not converted back to unicode."},
  /external/chromium_org/third_party/re2/re2/testing/
unicode_test.py 7 """Unittest for the util/regexp/re2/unicode.py module."""
13 from google3.util.regexp.re2 import unicode namespace
16 "unicode", "ucd-5.1.0")
23 self.assertEquals(0x0000, unicode._UInt("0000"))
24 self.assertEquals(0x263A, unicode._UInt("263A"))
25 self.assertEquals(0x10FFFF, unicode._UInt("10FFFF"))
26 self.assertRaises(unicode.InputError, unicode._UInt, "263")
27 self.assertRaises(unicode.InputError, unicode._UInt, "263AAAA"
    [all...]
  /external/chromium_org/ui/events/x/
keysym_to_unicode.cc 47 uint16_t unicode; member in struct:ui::__anon21413
80 // Latin 1 KeySyms map 1:1 to Unicode
202 // Latin 8 KeySyms map 1:1 to Unicode
275 // Arabic KeySyms partially map 1:1 to Unicode
325 // Cyrillic KeySyms partially map 1:1 to Unicode
822 uint32_t unicode = static_cast<uint32_t>(keysym & 0x1fffff); local
    [all...]
  /external/freetype/include/internal/services/
svpscmap.h 32 * Adobe glyph name to unicode value.
51 * Simple unicode -> glyph index charmap built from font glyph names
56 FT_UInt32 unicode; /* bit 31 set: is glyph variant */ member in struct:PS_UniMap_
99 FT_UInt32 unicode );
103 FT_UInt32 *unicode );
  /external/icu/icu4c/source/test/intltest/
convtest.h 22 #include "unicode/utypes.h"
26 #include "unicode/ucnv.h"
40 const UChar *unicode; member in struct:ConversionCase
44 /* UTF-8 version of unicode[unicodeLength] */

Completed in 687 milliseconds

1 2 3 4