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

/external/clang/lib/AST/
H A DExpr.cpp315 void DeclRefExpr::computeDependence(ASTContext &Ctx) {
349 DeclRefExpr::DeclRefExpr(ASTContext &Ctx, function in class:DeclRefExpr
386 DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
402 DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
416 std::size_t Size = sizeof(DeclRefExpr);
426 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
427 return new (Mem) DeclRefExpr(Contex
[all...]
/external/clang/include/clang/AST/
H A DExpr.h857 class DeclRefExpr : public Expr { class in namespace:clang
876 return const_cast<DeclRefExpr *>(this)->getInternalQualifierLoc();
895 return const_cast<DeclRefExpr *>(this)->getInternalFoundDecl();
898 DeclRefExpr(ASTContext &Ctx,
908 explicit DeclRefExpr(EmptyShell Empty) function in class:clang::DeclRefExpr
916 DeclRefExpr(ValueDecl *D, bool refersToEnclosingLocal, QualType T, function in class:clang::DeclRefExpr
929 static DeclRefExpr *Create(ASTContext &Context,
939 static DeclRefExpr *Create(ASTContext &Context,
950 static DeclRefExpr *CreateEmpty(ASTContext &Context,
1028 return const_cast<DeclRefExpr*>(thi
[all...]

Completed in 222 milliseconds