HomeSort by relevance Sort by last modified time
    Searched defs:DeclRefExpr (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/AST/
Expr.cpp 219 void DeclRefExpr::computeDependence() {
253 DeclRefExpr::DeclRefExpr(NestedNameSpecifierLoc QualifierLoc,
282 DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
295 DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
307 std::size_t Size = sizeof(DeclRefExpr);
315 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
316 return new (Mem) DeclRefExpr(QualifierLoc, D, NameInfo, FoundD, TemplateArgs
    [all...]
  /external/clang/include/clang/AST/
Expr.h 732 class DeclRefExpr : public Expr {
751 return const_cast<DeclRefExpr *>(this)->getInternalQualifierLoc();
770 return const_cast<DeclRefExpr *>(this)->getInternalFoundDecl();
773 DeclRefExpr(NestedNameSpecifierLoc QualifierLoc,
780 explicit DeclRefExpr(EmptyShell Empty)
788 DeclRefExpr(ValueDecl *D, QualType T, ExprValueKind VK, SourceLocation L,
799 static DeclRefExpr *Create(ASTContext &Context,
807 static DeclRefExpr *Create(ASTContext &Context,
816 static DeclRefExpr *CreateEmpty(ASTContext &Context,
    [all...]

Completed in 1394 milliseconds