Home | History | Annotate | Download | only in geometry

Lines Matching defs:orphans

545   RTreeNodes orphans;
549 test_parent->RemoveChild(test_parent->child(1), &orphans));
550 EXPECT_EQ(0U, orphans.size());
557 test_parent->RemoveChild(test_parent->child(1), &orphans));
558 EXPECT_EQ(0U, orphans.size());
565 test_parent->RemoveChild(test_parent->child(0), &orphans));
566 EXPECT_EQ(0U, orphans.size());
602 // Now remove all of the level 0 nodes so we get the record nodes as orphans.
603 RTreeNodes orphans;
605 level_1_children[i / 2]->RemoveChild(level_0_children[i], &orphans);
607 // Orphans should be all 8 records but no order guarantee.
608 EXPECT_EQ(8U, orphans.size());
612 std::find(orphans.begin(), orphans.end(), *it);
613 EXPECT_NE(orphan, orphans.end());
614 orphans.erase(orphan);
616 EXPECT_EQ(0U, orphans.size());