Home
last modified time | relevance | path

Searched refs:otherChild (Results 1 – 2 of 2) sorted by relevance

/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DLogManagerTest.java167 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/chromium_org/third_party/WebKit/Source/core/dom/
DNode.cpp1426 Node* otherChild = other->firstChild(); in isEqualNode() local
1429 if (!child->isEqualNode(otherChild)) in isEqualNode()
1433 otherChild = otherChild->nextSibling(); in isEqualNode()
1436 if (otherChild) in isEqualNode()