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 111 int32_t normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data(), length, &err);
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/
SimpleFontDataSkia.cpp 268 int32_t normalizedLength = unorm_normalize(characters, length, UNORM_NFC, UNORM_UNICODE_3_2, &normalizedCharacters[0], length, &error);
270 if (U_FAILURE(error) || (static_cast<size_t>(normalizedLength) == length))
276 if (paint.textToGlyphs(&normalizedCharacters[0], normalizedLength * 2, 0)) {

Completed in 120 milliseconds