Home | History | Annotate | Download | only in AST

Lines Matching refs:NumInputs

178     size_type NumInputs = std::distance(in_start, in_end);
180 if (NumInputs == 0)
184 if (NumInputs > size_type(this->capacity_ptr()-this->end()))
185 this->grow(C, this->size()+NumInputs);
191 this->setEnd(this->end() + NumInputs);
196 void append(ASTContext &C, size_type NumInputs, const T &Elt) {
198 if (NumInputs > size_type(this->capacity_ptr()-this->end()))
199 this->grow(C, this->size()+NumInputs);
202 std::uninitialized_fill_n(this->end(), NumInputs, Elt);
203 this->setEnd(this->end() + NumInputs);