HomeSort by relevance Sort by last modified time
    Searched defs:startOfWord (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/editing/
visible_units.cpp 238 VisiblePosition startOfWord(const VisiblePosition &c, EWordSide side)
244 // at paragraph end, the startofWord is the current position
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderText.cpp 84 int32_t startOfWord = textBreakFirst(boundary);
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++)
    [all...]

Completed in 126 milliseconds