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

1234

/external/webkit/WebCore/rendering/
H A DRenderCounter.cpp51 if (RenderObject* sibling = object->previousSibling())
114 // previousSibling accordingly.
128 static bool findPlaceForCounter(RenderObject* counterOwner, const AtomicString& identifier, bool isReset, CounterNode*& parent, CounterNode*& previousSibling) argument
137 previousSibling = 0;
142 if (previousSibling && !previousSibling->parent())
149 if (previousSibling) { // But we already found another counter that we come after.
157 previousSibling = parent ? currentCounter : 0;
163 ASSERT(previousSibling->parent() == currentCounter);
170 ASSERT(currentCounter->parent() == previousSibling
[all...]
H A DCounterNode.h52 CounterNode* previousSibling() const { return m_previousSibling; } function in class:WebCore::CounterNode
H A DRenderObjectChildList.cpp116 if (oldChild->previousSibling())
117 oldChild->previousSibling()->setNextSibling(oldChild->nextSibling());
119 oldChild->nextSibling()->setPreviousSibling(oldChild->previousSibling());
124 setLastChild(oldChild->previousSibling());
199 RenderObject* prev = beforeChild->previousSibling();
H A DRenderRuby.cpp46 child = child->previousSibling();
/external/webkit/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()) {
H A DHTMLTableCellElement.cpp68 for (const Node * node = previousSibling(); node; node = node->previousSibling()) {
/external/webkit/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; ) {
162 sibling = sibling->previousSibling();
215 while (Node* previousSibling = node->previousSibling()) {
216 node = previousSibling;
H A DTreeWalker.idl37 [Custom] Node previousSibling();
H A DPositionIterator.cpp76 m_anchorNode = m_nodeAfterPositionInAnchor->previousSibling();
108 return (!m_anchorNode->hasChildNodes() && !m_offsetInAnchor) || (m_nodeAfterPositionInAnchor && !m_nodeAfterPositionInAnchor->previousSibling());
126 return !m_nodeAfterPositionInAnchor->previousSibling();
H A DRangeBoundaryPoint.h134 m_childBeforeBoundary = child->previousSibling();
163 m_childBeforeBoundary = m_childBeforeBoundary->previousSibling();
H A DChildNodeList.cpp86 n = n->previousSibling();
H A DContainerNode.cpp96 if (refChild->previousSibling() == newChild || refChild == newChild) // nothing to do
100 RefPtr<Node> refChildPreviousSibling = refChild->previousSibling();
127 ASSERT(!child->previousSibling());
131 Node* prev = next->previousSibling();
188 RefPtr<Node> prev = oldChild->previousSibling();
209 if (prev && (prev == child || prev == child->previousSibling()))
233 ASSERT(!child->previousSibling());
248 ASSERT(next->previousSibling() == prev);
349 prev = child->previousSibling();
731 else if (o->previousSibling())
[all...]
/external/webkit/WebCore/bindings/js/
H A DJSTreeWalkerCustom.cpp72 JSValue JSTreeWalker::previousSibling(ExecState* exec, const ArgList&) function in class:WebCore::JSTreeWalker
74 Node* node = impl()->previousSibling(exec);
/external/webkit/WebKit/chromium/src/
H A DWebNode.cpp144 WebNode WebNode::previousSibling() const function in class:WebKit::WebNode
146 return WebNode(m_private->previousSibling());
/external/webkit/WebCore/inspector/front-end/
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...]
H A DDataGrid.js481 if (child.previousSibling)
482 child.previousSibling.nextSibling = child.nextSibling;
484 child.nextSibling.previousSibling = child.previousSibling;
489 child.previousSibling = null;
505 child.previousSibling = null;
532 child.previousSibling = null;
800 this.previousSibling = null;
1012 this.previousSibling = previousChild;
1014 this.previousSibling
[all...]
/external/webkit/WebCore/editing/
H A DModifySelectionListLevel.cpp151 if (!start->renderer()->previousSibling())
178 Node* previousItem = startListChild->renderer()->previousSibling()->node();
261 Node* previousItem = startListChild->renderer()->previousSibling() ? startListChild->renderer()->previousSibling()->node() : 0;
/external/webkit/WebCore/page/
H A DFrameTree.h48 Frame* previousSibling() const { return m_previousSibling; } function in class:WebCore::FrameTree
/external/webkit/WebKit/chromium/public/
H A DWebAccessibilityObject.h80 WebAccessibilityObject previousSibling() const;
H A DWebNode.h98 WEBKIT_API WebNode previousSibling() const;
/external/guava/src/com/google/common/collect/
H A DLinkedListMultimap.java111 Node<K, V> previousSibling; // the previous node with the same key field in class:LinkedListMultimap.Node
198 node.previousSibling = keyTail;
204 node.previousSibling = nextSibling.previousSibling;
207 if (nextSibling.previousSibling == null) { // nextSibling was key head
210 nextSibling.previousSibling.nextSibling = node;
218 nextSibling.previousSibling = node;
240 if (node.previousSibling != null) {
241 node.previousSibling.nextSibling = node.nextSibling;
248 node.nextSibling.previousSibling
[all...]
/external/libvpx/examples/includes/ASCIIMathPHP-2.0/
H A DhtmlMathML.js75 node.parentNode.removeChild(node.previousSibling);
/external/webkit/WebCore/bindings/v8/custom/
H A DV8TreeWalkerCustom.cpp120 INC_STATS("DOM.TreeWalker.previousSibling()");
124 RefPtr<Node> result = treeWalker->previousSibling(&state);
/external/webkit/WebCore/svg/
H A DSVGElementInstance.idl47 readonly attribute SVGElementInstance previousSibling;

Completed in 276 milliseconds

1234