Home | History | Annotate | Download | only in ADT

Lines Matching refs:erase

293   this->V.erase(this->V.begin());
298 this->V.erase(this->V.begin());
299 this->TestPtrs.erase(this->TestPtrs.begin());
301 this->V.erase(std::next(this->V.begin(), 1));
302 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 1));
304 this->V.erase(std::next(this->V.begin(), 2));
305 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 2));
307 this->V.erase(std::next(this->V.begin(), 5));
308 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 5));
310 this->V.erase(std::next(this->V.begin(), 13));
311 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 13));
316 I = this->V.erase(I);
324 this->V.erase(this->V.begin(), this->V.begin());
326 this->V.erase(this->V.end(), this->V.end());
328 this->V.erase(this->V.begin(), this->V.end());
333 this->V.erase(this->V.begin(), std::next(this->V.begin(), 1));
334 this->TestPtrs.erase(this->TestPtrs.begin(),
337 this->V.erase(std::next(this->V.begin(), 1), std::next(this->V.begin(), 2));
338 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 1),
341 this->V.erase(std::next(this->V.begin(), 2), std::next(this->V.begin(), 4));
342 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 2),
345 this->V.erase(std::next(this->V.begin(), 5), std::next(this->V.begin(), 10));
346 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 5),
349 this->V.erase(std::next(this->V.begin(), 13), std::next(this->V.begin(), 26));
350 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 13),
353 this->V.erase(std::next(this->V.begin(), 7), this->V.end());
355 this->V.erase(this->V.begin(), this->V.end());
405 this->V.erase(std::next(this->V.begin(), 4));