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

  /external/clang/include/clang/AST/
DeclAccessPair.h 1 //===--- DeclAccessPair.h - A decl bundled with its path access -*- C++ -*-===//
10 // This file defines the DeclAccessPair class, which provides an
30 class DeclAccessPair {
36 static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS) {
37 DeclAccessPair p;
64 // Take a moment to tell SmallVector that DeclAccessPair is POD.
67 template<> struct isPodLike<clang::DeclAccessPair> {
ASTUnresolvedSet.h 25 struct DeclsTy : ASTVector<DeclAccessPair> {
27 DeclsTy(ASTContext &C, unsigned N) : ASTVector<DeclAccessPair>(C, N) {}
51 Decls.push_back(DeclAccessPair::make(D, AS), C);
82 DeclAccessPair &operator[](unsigned I) { return Decls[I]; }
83 const DeclAccessPair &operator[](unsigned I) const { return Decls[I]; }
UnresolvedSet.h 18 #include "clang/AST/DeclAccessPair.h"
30 typedef MutableArrayRef<DeclAccessPair> DeclsTy;
57 DeclAccessPair getPair() const { return *ir; }
94 typedef SmallVectorImpl<DeclAccessPair> DeclsTy;
120 decls().push_back(DeclAccessPair::make(D, AS));
161 DeclAccessPair &operator[](unsigned I) { return decls()[I]; }
162 const DeclAccessPair &operator[](unsigned I) const { return decls()[I]; }
178 SmallVector<DeclAccessPair, InlineCapacity> Decls;
Expr.h 20 #include "clang/AST/DeclAccessPair.h"
    [all...]
ExprCXX.h     [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 158 DeclAccessPair FoundDecl,
    [all...]
SemaExprMember.cpp 736 DeclAccessPair FoundDecl,
743 DeclAccessPair foundDecl,
841 DeclAccessPair fakeFoundDecl =
842 DeclAccessPair::make(field, field->getAccess());
    [all...]
SemaOverload.cpp     [all...]
SemaInit.cpp     [all...]
SemaOpenMP.cpp     [all...]
SemaLookup.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaCast.cpp     [all...]
SemaExpr.cpp     [all...]
SemaCodeComplete.cpp     [all...]
SemaTemplate.cpp     [all...]
  /external/clang/include/clang/Sema/
Initialization.h 723 DeclAccessPair FoundDecl;
    [all...]
Overload.h 289 DeclAccessPair FoundConversionFunction;
600 DeclAccessPair FoundDecl;
DelayedDiagnostic.h 47 DeclAccessPair FoundDecl,
Sema.h 98 class DeclAccessPair;
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 692 clang::DeclAccessPair FoundDecl =
693 clang::DeclAccessPair::make(FD, clang::AS_none);
725 clang::DeclAccessPair FoundDecl =
726 clang::DeclAccessPair::make(FD, clang::AS_none);
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 362 Results = static_cast<DeclAccessPair *>(
363 C.Allocate(sizeof(DeclAccessPair) * NumResults,
364 llvm::alignOf<DeclAccessPair>()));
366 NumResults * sizeof(DeclAccessPair));
403 Results = static_cast<DeclAccessPair *>(
404 C.Allocate(sizeof(DeclAccessPair) * NumResults,
406 llvm::alignOf<DeclAccessPair>()));
408 NumResults * sizeof(DeclAccessPair));
    [all...]
Expr.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
ASTWriterStmt.cpp 544 DeclAccessPair FoundDecl = E->getFoundDecl();
    [all...]

Completed in 502 milliseconds