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

1 2 3 4 5

  /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/harfbuzz_ng/src/
hb-ot-shape-normalize-private.hh 59 hb_unicode_funcs_t *unicode; member in struct:hb_ot_shape_normalize_context_t
hb-buffer-private.hh 36 #include "hb-unicode-private.hh"
53 hb_unicode_funcs_t *unicode; /* Unicode functions */ member in struct:hb_buffer_t
90 * Always in Unicode, and ordered outward.
  /external/harfbuzz_ng/src/hb-icu-le/
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]);
  /external/icu4c/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/icu4c/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/webkit/Source/WebCore/svg/
SVGFontElement.cpp 89 String unicode = glyph->getAttribute(SVGNames::unicodeAttr); local
90 if (unicode.length())
91 m_glyphMap.add(unicode, glyph->buildGlyphIdentifier());
  /external/chromium/chrome/browser/chromeos/
system_access.cc 146 icu::UnicodeString unicode; local
147 timezone.getID(unicode);
149 UTF16ToUTF8(unicode.getBuffer(), unicode.length(), &id);
  /external/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/icu4c/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/llvm/utils/unittest/googletest/
gtest-filepath.cc 202 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); local
203 const DWORD attributes = GetFileAttributes(unicode);
204 delete [] unicode;
226 LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); local
227 const DWORD attributes = GetFileAttributes(unicode);
228 delete [] unicode;
319 LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); local
320 int result = CreateDirectory(unicode, NULL) ? 0 : -1;
321 delete [] unicode;
  /external/open-vcdiff/gtest/src/
gtest-filepath.cc 173 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); local
174 const DWORD attributes = GetFileAttributes(unicode);
175 delete [] unicode;
197 LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); local
198 const DWORD attributes = GetFileAttributes(unicode);
199 delete [] unicode;
289 LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); local
290 int result = CreateDirectory(unicode, NULL) ? 0 : -1;
291 delete [] unicode;
  /external/protobuf/gtest/src/
gtest-filepath.cc 173 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); local
174 const DWORD attributes = GetFileAttributes(unicode);
175 delete [] unicode;
197 LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); local
198 const DWORD attributes = GetFileAttributes(unicode);
199 delete [] unicode;
289 LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); local
290 int result = CreateDirectory(unicode, NULL) ? 0 : -1;
291 delete [] unicode;
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BWin.h 237 Uint16 unicode = 0; local
244 unicode = destbuf[0];
245 unicode <<= 8;
246 unicode |= destbuf[1];
248 unicode = buf[0];
252 switch (unicode) {
262 unicode = 0;
266 unicode = '\r';
272 return unicode;
  /external/regex-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/apache-harmony/support/src/test/java/tests/support/
Support_Configuration.java 221 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
222 int mode = NONE, unicode = 0, count = 0, nextChar; local
227 if (mode == UNICODE) {
230 unicode = (unicode << 4) + digit;
236 buffer.append((char) unicode);
266 mode = UNICODE;
267 unicode = count = 0;
  /external/chromium/testing/gtest/src/
gtest-filepath.cc 204 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); local
205 const DWORD attributes = GetFileAttributes(unicode);
206 delete [] unicode;
228 LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); local
229 const DWORD attributes = GetFileAttributes(unicode);
230 delete [] unicode;
321 LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); local
322 int result = CreateDirectory(unicode, NULL) ? 0 : -1;
323 delete [] unicode;
  /external/gtest/src/
gtest-filepath.cc 204 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); local
205 const DWORD attributes = GetFileAttributes(unicode);
206 delete [] unicode;
228 LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); local
229 const DWORD attributes = GetFileAttributes(unicode);
230 delete [] unicode;
321 LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); local
322 int result = CreateDirectory(unicode, NULL) ? 0 : -1;
323 delete [] unicode;
  /external/harfbuzz/tests/shaping/
main.cpp 206 unsigned short unicode[16]; member in struct:ShapeTable
212 QString str = QString::fromUtf16( s->unicode );
287 const unsigned short *uc = s->unicode;
353 while (s->unicode[0]) {
407 while (s->unicode[0]) {
519 while (s->unicode[0]) {
626 while (s->unicode[0]) {
656 while (s->unicode[0]) {
681 while (s->unicode[0]) {
718 while (s->unicode[0])
    [all...]

Completed in 850 milliseconds

1 2 3 4 5