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

  /external/webkit/Source/WebCore/platform/text/
TextEncoding.cpp 90 Vector<UChar> normalizedCharacters;
95 normalizedCharacters.grow(sourceLength);
96 int32_t normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data(), length, &err);
99 normalizedCharacters.resize(normalizedLength);
100 normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data(), normalizedLength, &err);
104 source = normalizedCharacters.data();
  /external/webkit/Source/WebCore/platform/graphics/
WidthIterator.cpp 241 UChar normalizedCharacters[2] = { 0, 0 };
244 UNORM_NFC, UNORM_UNICODE_3_2, &normalizedCharacters[0], 2, &uStatus);
246 return normalizedCharacters[0];

Completed in 46 milliseconds