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

/external/webkit/Source/WebCore/editing/
H A DCompositeEditCommand.cpp867 void CompositeEditCommand::moveParagraphWithClones(const VisiblePosition& startOfParagraphToMove, const VisiblePosition& endOfParagraphToMove, Element* blockElement, Node* outerNode) argument
873 VisiblePosition afterParagraph(endOfParagraphToMove.next());
878 Position end = endOfParagraphToMove.deepEquivalent().upstream();
910 void CompositeEditCommand::moveParagraph(const VisiblePosition& startOfParagraphToMove, const VisiblePosition& endOfParagraphToMove, const VisiblePosition& destination, bool preserveSelection, bool preserveStyle) argument
913 ASSERT(isEndOfParagraph(endOfParagraphToMove));
914 moveParagraphs(startOfParagraphToMove, endOfParagraphToMove, destination, preserveSelection, preserveStyle);
917 void CompositeEditCommand::moveParagraphs(const VisiblePosition& startOfParagraphToMove, const VisiblePosition& endOfParagraphToMove, const VisiblePosition& destination, bool preserveSelection, bool preserveStyle) argument
929 bool startAfterParagraph = comparePositions(visibleStart, endOfParagraphToMove) > 0;
934 bool endInParagraph = comparePositions(visibleEnd, endOfParagraphToMove) <= 0;
951 VisiblePosition afterParagraph(endOfParagraphToMove
[all...]

Completed in 35 milliseconds