Lines Matching defs:insert
384 std::pair<iterator, bool> insert(PtrType Ptr) {
390 /// identical to calling insert(Ptr), but allows SmallPtrSet to be used by
392 iterator insert(iterator, PtrType Ptr) {
393 return insert(Ptr).first;
463 void insert(IterT I, IterT E) {
465 insert(*I);
468 void insert(std::initializer_list<PtrType> IL) {
469 insert(IL.begin(), IL.end());
551 this->insert(I, E);
556 this->insert(IL.begin(), IL.end());
577 this->insert(IL.begin(), IL.end());