Searched refs:ASTVector (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTVector.h1 //===- ASTVector.h - Vector that uses ASTContext for allocation ---*- C++ -*-=//
9 // This file provides ASTVector, a vector ADT whose contents are
36 class ASTVector { class in namespace:clang
52 ASTVector() : Capacity(nullptr, false) {} function in class:clang::ASTVector
54 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) { function in class:clang::ASTVector
60 ASTVector(const ASTContext &C, unsigned N) : Capacity(nullptr, false) { function in class:clang::ASTVector
64 ASTVector &operator=(ASTVector &&RHS) {
65 ASTVector
[all...]
H A DASTUnresolvedSet.h17 #include "clang/AST/ASTVector.h"
32 struct DeclsTy : ASTVector<DeclAccessPair> {
34 DeclsTy(ASTContext &C, unsigned N) : ASTVector<DeclAccessPair>(C, N) {}
H A DRecordLayout.h16 #include "clang/AST/ASTVector.h"
82 ASTVector<uint64_t> FieldOffsets;
H A DExpr.h17 #include "clang/AST/ASTVector.h"
4411 typedef ASTVector<Stmt *> InitExprsTy;

Completed in 102 milliseconds