Home
last modified time | relevance | path

Searched refs:SkUTF16_IsHighSurrogate (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/core/
DSkUtils.cpp323 if (SkUTF16_IsHighSurrogate(c)) in SkUTF16_CountUnichars()
343 if (SkUTF16_IsHighSurrogate(c)) in SkUTF16_CountUnichars()
362 if (SkUTF16_IsHighSurrogate(c)) in SkUTF16_NextUnichar()
382 SkASSERT(!SkUTF16_IsHighSurrogate(c)); in SkUTF16_PrevUnichar()
386 SkASSERT(SkUTF16_IsHighSurrogate(c2)); in SkUTF16_PrevUnichar()
408 SkASSERT(SkUTF16_IsHighSurrogate(dst[0])); in SkUTF16_FromUnichar()
414 SkASSERT(!SkUTF16_IsHighSurrogate(dst[0])); in SkUTF16_FromUnichar()
/external/webkit/WebCore/platform/graphics/chromium/
DGlyphPageTreeNodeLinux.cpp45 if (SkUTF16_IsHighSurrogate(buffer[bufferLength-1])) { in fill()
/external/webkit/WebCore/platform/graphics/android/
DGlyphMapAndroid.cpp44 if (SkUTF16_IsHighSurrogate(buffer[bufferLength-1])) { in fill()
/external/skia/include/core/
DSkUtils.h87 #define SkUTF16_IsHighSurrogate(c) (((c) & 0xFC00) == 0xD800) macro