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

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextEncoding.cpp 107 int32_t normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data(), length, &err);
110 normalizedCharacters.resize(normalizedLength);
111 normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data(), normalizedLength, &err);
116 length = normalizedLength;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
SimpleFontDataSkia.cpp 284 int32_t normalizedLength = unorm_normalize(characters, length, UNORM_NFC, UNORM_UNICODE_3_2, &normalizedCharacters[0], length, &error);
286 if (U_FAILURE(error) || (static_cast<size_t>(normalizedLength) == length))
292 if (paint.textToGlyphs(&normalizedCharacters[0], normalizedLength * 2, 0)) {

Completed in 74 milliseconds