Searched refs:previousSibling (Results 1 - 25 of 129) sorted by relevance

123456

/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodecomparedocumentposition19.js112 aNode = cdata2.previousSibling;
114 cdata1 = aNode.previousSibling;
H A Dnodeinsertbefore09.js115 comment = newComment.previousSibling;
H A Dtextiselementcontentwhitespace03.js103 textNode = pElem.previousSibling;
/external/webkit/Source/WebCore/html/
H A DHTMLTableRowsCollection.cpp119 for (Node* child = table->lastChild(); child; child = child->previousSibling()) {
121 for (Node* grandchild = child->lastChild(); grandchild; grandchild = grandchild->previousSibling()) {
128 for (Node* child = table->lastChild(); child; child = child->previousSibling()) {
132 for (Node* grandchild = child->lastChild(); grandchild; grandchild = grandchild->previousSibling()) {
139 for (Node* child = table->lastChild(); child; child = child->previousSibling()) {
141 for (Node* grandchild = child->lastChild(); grandchild; grandchild = grandchild->previousSibling()) {
/external/webkit/Source/WebCore/dom/
H A DTreeWalker.h50 Node* previousSibling(ScriptState*);
60 Node* previousSibling() { return previousSibling(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); } function in class:WebCore::TreeWalker
H A DTreeWalker.cpp126 if (node->previousSibling()) {
127 node = node->previousSibling();
139 Node* TreeWalker::previousSibling(ScriptState* state) function in class:WebCore::TreeWalker
145 for (RefPtr<Node> sibling = node->previousSibling(); sibling; ) {
163 sibling = sibling->previousSibling();
217 while (Node* previousSibling = node->previousSibling()) {
218 node = previousSibling;
H A DTreeWalker.idl37 [CallWith=ScriptState] Node previousSibling();
H A DPositionIterator.cpp79 m_anchorNode = m_nodeAfterPositionInAnchor->previousSibling();
117 return (!m_anchorNode->hasChildNodes() && !m_offsetInAnchor) || (m_nodeAfterPositionInAnchor && !m_nodeAfterPositionInAnchor->previousSibling());
135 return !m_nodeAfterPositionInAnchor->previousSibling();
H A DRangeBoundaryPoint.h134 m_childBeforeBoundary = child->previousSibling();
163 m_childBeforeBoundary = m_childBeforeBoundary->previousSibling();
/external/webkit/LayoutTests/dom/html/level1/core/
H A Dhc_attrfirstchild.js116 otherChild = textNode.previousSibling;
H A Dhc_attrlastchild.js116 otherChild = textNode.previousSibling;
H A Dhc_attrprevioussiblingnull.js107 s = domesticAttr.previousSibling;
H A Dhc_nodegetprevioussibling.js104 psNode = nameNode.previousSibling;
H A Dhc_nodegetprevioussiblingnull.js113 psNode = fcNode.previousSibling;
/external/webkit/LayoutTests/dom/xhtml/level1/core/
H A Dhc_attrfirstchild.js116 otherChild = textNode.previousSibling;
H A Dhc_attrlastchild.js116 otherChild = textNode.previousSibling;
H A Dhc_attrprevioussiblingnull.js107 s = domesticAttr.previousSibling;
H A Dhc_nodegetprevioussibling.js104 psNode = nameNode.previousSibling;
H A Dhc_nodegetprevioussiblingnull.js113 psNode = fcNode.previousSibling;
/external/webkit/Source/WebCore/inspector/front-end/
H A DSection.js137 get previousSibling()
141 curElement = curElement.previousSibling;
H A Dtreeoutline.js58 child.previousSibling = lastChild;
60 child.previousSibling = null;
99 child.previousSibling = previousChild;
101 child.previousSibling = null;
106 nextChild.previousSibling = child;
149 if (child.previousSibling)
150 child.previousSibling.select();
157 if (child.previousSibling)
158 child.previousSibling.nextSibling = child.nextSibling;
160 child.nextSibling.previousSibling
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderCounter.cpp278 // previousSibling accordingly.
292 static bool findPlaceForCounter(RenderObject* counterOwner, const AtomicString& identifier, bool isReset, CounterNode*& parent, CounterNode*& previousSibling) argument
301 previousSibling = 0;
308 if (previousSibling) { // But we already found another counter that we come after.
316 previousSibling = parent ? currentCounter : 0;
322 ASSERT(previousSibling->parent() == currentCounter);
329 ASSERT(currentCounter->parent() == previousSibling->parent());
336 // previousSibling, and when we are a sibling of the end counter we must set previousSibling
341 previousSibling
[all...]
/external/webkit/Source/WebCore/editing/
H A DApplyBlockElementCommand.cpp227 start = firstPositionInOrBeforeNode(end.deprecatedNode()->previousSibling());
230 m_endOfLastParagraph = lastPositionInNode(end.deprecatedNode()->previousSibling());
235 end = lastPositionInNode(end.deprecatedNode()->previousSibling());
260 start = Position(containerNode->previousSibling(), start.offsetInContainerNode(), Position::PositionIsOffsetInAnchor);
264 end = Position(containerNode->previousSibling(), end.offsetInContainerNode(), Position::PositionIsOffsetInAnchor);
268 m_endOfLastParagraph = Position(containerNode->previousSibling(), m_endOfLastParagraph.offsetInContainerNode(), Position::PositionIsOffsetInAnchor);
/external/webkit/Source/WebKit/chromium/src/
H A DWebNode.cpp118 WebNode WebNode::previousSibling() const function in class:WebKit::WebNode
120 return WebNode(m_private->previousSibling());
/external/webkit/LayoutTests/fast/dom/TreeWalker/resources/
H A DTreeWalker-currentNode.js40 shouldBeNull("w.previousSibling()");
47 w.currentNode = subTree.previousSibling;

Completed in 5925 milliseconds

123456