HomeSort by relevance Sort by last modified time
    Searched refs:srcChar (Results 1 - 3 of 3) sorted by null

  /frameworks/native/libs/utils/
Unicode.cpp 79 static inline size_t utf32_codepoint_utf8_length(char32_t srcChar)
82 if (srcChar < 0x00000080) {
84 } else if (srcChar < 0x00000800) {
86 } else if (srcChar < 0x00010000) {
87 if ((srcChar < kUnicodeSurrogateStart) || (srcChar > kUnicodeSurrogateEnd)) {
95 else if (srcChar <= kUnicodeMaxCodepoint) {
105 static inline void utf32_codepoint_to_utf8(uint8_t* dstP, char32_t srcChar, size_t bytes)
110 case 4: *--dstP = (uint8_t)((srcChar | kByteMark) & kByteMask); srcChar >>= 6
    [all...]
  /external/icu4c/common/unicode/
unistr.h     [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp     [all...]

Completed in 180 milliseconds