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 123 VisiblePosition endOfCurrentParagraph = endOfParagraph(startOfSelection);
130 while (endOfCurrentParagraph != endAfterSelection && !atEnd) {
131 if (endOfCurrentParagraph.deepEquivalent() == m_endOfLastParagraph)
134 rangeForParagraphSplittingTextNodesIfNeeded(endOfCurrentParagraph, start, end);
135 endOfCurrentParagraph = VisiblePosition(end);
138 VisiblePosition endOfNextParagraph = endOfNextParagrahSplittingTextNodesIfNeeded(endOfCurrentParagraph, start, end);
156 endOfCurrentParagraph = endOfNextParagraph;
182 void ApplyBlockElementCommand::rangeForParagraphSplittingTextNodesIfNeeded(const VisiblePosition& endOfCurrentParagraph, Position& start, Position& end)
184 start = startOfParagraph(endOfCurrentParagraph).deepEquivalent();
185 end = endOfCurrentParagraph.deepEquivalent()
    [all...]
IndentOutdentCommand.cpp 201 VisiblePosition endOfCurrentParagraph = endOfParagraph(startOfSelection);
204 if (endOfCurrentParagraph == endOfLastParagraph) {
212 while (endOfCurrentParagraph != endAfterSelection) {
213 VisiblePosition endOfNextParagraph = endOfParagraph(endOfCurrentParagraph.next());
214 if (endOfCurrentParagraph == endOfLastParagraph)
217 setEndingSelection(endOfCurrentParagraph);
228 endOfCurrentParagraph = VisiblePosition(endingSelection().end());
229 endOfNextParagraph = endOfParagraph(endOfCurrentParagraph.next());
231 endOfCurrentParagraph = endOfNextParagraph;

Completed in 93 milliseconds