Searched defs:ASTVector (Results 1 – 2 of 2) sorted by relevance
/external/clang/include/clang/AST/ |
D | ASTVector.h | 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
|
/external/llvm-project/clang/include/clang/AST/ |
D | ASTVector.h | 52 ASTVector() : Capacity(nullptr, false) {} in ASTVector() function 54 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) { in ASTVector() function 60 ASTVector(const ASTContext &C, unsigned N) : Capacity(nullptr, false) { in ASTVector() function
|