Searched refs:normalizedLength (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextEncoding.cpp111 int32_t normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data(), length, &err); local
114 normalizedCharacters.resize(normalizedLength);
115 normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data(), normalizedLength, &err);
120 length = normalizedLength;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
H A DSimpleFontDataSkia.cpp266 int32_t normalizedLength = unorm_normalize(characters, length, UNORM_NFC, UNORM_UNICODE_3_2, &normalizedCharacters[0], length, &error); local
268 if (U_FAILURE(error) || (static_cast<size_t>(normalizedLength) == length))
274 if (paint.textToGlyphs(&normalizedCharacters[0], normalizedLength * 2, 0)) {

Completed in 123 milliseconds