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

1 2 3 4

  /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/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/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/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...]
  /external/llvm/utils/unittest/googletest/
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/qemu/android/skin/
keyboard.c 32 ** implement the Unicode keyboard mode (SDL key up event always have
33 ** their .unicode field set to 0
36 int unicode; /* Unicode of last pressed key */ member in struct:__anon11820
141 int unicode )
148 k->unicode = unicode;
315 /* this gets called only if the reverse unicode mapping didn't work
406 skin_keyboard_process_unicode_event( SkinKeyboard* kb, unsigned int unicode, int down )
408 return android_charmap_reverse_map_unicode(kb->charmap, unicode, down
428 int unicode = ev->key.keysym.unicode; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_events.c 584 keysym->unicode = 0;
590 wchar_t unicode; local
595 case 0x01: keysym->unicode = 27;
598 case 0x0E: keysym->unicode = 127;
601 case 0x1C: keysym->unicode = 10;
607 utf8len = mbtowc(&unicode, utf8, utf8len);
610 keysym->unicode = unicode;
  /frameworks/base/wifi/java/android/net/wifi/
WifiInfo.java 125 String unicode = mWifiSsid.toString(); local
126 if (!TextUtils.isEmpty(unicode)) {
127 return "\"" + unicode + "\"";
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 305 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
306 int mode = NONE, unicode = 0, count = 0, nextChar; local
311 if (mode == UNICODE) {
314 unicode = (unicode << 4) + digit;
320 buffer.append((char) unicode);
350 mode = UNICODE;
351 unicode = count = 0;
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 52 private boolean unicode; field in class:KXmlSerializer
132 if (unicode || c < 127) {
324 unicode = false;
337 unicode = true;
347 unicode = true;

Completed in 624 milliseconds

1 2 3 4