Searched refs:normalizedText (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
H A Ddictbe.cpp550 // Normalize the input string and put it in normalizedText.
566 UText normalizedText = UTEXT_INITIALIZER; local
567 // Needs to be declared here because normalizedText holds onto its buffer.
576 utext_openUnicodeString(&normalizedText, &inputString, &status);
590 utext_openUnicodeString(&normalizedText, &normalizedString, &status);
622 utext_setNativeIndex(&normalizedText, i);
630 fDictionary->matches(&normalizedText, maxSearchLength, lengths.elems(), count, maxSearchLength, values.elems());
638 !fHangulWordSet.contains(utext_current32(&normalizedText))){
658 utext_setNativeIndex(&normalizedText, i);
659 bool is_katakana = isKatakana(utext_current32(&normalizedText));
[all...]
/external/icu4c/common/
H A Ddictbe.cpp765 // Normalize the input string and put it in normalizedText.
784 UText normalizedText = UTEXT_INITIALIZER; local
785 // Needs to be declared here because normalizedText holds onto its buffer.
794 utext_openUnicodeString(&normalizedText, &inputString, &status);
809 utext_openUnicodeString(&normalizedText, &normalizedString, &status);
845 utext_setNativeIndex(&normalizedText, i);
853 fDictionary->matches(&normalizedText, maxSearchLength, lengths.elems(), count, maxSearchLength, values.elems());
861 !fHangulWordSet.contains(utext_current32(&normalizedText))) {
880 utext_setNativeIndex(&normalizedText, i);
881 bool is_katakana = isKatakana(utext_current32(&normalizedText));
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp2217 String normalizedText = text; local
2218 replaceCharacterInString(normalizedText, isSpaceOrNewline, " ");
2227 TextRun textRun(normalizedText, 0, 0, TextRun::AllowTrailingExpansion, direction, override, true, TextRun::NoRounding);
2248 float fontWidth = font.width(TextRun(normalizedText, 0, 0, TextRun::AllowTrailingExpansion, direction, override));

Completed in 133 milliseconds