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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisibleUnits.h 40 VisiblePosition startOfWord(const VisiblePosition &, EWordSide = RightWordIfOnBoundary);
SpellChecker.cpp 346 VisibleSelection adjacentWords = VisibleSelection(startOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary));
361 markMisspellings(VisibleSelection(startOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary)), misspellingRange);
649 VisiblePosition startOfFirstWord = startOfWord(startOfSelection, LeftWordIfOnBoundary);
652 VisiblePosition startOfLastWord = startOfWord(endOfSelection, RightWordIfOnBoundary);
656 startOfFirstWord = startOfWord(startOfSelection, RightWordIfOnBoundary);
661 startOfLastWord = startOfWord(endOfSelection, LeftWordIfOnBoundary);
    [all...]
TypingCommand.cpp 307 VisiblePosition p1 = startOfWord(previous, LeftWordIfOnBoundary);
308 VisiblePosition p2 = startOfWord(start, LeftWordIfOnBoundary);
VisibleSelection.cpp 364 m_start = startOfWord(start, side).deepEquivalent();
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...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Range.cpp     [all...]

Completed in 547 milliseconds