Searched refs:otherChild (Results 1 – 11 of 11) sorted by relevance
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
D | hc_attrfirstchild.js | 95 var otherChild; 113 otherChild = textNode.nextSibling; 115 assertNull("nextSiblingIsNull",otherChild); 116 otherChild = textNode.previousSibling; 118 assertNull("previousSiblingIsNull",otherChild);
|
D | hc_attrlastchild.js | 95 var otherChild; 113 otherChild = textNode.nextSibling; 115 assertNull("nextSiblingIsNull",otherChild); 116 otherChild = textNode.previousSibling; 118 assertNull("previousSiblingIsNull",otherChild);
|
D | hc_attrsetvalue1.js | 94 var otherChild; 124 otherChild = firstChild.nextSibling; 126 assertNull("nextSiblingIsNull",otherChild);
|
D | hc_attrsetvalue2.js | 95 var otherChild; 127 otherChild = firstChild.nextSibling; 129 assertNull("nextSiblingIsNull",otherChild);
|
/external/webkit/LayoutTests/dom/html/level1/core/ |
D | hc_attrlastchild.js | 95 var otherChild; 113 otherChild = textNode.nextSibling; 115 assertNull("nextSiblingIsNull",otherChild); 116 otherChild = textNode.previousSibling; 118 assertNull("previousSiblingIsNull",otherChild);
|
D | hc_attrfirstchild.js | 95 var otherChild; 113 otherChild = textNode.nextSibling; 115 assertNull("nextSiblingIsNull",otherChild); 116 otherChild = textNode.previousSibling; 118 assertNull("previousSiblingIsNull",otherChild);
|
D | hc_attrsetvalue1.js | 94 var otherChild; 124 otherChild = firstChild.nextSibling; 126 assertNull("nextSiblingIsNull",otherChild);
|
D | hc_attrsetvalue2.js | 95 var otherChild; 127 otherChild = firstChild.nextSibling; 129 assertNull("nextSiblingIsNull",otherChild);
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
D | LogManagerTest.java | 167 Logger otherChild = new MockLogger( in testAddGetLogger_Hierachy() local 172 assertNull(otherChild.getParent()); in testAddGetLogger_Hierachy() 196 assertTrue(manager.addLogger(otherChild)); in testAddGetLogger_Hierachy() 198 assertSame(foo, otherChild.getParent()); in testAddGetLogger_Hierachy() 199 assertSame(otherChild, grandson.getParent()); in testAddGetLogger_Hierachy()
|
/external/webkit/Source/WebCore/history/ |
D | HistoryItem.cpp | 577 …HistoryItem* otherChild = otherItem->childItemWithDocumentSequenceNumber(child->documentSequenceNu… in hasSameDocumentTree() local 578 if (!otherChild || !child->hasSameDocumentTree(otherChild)) in hasSameDocumentTree()
|
/external/webkit/Source/WebCore/dom/ |
D | Node.cpp | 1881 Node* otherChild = other->firstChild(); in isEqualNode() local 1884 if (!child->isEqualNode(otherChild)) in isEqualNode() 1888 otherChild = otherChild->nextSibling(); in isEqualNode() 1891 if (otherChild) in isEqualNode()
|