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.cpp84 int32_t startOfWord = textBreakFirst(boundary); local
85 for (endOfWord = textBreakNext(boundary); endOfWord != TextBreakDone; startOfWord = endOfWord, endOfWord = textBreakNext(boundary)) {
86 if (startOfWord != 0) // Ignore first char of previous string
87 data[startOfWord - 1] = characters[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevious[startOfWord]);
88 for (int i = startOfWord + 1; i < endOfWord; i++)

Completed in 100 milliseconds