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

  /external/webkit/Source/WebCore/editing/
ApplyBlockElementCommand.cpp 110 VisiblePosition endOfCurrentParagraph = endOfParagraph(startOfSelection);
116 while (endOfCurrentParagraph != endAfterSelection && !atEnd) {
117 if (endOfCurrentParagraph.deepEquivalent() == m_endOfLastParagraph)
120 rangeForParagraphSplittingTextNodesIfNeeded(endOfCurrentParagraph, start, end);
121 endOfCurrentParagraph = end;
125 VisiblePosition endOfNextParagraph = endOfNextParagrahSplittingTextNodesIfNeeded(endOfCurrentParagraph, start, end);
145 endOfCurrentParagraph = endOfNextParagraph;
177 void ApplyBlockElementCommand::rangeForParagraphSplittingTextNodesIfNeeded(const VisiblePosition& endOfCurrentParagraph, Position& start, Position& end)
179 start = startOfParagraph(endOfCurrentParagraph).deepEquivalent();
180 end = endOfCurrentParagraph.deepEquivalent()
    [all...]
IndentOutdentCommand.cpp 193 VisiblePosition endOfCurrentParagraph = endOfParagraph(startOfSelection);
196 while (endOfCurrentParagraph != endAfterSelection) {
197 VisiblePosition endOfNextParagraph = endOfParagraph(endOfCurrentParagraph.next());
198 if (endOfCurrentParagraph == endOfLastParagraph)
201 setEndingSelection(endOfCurrentParagraph);
212 endOfCurrentParagraph = endingSelection().end();
213 endOfNextParagraph = endOfParagraph(endOfCurrentParagraph.next());
215 endOfCurrentParagraph = endOfNextParagraph;

Completed in 165 milliseconds