Searched refs:RightWordIfOnBoundary (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | VisibleUnits.h | 37 enum EWordSide { RightWordIfOnBoundary = false, LeftWordIfOnBoundary = true }; enumerator 40 VisiblePosition startOfWord(const VisiblePosition &, EWordSide = RightWordIfOnBoundary); 41 VisiblePosition endOfWord(const VisiblePosition &, EWordSide = RightWordIfOnBoundary);
|
D | SpellChecker.cpp | 374 …lection(startOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary)); in markMisspellingsAfterTypingToWord() 389 …tartOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary)), misspel… in markMisspellingsAfterTypingToWord() 680 VisiblePosition startOfLastWord = startOfWord(endOfSelection, RightWordIfOnBoundary); in updateMarkersForWordsAffectedByEditing() 681 VisiblePosition endOfLastWord = endOfWord(endOfSelection, RightWordIfOnBoundary); in updateMarkersForWordsAffectedByEditing() 684 startOfFirstWord = startOfWord(startOfSelection, RightWordIfOnBoundary); in updateMarkersForWordsAffectedByEditing() 685 endOfFirstWord = endOfWord(startOfSelection, RightWordIfOnBoundary); in updateMarkersForWordsAffectedByEditing() 697 endOfFirstWord = endOfWord(startOfFirstWord, RightWordIfOnBoundary); in updateMarkersForWordsAffectedByEditing() 706 endOfLastWord = endOfWord(startOfLastWord, RightWordIfOnBoundary); in updateMarkersForWordsAffectedByEditing() 753 …Selection(startOfWord(newStart, LeftWordIfOnBoundary), endOfWord(newStart, RightWordIfOnBoundary)); in respondToChangedSelection() 806 …Selection(startOfWord(oldStart, LeftWordIfOnBoundary), endOfWord(oldStart, RightWordIfOnBoundary)); in spellCheckOldSelection()
|
D | VisibleSelection.cpp | 301 EWordSide side = RightWordIfOnBoundary; in setStartAndEndFromBaseAndExtentRespectingGranularity() 305 side = RightWordIfOnBoundary; in setStartAndEndFromBaseAndExtentRespectingGranularity()
|
D | VisibleUnits.cpp | 634 if (side == RightWordIfOnBoundary) { in startOfWord() 709 return p.isNotNull() && p == startOfWord(p, RightWordIfOnBoundary); in isStartOfWord()
|