Home
last modified time | relevance | path

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

/external/slf4j/slf4j-api/src/test/java/org/slf4j/
DBasicMarkerTest.java188 Marker otherChild = otherFactory.getMarker(CHILD_NAME); in testHomonyms() local
191 assertTrue(parent.contains(otherChild)); in testHomonyms()
193 assertTrue(parent.remove(otherChild)); in testHomonyms()
/external/skia/tests/
DProgramsTest.cpp199 std::unique_ptr<GrFragmentProcessor> otherChild(create_random_proc_tree(d, 1, maxLevels - 1)); in create_random_proc_tree() local
200 if (!minLevelsChild || !otherChild) { in create_random_proc_tree()
207 fp = GrBlendFragmentProcessor::Make(std::move(minLevelsChild), std::move(otherChild), mode); in create_random_proc_tree()
210 fp = GrBlendFragmentProcessor::Make(std::move(otherChild), std::move(minLevelsChild), mode); in create_random_proc_tree()
/external/skqp/tests/
DGLProgramsTest.cpp207 std::unique_ptr<GrFragmentProcessor> otherChild(create_random_proc_tree(d, 1, maxLevels - 1)); in create_random_proc_tree() local
213 std::move(otherChild), mode); in create_random_proc_tree()
216 fp = GrXfermodeFragmentProcessor::MakeFromTwoProcessors(std::move(otherChild), in create_random_proc_tree()
/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/llvm-project/mlir/lib/Pass/
DPassTiming.cpp134 for (auto &otherChild : otherChildren) in mergeChildren() local
135 mergeChild(std::move(otherChild)); in mergeChildren()