HomeSort by relevance Sort by last modified time
    Searched defs:ucs4 (Results 1 - 2 of 2) sorted by null

  /external/qemu/distrib/sdl-1.2.15/test/
testiconv.c 29 "UCS4",
33 char *ucs4; local
51 ucs4 = SDL_iconv_string("UCS-4", "UTF-8", buffer, SDL_strlen(buffer)+1);
52 len = (widelen(ucs4)+1)*4;
54 test[0] = SDL_iconv_string(formats[i], "UCS-4", ucs4, len);
56 if ( !test[1] || SDL_memcmp(test[1], ucs4, len) != 0 ) {
67 test[0] = SDL_iconv_string("UTF-8", "UCS-4", ucs4, len);
68 SDL_free(ucs4);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontUtilsChromiumWin.cpp 196 UScriptCode getScriptBasedOnUnicodeBlock(int ucs4)
198 UBlockCode block = ublock_getCode(ucs4);
227 UScriptCode getScript(int ucs4)
230 UScriptCode script = uscript_getScript(ucs4, &err);
234 script = getScriptBasedOnUnicodeBlock(ucs4);
340 UChar32 ucs4 = 0; local
342 U16_NEXT(characters, i, length, ucs4);
343 script = getScript(ucs4);
350 if (0xFF00 < ucs4 && ucs4 < 0xFF5F
    [all...]

Completed in 72 milliseconds