Searched defs:DeclRefExpr (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/AST/
H A DExpr.cpp331 void DeclRefExpr::computeDependence(ASTContext &Ctx) {
365 DeclRefExpr::DeclRefExpr(ASTContext &Ctx, function in class:DeclRefExpr
402 DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
418 DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
432 std::size_t Size = sizeof(DeclRefExpr);
442 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
443 return new (Mem) DeclRefExpr(Contex
[all...]
/external/clang/include/clang/AST/
H A DExpr.h868 class DeclRefExpr : public Expr { class in namespace:clang
887 return const_cast<DeclRefExpr *>(this)->getInternalQualifierLoc();
906 return const_cast<DeclRefExpr *>(this)->getInternalFoundDecl();
909 DeclRefExpr(ASTContext &Ctx,
919 explicit DeclRefExpr(EmptyShell Empty) function in class:clang::DeclRefExpr
927 DeclRefExpr(ValueDecl *D, bool refersToEnclosingLocal, QualType T, function in class:clang::DeclRefExpr
940 static DeclRefExpr *Create(ASTContext &Context,
950 static DeclRefExpr *Create(ASTContext &Context,
961 static DeclRefExpr *CreateEmpty(ASTContext &Context,
1039 return const_cast<DeclRefExpr*>(thi
[all...]

Completed in 31 milliseconds