Searched defs:startOfWord (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A Dvisible_units.cpp238 VisiblePosition startOfWord(const VisiblePosition &c, EWordSide side) function in namespace:WebCore
/external/webkit/Source/WebCore/rendering/
H A DRenderText.cpp116 int32_t startOfWord = textBreakFirst(boundary); local
117 for (endOfWord = textBreakNext(boundary); endOfWord != TextBreakDone; startOfWord = endOfWord, endOfWord = textBreakNext(boundary)) {
118 if (startOfWord != 0) // Ignore first char of previous string
119 data[startOfWord - 1] = characters[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevious[startOfWord]);
120 for (int i = startOfWord + 1; i < endOfWord; i++)

Completed in 177 milliseconds