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

1 2 3 4 5 6 7 8 910

  /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/qemu/distrib/sdl-1.2.15/include/
SDL_keyboard.h 45 * - The 'unicode' translated character is only available when character
47 * this is a UNICODE character corresponding to the keypress. If the
52 * if ( (keysym.unicode & 0xFF80) == 0 ) {
53 * ch = keysym.unicode & 0x7F;
63 Uint16 unicode; /**< translated character */ member in struct:SDL_keysym
71 * Enable/Disable UNICODE translation of keyboard input.
  /external/regex-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():
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_keyboard.h 45 * - The 'unicode' translated character is only available when character
47 * this is a UNICODE character corresponding to the keypress. If the
52 * if ( (keysym.unicode & 0xFF80) == 0 ) {
53 * ch = keysym.unicode & 0x7F;
63 Uint16 unicode; /**< translated character */ member in struct:SDL_keysym
71 * Enable/Disable UNICODE translation of keyboard input.
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_keyboard.h 45 * - The 'unicode' translated character is only available when character
47 * this is a UNICODE character corresponding to the keypress. If the
52 * if ( (keysym.unicode & 0xFF80) == 0 ) {
53 * ch = keysym.unicode & 0x7F;
63 Uint16 unicode; /**< translated character */ member in struct:SDL_keysym
71 * Enable/Disable UNICODE translation of keyboard input.
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_keyboard.h 45 * - The 'unicode' translated character is only available when character
47 * this is a UNICODE character corresponding to the keypress. If the
52 * if ( (keysym.unicode & 0xFF80) == 0 ) {
53 * ch = keysym.unicode & 0x7F;
63 Uint16 unicode; /**< translated character */ member in struct:SDL_keysym
71 * Enable/Disable UNICODE translation of keyboard input.
  /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]);

Completed in 2678 milliseconds

1 2 3 4 5 6 7 8 910