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

/external/clang/lib/AST/
H A DExpr.cpp244 void DeclRefExpr::computeDependence(ASTContext &Ctx) {
278 DeclRefExpr::DeclRefExpr(ASTContext &Ctx, function in class:DeclRefExpr
315 DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
331 DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
345 std::size_t Size = sizeof(DeclRefExpr);
355 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
356 return new (Mem) DeclRefExpr(Contex
[all...]
/external/clang/include/clang/AST/
H A DExpr.h791 class DeclRefExpr : public Expr { class in namespace:clang
810 return const_cast<DeclRefExpr *>(this)->getInternalQualifierLoc();
829 return const_cast<DeclRefExpr *>(this)->getInternalFoundDecl();
832 DeclRefExpr(ASTContext &Ctx,
842 explicit DeclRefExpr(EmptyShell Empty) function in class:clang::DeclRefExpr
850 DeclRefExpr(ValueDecl *D, bool refersToEnclosingLocal, QualType T, function in class:clang::DeclRefExpr
863 static DeclRefExpr *Create(ASTContext &Context,
873 static DeclRefExpr *Create(ASTContext &Context,
884 static DeclRefExpr *CreateEmpty(ASTContext &Context,
963 return const_cast<DeclRefExpr*>(thi
[all...]

Completed in 65 milliseconds