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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
ApplyBlockElementCommand.cpp 124 VisiblePosition endOfCurrentParagraph = endOfParagraph(startOfSelection);
131 while (endOfCurrentParagraph != endAfterSelection && !atEnd) {
132 if (endOfCurrentParagraph.deepEquivalent() == m_endOfLastParagraph)
135 rangeForParagraphSplittingTextNodesIfNeeded(endOfCurrentParagraph, start, end);
136 endOfCurrentParagraph = VisiblePosition(end);
139 VisiblePosition endOfNextParagraph = endOfNextParagrahSplittingTextNodesIfNeeded(endOfCurrentParagraph, start, end);
157 endOfCurrentParagraph = endOfNextParagraph;
183 void ApplyBlockElementCommand::rangeForParagraphSplittingTextNodesIfNeeded(const VisiblePosition& endOfCurrentParagraph, Position& start, Position& end)
185 start = startOfParagraph(endOfCurrentParagraph).deepEquivalent();
186 end = endOfCurrentParagraph.deepEquivalent()
    [all...]
IndentOutdentCommand.cpp 208 VisiblePosition endOfCurrentParagraph = endOfParagraph(startOfSelection);
211 if (endOfCurrentParagraph == endOfLastParagraph) {
219 while (endOfCurrentParagraph != endAfterSelection) {
220 VisiblePosition endOfNextParagraph = endOfParagraph(endOfCurrentParagraph.next());
221 if (endOfCurrentParagraph == endOfLastParagraph)
224 setEndingSelection(endOfCurrentParagraph);
235 endOfCurrentParagraph = VisiblePosition(endingSelection().end());
236 endOfNextParagraph = endOfParagraph(endOfCurrentParagraph.next());
238 endOfCurrentParagraph = endOfNextParagraph;

Completed in 326 milliseconds