Searched defs:endOfCurrentParagraph (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A DApplyBlockElementCommand.cpp110 VisiblePosition endOfCurrentParagraph = endOfParagraph(startOfSelection); local
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) argument
179 start = startOfParagraph(endOfCurrentParagraph).deepEquivalent();
180 end = endOfCurrentParagraph
240 endOfNextParagrahSplittingTextNodesIfNeeded(VisiblePosition& endOfCurrentParagraph, Position& start, Position& end) argument
[all...]
H A DIndentOutdentCommand.cpp193 VisiblePosition endOfCurrentParagraph = endOfParagraph(startOfSelection); local
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 259 milliseconds