HomeSort by relevance Sort by last modified time
    Searched defs:unicode (Results 51 - 75 of 232) sorted by null

1 23 4 5 6 7 8 910

  /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;
  /external/skia/src/sfnt/
SkOTTable_name.h 40 ((Unicode, SkTEndian_SwapBE16(0)))
42 ((ISO, SkTEndian_SwapBE16(2))) // Deprecated, use Unicode instead.
53 struct Unicode {
64 } unicode; member in union:SkOTTableName::Record::EncodingID
66 /** These are Mac encodings, see http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/
67 * for their mappings to unicode.
109 /** Deprecated, use Unicode instead. */
  /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;
  /ndk/sources/third_party/googletest/googletest/src/
gtest-filepath.cc 206 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); local
207 const DWORD attributes = GetFileAttributes(unicode);
208 delete [] unicode;
230 LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); local
231 const DWORD attributes = GetFileAttributes(unicode);
232 delete [] unicode;
323 LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); local
324 int result = CreateDirectory(unicode, NULL) ? 0 : -1;
325 delete [] unicode;
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape.cc 230 _hb_glyph_info_set_unicode_props (&buffer->info[i], buffer->unicode);
246 _hb_glyph_info_set_unicode_props (&dottedcircle, buffer->unicode);
297 hb_unicode_funcs_t *unicode = buffer->unicode; local
303 hb_codepoint_t codepoint = unicode->mirroring (info[i].codepoint);
701 hb_unicode_funcs_t *unicode,
711 hb_codepoint_t m = unicode->mirroring (u);
735 add_char (font, buffer->unicode, mirror, buffer->info[i].codepoint, glyphs);
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_reader.cpp 714 unsigned int unicode; local
715 if ( !decodeUnicodeCodePoint( token, current, end, unicode ) )
717 decoded += codePointToUTF8(unicode);
736 unsigned int &unicode )
739 if ( !decodeUnicodeEscapeSequence( token, current, end, unicode ) )
741 if (unicode >= 0xD800 && unicode <= 0xDBFF)
745 return addError( "additional six characters expected to parse unicode surrogate pair.", token, current );
751 unicode = 0x10000 + ((unicode & 0x3FF) << 10) + (surrogatePair & 0x3FF)
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
LiteralByteStringTest.java 293 String testString = "I love unicode \u1234\u5678 characters";
294 LiteralByteString unicode = new LiteralByteString(testString.getBytes(UTF_8)); local
295 String roundTripString = unicode.toString(UTF_8);
296 assertEquals(classUnderTest + " unicode must match", testString, roundTripString);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer.cc 897 // Helper to append a Unicode code point to a string as UTF8, without bringing
947 // surrogate. These numbers are in a reserved range of Unicode code points, so
964 // Combine a head and trail surrogate into a single Unicode code point.
979 // Given a pointer to the 'u' or 'U' starting a Unicode escape sequence, attempt
1067 uint32 unicode; local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape.cc 40 #include "hb-unicode-private.hh"
232 _hb_glyph_info_set_unicode_props (&info[i], buffer->unicode);
248 _hb_glyph_info_set_unicode_props (&dottedcircle, buffer->unicode);
300 hb_unicode_funcs_t *unicode = buffer->unicode; local
306 hb_codepoint_t codepoint = unicode->mirroring (info[i].codepoint);
748 hb_unicode_funcs_t *unicode,
758 hb_codepoint_t m = unicode->mirroring (u);
783 add_char (font, buffer->unicode, mirror, info[i].codepoint, glyphs);
  /external/jsoncpp/src/lib_json/
json_reader.cpp 704 unsigned int unicode; local
705 if ( !decodeUnicodeCodePoint( token, current, end, unicode ) )
707 decoded += codePointToUTF8(unicode);
726 unsigned int &unicode )
729 if ( !decodeUnicodeEscapeSequence( token, current, end, unicode ) )
731 if (unicode >= 0xD800 && unicode <= 0xDBFF)
735 return addError( "additional six characters expected to parse unicode surrogate pair.", token, current );
741 unicode = 0x10000 + ((unicode & 0x3FF) << 10) + (surrogatePair & 0x3FF)
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_decode.cpp 415 FX_WORD unicode = bBE ? (uni_str[i] << 8 | uni_str[i + 1]) : (uni_str[i + 1] << 8 | uni_str[i]); local
416 if (unicode == 0x1b) {
419 FX_WORD unicode = bBE ? (uni_str[i] << 8 | uni_str[i + 1]) : (uni_str[i + 1] << 8 | uni_str[i]); local
421 if (unicode == 0x1b) {
426 dest_buf[dest_pos++] = unicode;
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11events.c 149 return 0; /* The given chunk is not a valid UTF-8 encoded Unicode character */
209 (i.e., characters whose Unicode scalar value above 0x110000).
279 corresponds to a Unicode scalar value in BMP.
572 keysym.unicode = 0;
670 keysym.unicode = utf16data[i];
680 keysym.unicode = utf16data[utf16length - 1];
700 keysym.unicode = 0;
733 keysym.unicode = 0;
741 * unicode value)
743 keysym.unicode = (Uint8)keybuf[0]
1256 Uint16 unicode; local
    [all...]
  /system/core/libutils/
Unicode.cpp 17 #include <utils/Unicode.h>
94 // Max code point for Unicode is 0x0010FFFF.
492 uint32_t unicode; local
499 unicode = src[0] & 0x1f;
500 utf8_shift_and_mask(&unicode, src[1]);
501 return unicode;
503 unicode = src[0] & 0x0f;
504 utf8_shift_and_mask(&unicode, src[1]);
505 utf8_shift_and_mask(&unicode, src[2]);
506 return unicode;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTokenizer-in.cpp 404 unsigned unicode = 0; local
412 unicode = (unicode << 4) + toASCIIHexValue(*src++);
416 if (unicode > 0x10ffff)
417 unicode = 0xfffd;
423 return unicode;
430 inline void CSSTokenizer::UnicodeToChars<LChar>(LChar*& result, unsigned unicode)
432 ASSERT(unicode <= 0xff);
433 *result = unicode;
439 inline void CSSTokenizer::UnicodeToChars<UChar>(UChar*& result, unsigned unicode)
480 unsigned unicode = parseEscape<SrcCharacterType>(src); local
554 unsigned unicode = parseEscape<SrcCharacterType>(src); local
657 unsigned unicode = parseEscape<SrcCharacterType>(src); local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
convtest.cpp 19 #include "unicode/utypes.h"
24 * is slightly unnecessary - it removes tests for Unicode charsets
27 * is for a Unicode charset, so it would be difficult to only exclude those.
32 #include "unicode/ucnv.h"
33 #include "unicode/unistr.h"
34 #include "unicode/parsepos.h"
35 #include "unicode/uniset.h"
36 #include "unicode/ustring.h"
37 #include "unicode/ures.h"
39 #include "unicode/tstdtmod.h
91 UnicodeString s, unicode; local
203 UnicodeString s, unicode, invalidUChars; local
    [all...]
testidna.cpp 17 #include "unicode/utypes.h"
25 #include "unicode/localpointer.h"
26 #include "unicode/ustring.h"
27 #include "unicode/usprep.h"
28 #include "unicode/uniset.h"
32 #include "unicode/putil.h"
239 UChar unicode[100]; member in struct:ErrorCases
304 /* correct ACE-prefix followed by unicode */
    [all...]
  /external/harfbuzz_ng/test/api/
test-unicode.c 31 /* Unit tests for hb-unicode.h */
108 hb_codepoint_t unicode; member in struct:__anon25502
151 /* Unicode-5.1 character additions */
154 /* Unicode-5.2 character additions */
157 /* Unicode-6.0 character additions */
264 /* Unicode-5.2 character additions */
267 /* Unicode-6.0 character additions */
308 /* No new mirroring characters have been encoded in recent Unicode versions. */
361 /* Unicode-4.0 additions */
371 /* Unicode-4.1 additions *
    [all...]
  /external/icu/icu4c/source/test/intltest/
convtest.cpp 19 #include "unicode/utypes.h"
24 * is slightly unnecessary - it removes tests for Unicode charsets
27 * is for a Unicode charset, so it would be difficult to only exclude those.
32 #include "unicode/ucnv.h"
33 #include "unicode/unistr.h"
34 #include "unicode/parsepos.h"
35 #include "unicode/uniset.h"
36 #include "unicode/ustring.h"
37 #include "unicode/ures.h"
39 #include "unicode/tstdtmod.h
91 UnicodeString s, unicode; local
212 UnicodeString s, unicode, invalidUChars; local
    [all...]
testidna.cpp 17 #include "unicode/utypes.h"
25 #include "unicode/localpointer.h"
26 #include "unicode/ustring.h"
27 #include "unicode/usprep.h"
28 #include "unicode/uniset.h"
32 #include "unicode/putil.h"
239 UChar unicode[100]; member in struct:ErrorCases
304 /* correct ACE-prefix followed by unicode */
    [all...]
  /external/pdfium/core/src/reflow/
autoreflow.cpp 316 FX_WCHAR unicode = str.GetAt(0); local
317 if(unicode == 32) {
337 FX_WCHAR unicode = str.GetAt(0); local
338 if(unicode > 96 && unicode < 123) {
363 FX_WCHAR unicode = str.GetAt(0); local
364 if(unicode > 255) {
382 FX_WCHAR unicode = str.GetAt(0); local
383 if(unicode > 96 && unicode < 123)
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiInfo.java 294 String unicode = mWifiSsid.toString(); local
295 if (!TextUtils.isEmpty(unicode)) {
296 return "\"" + unicode + "\"";
  /libcore/luni/src/main/java/java/util/
Properties.java 57 * ISO-8859-1 is only capable of representing a tiny subset of Unicode.
86 private static final int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3,
269 * "\!", "\#", "\t", "\b", "\f", and "&#92;uXXXX" (unicode character).</li>
281 int mode = NONE, unicode = 0, count = 0; local
300 if (mode == UNICODE) {
303 unicode = (unicode << 4) + digit;
308 throw new IllegalArgumentException("Invalid Unicode sequence: illegal character");
311 buf[offset++] = (char) unicode;
341 mode = UNICODE;
    [all...]
  /bionic/libc/kernel/uapi/linux/
kd.h 77 unsigned short unicode; member in struct:unipair
  /development/ndk/platforms/android-3/include/linux/
kd.h 71 unsigned short unicode; member in struct:unipair

Completed in 953 milliseconds

1 23 4 5 6 7 8 910