reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
241 MS.Maybe(Multilib("one")); 242 MS.Maybe(Multilib("two")); 243 MS.Maybe(Multilib("three")); 244 ASSERT_EQ(MS.size(), (unsigned)2 * 2 * 2) 245 << "Size before filter was incorrect. Contents:\n" << MS; 246 MS.FilterOut("/one/two/three"); 247 ASSERT_EQ(MS.size(), (unsigned)2 * 2 * 2 - 1) 248 << "Size after filter was incorrect. Contents:\n" << MS; 249 for (MultilibSet::const_iterator I = MS.begin(), E = MS.end(); I != E; ++I) { 249 for (MultilibSet::const_iterator I = MS.begin(), E = MS.end(); I != E; ++I) {