Home | History | Annotate | Download | only in AST

Lines Matching refs:Elt

157   void push_back(const_reference Elt, const ASTContext &C) {
160 new (End) T(Elt);
199 void append(const ASTContext &C, size_type NumInputs, const T &Elt) {
205 std::uninitialized_fill_n(this->end(), NumInputs, Elt);
216 iterator insert(const ASTContext &C, iterator I, const T &Elt) {
218 push_back(Elt, C);
228 *I = Elt;
238 const T &Elt) {
239 // Convert iterator to elt# to avoid invalidating iterator when we reserve()
243 append(C, NumToInsert, Elt);
264 std::fill_n(I, NumToInsert, Elt);
278 std::fill_n(I, NumOverwritten, Elt);
281 std::uninitialized_fill_n(OldEnd, NumToInsert-NumOverwritten, Elt);
287 // Convert iterator to elt# to avoid invalidating iterator when we reserve()
355 void construct_range(T *S, T *E, const T &Elt) {
357 new (S) T(Elt);