Searched refs:RightWordIfOnBoundary (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | VisibleUnits.h | 40 enum EWordSide { RightWordIfOnBoundary = false, LeftWordIfOnBoundary = true }; enumerator 43 VisiblePosition startOfWord(const VisiblePosition &, EWordSide = RightWordIfOnBoundary); 44 VisiblePosition endOfWord(const VisiblePosition &, EWordSide = RightWordIfOnBoundary);
|
D | SpellChecker.cpp | 389 …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()
|
D | VisibleSelection.cpp | 375 EWordSide side = RightWordIfOnBoundary; in setStartAndEndFromBaseAndExtentRespectingGranularity() 379 side = RightWordIfOnBoundary; in setStartAndEndFromBaseAndExtentRespectingGranularity()
|
D | VisibleUnits.cpp | 632 if (side == RightWordIfOnBoundary) { in startOfWord()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLTextFormControlElementTest.cpp | 154 return endOfWord(position, RightWordIfOnBoundary); in endOfWord()
|