Searched refs:ASTVector (Results 1 – 5 of 5) sorted by relevance
33 class ASTVector {48 ASTVector() : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {} in ASTVector() function50 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) { in ASTVector() function56 ASTVector(const ASTContext &C, unsigned N) in ASTVector() function61 ASTVector &operator=(ASTVector &&RHS) {62 ASTVector O(std::move(RHS));70 ~ASTVector() { in ~ASTVector()376 void ASTVector<T>::grow(const ASTContext &C, size_t MinSize) { in grow()
25 struct DeclsTy : ASTVector<DeclAccessPair> {27 DeclsTy(ASTContext &C, unsigned N) : ASTVector<DeclAccessPair>(C, N) {} in DeclsTy()
74 ASTVector<uint64_t> FieldOffsets;
3748 typedef ASTVector<Stmt *> InitExprsTy;
48 ASTVector<int> V; in TEST_F()53 ASTVector<double> V; in TEST_F()69 ASTVector<double> V; in TEST_F()