OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
101
Vector<UChar>
normalizedCharacters
;
106
normalizedCharacters
.grow(length);
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);
115
source =
normalizedCharacters
.data();
Completed in 293 milliseconds