OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:normalizedCharacters
(Results
1 - 3
of
3
) 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();
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
SimpleFontDataSkia.cpp
283
Vector<UChar, 4>
normalizedCharacters
(length);
284
int32_t normalizedLength = unorm_normalize(characters, length, UNORM_NFC, UNORM_UNICODE_3_2, &
normalizedCharacters
[0], length, &error);
292
if (paint.textToGlyphs(&
normalizedCharacters
[0], normalizedLength * 2, 0)) {
Completed in 114 milliseconds