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.java165 Logger otherChild = new MockLogger( in testAddGetLogger_Hierachy() local
170 assertNull(otherChild.getParent()); in testAddGetLogger_Hierachy()
194 assertTrue(manager.addLogger(otherChild)); in testAddGetLogger_Hierachy()
196 assertSame(foo, otherChild.getParent()); in testAddGetLogger_Hierachy()
197 assertSame(otherChild, grandson.getParent()); in testAddGetLogger_Hierachy()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DNode.cpp1236 Node* otherChild = other->firstChild(); in isEqualNode() local
1239 if (!child->isEqualNode(otherChild)) in isEqualNode()
1243 otherChild = otherChild->nextSibling(); in isEqualNode()
1246 if (otherChild) in isEqualNode()