Searched refs:breakNode (Results 1 – 3 of 3) sorted by relevance
/external/webkit/WebCore/editing/ |
D | BreakBlockquoteCommand.cpp | 77 RefPtr<Element> breakNode = createBreakElement(document()); in doApply() local 84 insertNodeBefore(breakNode.get(), topBlockquote); in doApply() 85 setEndingSelection(VisibleSelection(Position(breakNode.get(), 0), DOWNSTREAM)); in doApply() 91 insertNodeAfter(breakNode.get(), topBlockquote); in doApply() 95 setEndingSelection(VisibleSelection(Position(breakNode.get(), 0), DOWNSTREAM)); in doApply() 139 insertNodeAfter(clonedBlockquote.get(), breakNode.get()); in doApply() 201 setEndingSelection(VisibleSelection(Position(breakNode.get(), 0), DOWNSTREAM)); in doApply()
|
D | CompositeEditCommand.cpp | 1195 RefPtr<Element> breakNode = document->createElement(brTag, false); in createBlockPlaceholderElement() local 1196 return breakNode.release(); in createBlockPlaceholderElement()
|
/external/webkit/WebCore/rendering/ |
D | RenderTextControl.cpp | 351 static void getNextSoftBreak(RootInlineBox*& line, Node*& breakNode, unsigned& breakOffset) in getNextSoftBreak() argument 358 breakNode = line->lineBreakObj()->node(); in getNextSoftBreak() 364 breakNode = 0; in getNextSoftBreak() 386 Node* breakNode; in textWithHardLineBreaks() local 389 getNextSoftBreak(line, breakNode, breakOffset); in textWithHardLineBreaks() 401 while (breakNode == n && breakOffset <= length) { in textWithHardLineBreaks() 407 getNextSoftBreak(line, breakNode, breakOffset); in textWithHardLineBreaks() 411 while (breakNode == n) in textWithHardLineBreaks() 412 getNextSoftBreak(line, breakNode, breakOffset); in textWithHardLineBreaks()
|