Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/editing/
DBreakBlockquoteCommand.cpp73 RefPtr<Element> breakNode = createBreakElement(document()); in doApply() local
80 insertNodeBefore(breakNode.get(), topBlockquote); in doApply()
81 setEndingSelection(VisibleSelection(positionBeforeNode(breakNode.get()), DOWNSTREAM)); in doApply()
87 insertNodeAfter(breakNode.get(), topBlockquote); in doApply()
91 setEndingSelection(VisibleSelection(positionBeforeNode(breakNode.get()), DOWNSTREAM)); in doApply()
135 insertNodeAfter(clonedBlockquote.get(), breakNode.get()); in doApply()
197 setEndingSelection(VisibleSelection(positionBeforeNode(breakNode.get()), DOWNSTREAM)); in doApply()
DCompositeEditCommand.cpp1246 RefPtr<Element> breakNode = document->createElement(brTag, false); in createBlockPlaceholderElement() local
1247 return breakNode.release(); in createBlockPlaceholderElement()
/external/webkit/Source/WebCore/rendering/
DRenderTextControl.cpp395 static void getNextSoftBreak(RootInlineBox*& line, Node*& breakNode, unsigned& breakOffset) in getNextSoftBreak() argument
402 breakNode = line->lineBreakObj()->node(); in getNextSoftBreak()
408 breakNode = 0; in getNextSoftBreak()
421 Node* breakNode; in textWithHardLineBreaks() local
427 getNextSoftBreak(line, breakNode, breakOffset); in textWithHardLineBreaks()
439 while (breakNode == n && breakOffset <= length) { in textWithHardLineBreaks()
445 getNextSoftBreak(line, breakNode, breakOffset); in textWithHardLineBreaks()
449 while (breakNode == n) in textWithHardLineBreaks()
450 getNextSoftBreak(line, breakNode, breakOffset); in textWithHardLineBreaks()