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

/external/clang/lib/Index/
H A DASTVisitor.h31 ASTVisitor() : CurrentDecl(0) { }
33 Decl *CurrentDecl; member in class:clang::idx::ASTVisitor
47 Decl *PrevDecl = CurrentDecl;
48 CurrentDecl = D;
50 CurrentDecl = PrevDecl;
/external/clang/lib/AST/
H A DExpr.cpp348 std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) { argument
349 ASTContext &Context = CurrentDecl->getASTContext();
351 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
407 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
429 if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {

Completed in 88 milliseconds