Home
last modified time | relevance | path

Searched refs:RightWordIfOnBoundary (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
DVisibleUnits.h40 enum EWordSide { RightWordIfOnBoundary = false, LeftWordIfOnBoundary = true }; enumerator
43 VisiblePosition startOfWord(const VisiblePosition &, EWordSide = RightWordIfOnBoundary);
44 VisiblePosition endOfWord(const VisiblePosition &, EWordSide = RightWordIfOnBoundary);
DSpellChecker.cpp389 …lection(startOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary)); in markMisspellingsAfterTypingToWord()
404 …tartOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary)), misspel… in markMisspellingsAfterTypingToWord()
695 VisiblePosition startOfLastWord = startOfWord(endOfSelection, RightWordIfOnBoundary); in updateMarkersForWordsAffectedByEditing()
696 VisiblePosition endOfLastWord = endOfWord(endOfSelection, RightWordIfOnBoundary); in updateMarkersForWordsAffectedByEditing()
699 startOfFirstWord = startOfWord(startOfSelection, RightWordIfOnBoundary); in updateMarkersForWordsAffectedByEditing()
700 endOfFirstWord = endOfWord(startOfSelection, RightWordIfOnBoundary); in updateMarkersForWordsAffectedByEditing()
712 endOfFirstWord = endOfWord(startOfFirstWord, RightWordIfOnBoundary); in updateMarkersForWordsAffectedByEditing()
721 endOfLastWord = endOfWord(startOfLastWord, RightWordIfOnBoundary); in updateMarkersForWordsAffectedByEditing()
788 …Selection(startOfWord(newStart, LeftWordIfOnBoundary), endOfWord(newStart, RightWordIfOnBoundary)); in respondToChangedSelection()
862 …Selection(startOfWord(oldStart, LeftWordIfOnBoundary), endOfWord(oldStart, RightWordIfOnBoundary)); in spellCheckOldSelection()
DVisibleSelection.cpp375 EWordSide side = RightWordIfOnBoundary; in setStartAndEndFromBaseAndExtentRespectingGranularity()
379 side = RightWordIfOnBoundary; in setStartAndEndFromBaseAndExtentRespectingGranularity()
DVisibleUnits.cpp632 if (side == RightWordIfOnBoundary) { in startOfWord()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTextFormControlElementTest.cpp154 return endOfWord(position, RightWordIfOnBoundary); in endOfWord()