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 631 VisiblePosition startOfWord(const VisiblePosition &c, EWordSide side)
637 // at paragraph end, the startofWord is the current position
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 128 int32_t startOfWord = boundary->first();
129 for (endOfWord = boundary->next(); endOfWord != TextBreakDone; startOfWord = endOfWord, endOfWord = boundary->next()) {
130 if (startOfWord) // Ignore first char of previous string
131 result.append(input[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevious[startOfWord]));
132 for (int i = startOfWord + 1; i < endOfWord; i++)
    [all...]

Completed in 94 milliseconds