Home
last modified time | relevance | path

Searched refs:ASTVector (Results 1 – 5 of 5) sorted by relevance

/external/clang/include/clang/AST/
DASTVector.h33 class ASTVector {
48 ASTVector() : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {} in ASTVector() function
50 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) { in ASTVector() function
56 ASTVector(const ASTContext &C, unsigned N) in ASTVector() function
61 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()
DASTUnresolvedSet.h25 struct DeclsTy : ASTVector<DeclAccessPair> {
27 DeclsTy(ASTContext &C, unsigned N) : ASTVector<DeclAccessPair>(C, N) {} in DeclsTy()
DRecordLayout.h74 ASTVector<uint64_t> FieldOffsets;
DExpr.h3748 typedef ASTVector<Stmt *> InitExprsTy;
/external/clang/unittests/AST/
DASTVectorTest.cpp48 ASTVector<int> V; in TEST_F()
53 ASTVector<double> V; in TEST_F()
69 ASTVector<double> V; in TEST_F()