HomeSort by relevance Sort by last modified time
    Searched defs:unicode (Results 1 - 25 of 232) 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
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
BoundedByteStringTest.java 58 String testString = "I love unicode \u1234\u5678 characters";
59 LiteralByteString unicode = new LiteralByteString(testString.getBytes(UTF_8)); local
60 ByteString chopped = unicode.substring(2, unicode.size() - 6);
65 assertEquals(classUnderTest + " unicode bytes must match",
RopeByteStringSubstringTest.java 70 String sourceString = "I love unicode \u1234\u5678 characters";
76 ByteString unicode = ByteString.EMPTY; local
79 unicode = RopeByteString.concatenate(unicode, sourceByteString);
85 unicode = unicode.substring(2, unicode.size() - 6);
88 classUnderTest, getActualClassName(unicode));
89 String roundTripString = unicode.toString(UTF_8);
90 assertEquals(classUnderTest + " unicode bytes must match"
    [all...]
RopeByteStringTest.java 92 String sourceString = "I love unicode \u1234\u5678 characters";
98 ByteString unicode = ByteString.EMPTY; local
101 unicode = RopeByteString.concatenate(unicode, sourceByteString);
106 classUnderTest, getActualClassName(unicode));
107 String roundTripString = unicode.toString(UTF_8);
108 assertEquals(classUnderTest + " unicode bytes must match",
111 assertEquals(classUnderTest + " string must equal the flat string", flatString, unicode);
113 flatString.hashCode(), unicode.hashCode());
  /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::__anon14429::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/test/letest/
cmaps.cpp 123 LEUnicode16 unicode = (LEUnicode16) unicode32; local
128 if (SWAPU16(fStartCodes[fRangeShift]) <= unicode) {
135 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
140 if (unicode >= SWAPU16(fStartCodes[index]) && unicode <= SWAPU16(fEndCodes[index])) {
142 result = (TTGlyphID) unicode;
144 le_uint16 offset = unicode - SWAPU16(fStartCodes[index]);
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]);
  /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 74 const String& unicode = ligatures[i]; local
76 unsigned unicodeLength = unicode.length();
80 String lookupString = unicode.substring(i, 1);
163 AtomicString unicode = glyph.fastGetAttribute(SVGNames::unicodeAttr); local
165 if (glyphId.isEmpty() && unicode.isEmpty())
168 m_glyphMap.addGlyph(glyphId, unicode, glyph.buildGlyphIdentifier());
171 if (unicode.length() > 1 && !U16_IS_SURROGATE(unicode[0]))
172 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] */

Completed in 583 milliseconds

1 2 3 4 5 6 7 8 910