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

  /external/chromium_org/third_party/WebKit/Source/platform/text/
SurrogatePairAwareTextIterator.cpp 85 UChar normalizedCharacters[2] = { 0, 0 };
87 int32_t resultLength = unorm_normalize(m_characters, 2, UNORM_NFC, UNORM_UNICODE_3_2, &normalizedCharacters[0], 2, &uStatus);
89 return normalizedCharacters[0];
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextEncoding.cpp 105 Vector<UChar> normalizedCharacters;
110 normalizedCharacters.grow(length);
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);
119 source = normalizedCharacters.data();

Completed in 266 milliseconds