HomeSort by relevance Sort by last modified time
    Searched refs:ASTVector (Results 1 - 4 of 4) sorted by null

  /external/clang/unittests/AST/
ASTVectorTest.cpp 10 // Unit tests for the ASTVector container.
16 #include "clang/AST/ASTVector.h"
22 ASTVector<int> V;
  /external/clang/include/clang/AST/
ASTVector.h 1 //===- ASTVector.h - Vector that uses ASTContext for allocation --*- C++ -*-=//
10 // This file provides ASTVector, a vector ADT whose contents are
33 class ASTVector {
48 ASTVector() : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {}
50 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) {
56 ASTVector(const ASTContext &C, unsigned N)
61 ASTVector &operator=(ASTVector &&RHS) {
62 ASTVector O(std::move(RHS))
    [all...]
ASTUnresolvedSet.h 18 #include "clang/AST/ASTVector.h"
25 struct DeclsTy : ASTVector<DeclAccessPair> {
27 DeclsTy(ASTContext &C, unsigned N) : ASTVector<DeclAccessPair>(C, N) {}
Expr.h 18 #include "clang/AST/ASTVector.h"
    [all...]

Completed in 114 milliseconds