Home
last modified time | relevance | path

Searched refs:breakNode (Results 1 – 3 of 3) sorted by relevance

/external/webkit/WebCore/editing/
DBreakBlockquoteCommand.cpp68 RefPtr<Element> breakNode = createBreakElement(document()); in doApply() local
75 insertNodeBefore(breakNode.get(), topBlockquote); in doApply()
76 setEndingSelection(VisibleSelection(Position(breakNode.get(), 0), DOWNSTREAM)); in doApply()
82 insertNodeAfter(breakNode.get(), topBlockquote); in doApply()
86 setEndingSelection(VisibleSelection(Position(breakNode.get(), 0), DOWNSTREAM)); in doApply()
130 insertNodeAfter(clonedBlockquote.get(), breakNode.get()); in doApply()
192 setEndingSelection(VisibleSelection(Position(breakNode.get(), 0), DOWNSTREAM)); in doApply()
DCompositeEditCommand.cpp1062 RefPtr<Element> breakNode = document->createElement(brTag, false); in createBlockPlaceholderElement() local
1063 return breakNode.release(); in createBlockPlaceholderElement()
/external/webkit/WebCore/rendering/
DRenderTextControl.cpp345 static void getNextSoftBreak(RootInlineBox*& line, Node*& breakNode, unsigned& breakOffset) in getNextSoftBreak() argument
352 breakNode = line->lineBreakObj()->node(); in getNextSoftBreak()
358 breakNode = 0; in getNextSoftBreak()
380 Node* breakNode; in textWithHardLineBreaks() local
383 getNextSoftBreak(line, breakNode, breakOffset); in textWithHardLineBreaks()
395 while (breakNode == n && breakOffset <= length) { in textWithHardLineBreaks()
401 getNextSoftBreak(line, breakNode, breakOffset); in textWithHardLineBreaks()
405 while (breakNode == n) in textWithHardLineBreaks()
406 getNextSoftBreak(line, breakNode, breakOffset); in textWithHardLineBreaks()