startOfWord      1794 Source/core/dom/Range.cpp         start = startOfWord(start);
startOfWord       344 Source/core/editing/SpellChecker.cpp         VisibleSelection adjacentWords = VisibleSelection(startOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary));
startOfWord       359 Source/core/editing/SpellChecker.cpp     markMisspellings(VisibleSelection(startOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary)), misspellingRange);
startOfWord       647 Source/core/editing/SpellChecker.cpp     VisiblePosition startOfFirstWord = startOfWord(startOfSelection, LeftWordIfOnBoundary);
startOfWord       650 Source/core/editing/SpellChecker.cpp     VisiblePosition startOfLastWord = startOfWord(endOfSelection, RightWordIfOnBoundary);
startOfWord       654 Source/core/editing/SpellChecker.cpp         startOfFirstWord = startOfWord(startOfSelection, RightWordIfOnBoundary);
startOfWord       659 Source/core/editing/SpellChecker.cpp         startOfLastWord = startOfWord(endOfSelection, LeftWordIfOnBoundary);
startOfWord       723 Source/core/editing/SpellChecker.cpp             newAdjacentWords = VisibleSelection(startOfWord(newStart, LeftWordIfOnBoundary), endOfWord(newStart, RightWordIfOnBoundary));
startOfWord       776 Source/core/editing/SpellChecker.cpp     VisibleSelection oldAdjacentWords = VisibleSelection(startOfWord(oldStart, LeftWordIfOnBoundary), endOfWord(oldStart, RightWordIfOnBoundary));
startOfWord       307 Source/core/editing/TypingCommand.cpp         VisiblePosition p1 = startOfWord(previous, LeftWordIfOnBoundary);
startOfWord       308 Source/core/editing/TypingCommand.cpp         VisiblePosition p2 = startOfWord(start, LeftWordIfOnBoundary);
startOfWord       362 Source/core/editing/VisibleSelection.cpp             m_start = startOfWord(start, side).deepEquivalent();
startOfWord        40 Source/core/editing/VisibleUnits.h VisiblePosition startOfWord(const VisiblePosition &, EWordSide = RightWordIfOnBoundary);
startOfWord       127 Source/core/rendering/RenderText.cpp     int32_t startOfWord = boundary->first();
startOfWord       128 Source/core/rendering/RenderText.cpp     for (endOfWord = boundary->next(); endOfWord != TextBreakDone; startOfWord = endOfWord, endOfWord = boundary->next()) {
startOfWord       129 Source/core/rendering/RenderText.cpp         if (startOfWord) // Ignore first char of previous string
startOfWord       130 Source/core/rendering/RenderText.cpp             result.append(input[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevious[startOfWord]));
startOfWord       131 Source/core/rendering/RenderText.cpp         for (int i = startOfWord + 1; i < endOfWord; i++)