reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
117 L.insert(L.end(), &N0); 117 L.insert(L.end(), &N0); 118 L.insert(L.end(), &N1); 118 L.insert(L.end(), &N1); 119 EXPECT_EQ(0, L.front().Value); 120 EXPECT_EQ(1, L.back().Value); 122 L.splice(L.end(), L, L.begin()); 122 L.splice(L.end(), L, L.begin()); 122 L.splice(L.end(), L, L.begin()); 122 L.splice(L.end(), L, L.begin()); 123 EXPECT_EQ(1, L.front().Value); 124 EXPECT_EQ(0, L.back().Value); 126 L.clearAndLeakNodesUnsafely();