Searched defs:previousSibling (Results 1 - 25 of 28) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
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.h50 Node* previousSibling(ScriptState*);
60 Node* previousSibling() { return previousSibling(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); } function in class:WebCore::TreeWalker
H A DNode.h146 Node* previousSibling() const { return m_previous; } function in class:WebCore::Node
/external/webkit/Source/WebCore/page/
H A DFrameTree.h50 Frame* previousSibling() const { return m_previousSibling; } function in class:WebCore::FrameTree
/external/webkit/Source/WebCore/rendering/
H A DCounterNode.h59 CounterNode* previousSibling() const { return m_previousSibling; } function in class:WebCore::CounterNode
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...]
H A DRenderLayer.h189 RenderLayer* previousSibling() const { return m_previous; } function in class:WebCore::RenderLayer
H A DRenderObject.h130 RenderObject* previousSibling() const { return m_previous; } function in class:WebCore::RenderObject
/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());
H A DWebAccessibilityObject.cpp192 WebAccessibilityObject WebAccessibilityObject::previousSibling() const function in class:WebKit::WebAccessibilityObject
198 return WebAccessibilityObject(m_private->previousSibling());
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFrameProxy.h77 WebFrameProxy* previousSibling() { return m_previousSibling; } function in class:WebKit::WebFrameProxy
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTM.java175 * @param previousSibling The previous sibling index.
183 int previousSibling, int forceNodeType)
250 m_prevsib.setElementAt(previousSibling,nodeIndex);
300 if (DTM.NULL != previousSibling)
301 m_nextsib.setElementAt(nodeIndex,previousSibling);
182 addNode(Node node, int parentIndex, int previousSibling, int forceNodeType) argument
/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/webkit/Source/WebCore/svg/
H A DSVGElementInstance.h71 SVGElementInstance* previousSibling() const { return m_previousSibling; } function in class:WebCore::SVGElementInstance
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.h151 virtual HRESULT STDMETHODCALLTYPE previousSibling(
375 virtual HRESULT STDMETHODCALLTYPE previousSibling( function in class:DOMDocument
376 /* [retval][out] */ IDOMNode** result) { return DOMNode::previousSibling(result); }
606 virtual HRESULT STDMETHODCALLTYPE previousSibling( function in class:DOMElement
607 /* [retval][out] */ IDOMNode** result) { return DOMNode::previousSibling(result); }
H A DDOMCoreClasses.cpp178 HRESULT STDMETHODCALLTYPE DOMNode::previousSibling( function in class:DOMNode
H A DDOMHTMLClasses.h231 virtual HRESULT STDMETHODCALLTYPE previousSibling( function in class:DOMHTMLDocument
232 /* [retval][out] */ IDOMNode **result) { return DOMDocument::previousSibling(result); }
505 virtual HRESULT STDMETHODCALLTYPE previousSibling( function in class:DOMHTMLElement
506 /* [retval][out] */ IDOMNode **result) { return DOMElement::previousSibling(result); }
764 virtual HRESULT STDMETHODCALLTYPE previousSibling( function in class:DOMHTMLFormElement
765 /* [retval][out] */ IDOMNode **result) { return DOMHTMLElement::previousSibling(result); }
1069 virtual HRESULT STDMETHODCALLTYPE previousSibling( function in class:DOMHTMLSelectElement
1070 /* [retval][out] */ IDOMNode **result) { return DOMHTMLElement::previousSibling(result); }
1393 virtual HRESULT STDMETHODCALLTYPE previousSibling( function in class:DOMHTMLOptionElement
1394 /* [retval][out] */ IDOMNode **result) { return DOMHTMLElement::previousSibling(resul
1691 virtual HRESULT STDMETHODCALLTYPE previousSibling( function in class:DOMHTMLInputElement
2101 virtual HRESULT STDMETHODCALLTYPE previousSibling( function in class:DOMHTMLTextAreaElement
2426 virtual HRESULT STDMETHODCALLTYPE previousSibling( function in class:DOMHTMLIFrameElement
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java860 * @param previousSibling The previous sibling index.
868 int parentIndex, int previousSibling,
887 m_prevsib.addElement(previousSibling);
890 if (DTM.NULL != previousSibling) {
891 m_nextsib.setElementAt(nodeIndex,previousSibling);
910 if (DTM.NULL == previousSibling && DTM.NULL != parentIndex) {
867 addNode(int type, int expandedTypeID, int parentIndex, int previousSibling, int dataOrPrefix, boolean canHaveFirstChild) argument
H A DSAX2DTM2.java2327 * @param previousSibling The previous sibling index.
2335 int parentIndex, int previousSibling,
2356 m_prevsib.addElement(previousSibling);
2375 if (DTM.NULL != previousSibling) {
2376 m_nextsib.setElementAt(nodeIndex,previousSibling);
2334 addNode(int type, int expandedTypeID, int parentIndex, int previousSibling, int dataOrPrefix, boolean canHaveFirstChild) argument
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebelement.cpp619 \sa lastChild(), previousSibling(), nextSibling()
637 \sa firstChild(), previousSibling(), nextSibling()
643 for (Node* child = m_element->lastChild(); child; child = child->previousSibling()) {
655 \sa firstChild(), previousSibling(), lastChild()
675 QWebElement QWebElement::previousSibling() const function in class:QWebElement
679 for (Node* sib = m_element->previousSibling(); sib; sib = sib->previousSibling()) {
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDocumentImpl.java81 int previousSibling = 0; // previous sibling - no previous sibling field in class:DTMDocumentImpl
214 nodes.writeEntry(previousSibling,2,slotnumber);
701 // previousSibling = 0;
800 // nodes.writeEntry(previousSibling, 2, NULL);
803 // previousSibling = currentParent;
857 // previousSibling = ourslot; // Should attributes be previous siblings
871 // //previousSibling = ourslot;
922 // previousSibling = ourslot;
971 // previousSibling = ourslot;
2104 previousSibling
[all...]
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h282 @property(readonly, retain) DOMNode *previousSibling; variable
1215 - (DOMNode *)previousSibling;
/external/webkit/Source/WebCore/editing/
H A DApplyStyleCommand.cpp472 if (before ? n->previousSibling() : n->nextSibling())
790 RefPtr<Node> previousSibling = node->previousSibling(); local
797 runStart = previousSibling ? previousSibling->nextSibling() : parent->firstChild();
799 runEnd = nextSibling ? nextSibling->previousSibling() : parent->lastChild();
1142 Node* prevNode = text->previousSibling();
1171 Node* prevNode = text->parentNode()->previousSibling()->lastChild();
1239 if (startNode->previousSibling())
1249 Node* previousSibling
1327 RefPtr<Node> previousSibling = element->previousSibling(); local
[all...]
/external/webkit/Source/WebCore/inspector/
H A DInspectorDOMAgent.cpp668 Node* previousSibling = htmlElement->previousSibling(); local
684 Node* newNode = previousSibling ? previousSibling->nextSibling() : parentNode->firstChild();
1153 node = node->previousSibling();
1209 Node* previousSibling = innerPreviousSibling(frameOwner); local
1210 int prevId = previousSibling ? m_documentNodeToIdMap.get(previousSibling) : 0;
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityObject.h397 virtual AccessibilityObject* previousSibling() const { return 0; } function in class:WebCore::AccessibilityObject

Completed in 2625 milliseconds

12