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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisibleUnits.cpp 628 VisiblePosition startOfWord(const VisiblePosition &c, EWordSide side)
634 // at paragraph end, the startofWord is the current position
708 return p.isNotNull() && p == startOfWord(p, RightWordIfOnBoundary);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 123 int32_t startOfWord = textBreakFirst(boundary);
124 for (endOfWord = textBreakNext(boundary); endOfWord != TextBreakDone; startOfWord = endOfWord, endOfWord = textBreakNext(boundary)) {
125 if (startOfWord) // Ignore first char of previous string
126 result.append(input[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevious[startOfWord]));
127 for (int i = startOfWord + 1; i < endOfWord; i++)
    [all...]

Completed in 630 milliseconds