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

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebRange.cpp80 WebNode WebRange::endContainer(WebExceptionCode& exceptionCode) const function in class:blink::WebRange
83 RefPtrWillBeRawPtr<Node> node(m_private->endContainer());
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DRange.h54 static PassRefPtrWillBeRawPtr<Range> create(Document&, Node* startContainer, int startOffset, Node* endContainer, int endOffset);
61 Node* endContainer() const { return m_end.container(); } function in class:blink::FINAL
156 Range(Document&, Node* startContainer, int startOffset, Node* endContainer, int endOffset);
H A DDocumentMarkerController.cpp442 Node* endContainer = range->endContainer(); local
443 ASSERT(endContainer);
455 if (node == endContainer && marker->startOffset() >= static_cast<unsigned>(range->endOffset()))
674 Node* endContainer = range->endContainer(); local
680 int endOffset = node == endContainer ? range->endOffset() : INT_MAX;
719 Node* endContainer = range->endContainer(); local
720 ASSERT(endContainer);
[all...]
H A DRange.cpp77 inline Range::Range(Document& ownerDocument, Node* startContainer, int startOffset, Node* endContainer, int endOffset) argument
91 setEnd(endContainer, endOffset);
94 PassRefPtrWillBeRawPtr<Range> Range::create(Document& ownerDocument, Node* startContainer, int startOffset, Node* endContainer, int endOffset) argument
96 return adoptRefWillBeNoop(new Range(ownerDocument, startContainer, startOffset, endContainer, endOffset));
1430 Node* endContainer = m_end.container(); local
1431 ASSERT(endContainer);
1443 int endOffset = node == endContainer ? m_end.offset() : std::numeric_limits<int>::max();
1458 Node* endContainer = m_end.container(); local
1459 ASSERT(endContainer);
1471 int endOffset = node == endContainer
1722 Node* endContainer = m_end.container(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DTextFinderTest.cpp34 static WebFloatRect findInPageRect(Node* startContainer, int startOffset, Node* endContainer, int endOffset);
61 WebFloatRect TextFinderTest::findInPageRect(Node* startContainer, int startOffset, Node* endContainer, int endOffset) argument
63 RefPtrWillBeRawPtr<Range> range = Range::create(startContainer->document(), startContainer, startOffset, endContainer, endOffset);
83 EXPECT_EQ(textNode, activeMatch->endContainer());
92 EXPECT_EQ(textNode, activeMatch->endContainer());
101 EXPECT_EQ(textNode, activeMatch->endContainer());
114 EXPECT_EQ(textNode, activeMatch->endContainer());
123 EXPECT_EQ(textNode, activeMatch->endContainer());
132 EXPECT_EQ(textNode, activeMatch->endContainer());
172 EXPECT_EQ(textInUElement, activeMatch->endContainer());
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DApplyBlockElementCommand.cpp231 RefPtrWillBeRawPtr<Text> endContainer = end.containerText(); local
232 splitTextNode(endContainer, end.offsetInContainerNode());
234 start = firstPositionInOrBeforeNode(endContainer->previousSibling());
237 m_endOfLastParagraph = lastPositionInOrAfterNode(endContainer->previousSibling());
239 m_endOfLastParagraph = Position(endContainer, m_endOfLastParagraph.offsetInContainerNode() - end.offsetInContainerNode());
241 end = lastPositionInNode(endContainer->previousSibling());
H A DEditor.cpp254 Node* endContainer = range->endContainer(); local
255 if (!startContainer || !endContainer)
258 if (!startContainer->hasEditableStyle() || !endContainer->hasEditableStyle())
1096 ASSERT(range->endContainer());
H A DTextIterator.cpp313 Node* endContainer = end.containerNode(); local
314 if (!endContainer)
321 m_endContainer = endContainer;
326 const TreeScope* commonAncestorTreeScope = startContainer->treeScope().commonAncestorTreeScope(endContainer->treeScope());
352 m_pastEndNode = nextInPreOrderCrossingShadowBoundaries(endContainer, endOffset);
1254 Node* TextIterator::endContainer() const function in class:blink::TextIterator
1266 return createLegacyEditingPosition(endContainer(), endOffset());
1302 Node* endNode = r->endContainer();
1654 ASSERT(n == r->endContainer());
1673 Node* CharacterIterator::endContainer() cons function in class:blink::CharacterIterator
[all...]

Completed in 1355 milliseconds