HomeSort by: relevance | last modified time | path
    Searched refs:CurDecl (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 4029 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
4031 if (isa<ObjCMethodDecl>(CurDecl))
4033 else if (isa<CXXConstructorDecl>(CurDecl))
4035 else if (isa<CXXDestructorDecl>(CurDecl))
4039 << CurDecl << FunctionKind << RetValExp->getSourceRange();
4047 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
4048 if (isa<CXXConstructorDecl>(CurDecl) ||
4049 isa<CXXDestructorDecl>(CurDecl))
4065 NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
4066 Diag(ReturnLoc, D) << CurDecl << isa<CXXDestructorDecl>(CurDecl
    [all...]
SemaDeclCXX.cpp 2398 CXXRecordDecl *CurDecl = getCurrentClass(S, SS);
2399 return CurDecl && &II == CurDecl->getIdentifier();
2411 CXXRecordDecl *CurDecl;
2414 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
2416 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
2418 if (CurDecl && CurDecl->getIdentifier() && II != CurDecl->getIdentifier() &&
2419 3 * II->getName().edit_distance(CurDecl->getIdentifier()->getName()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 2170 const Decl *CurDecl = dyn_cast_or_null<Decl>(Context);
2172 CurDecl ? PredefinedExpr::ComputeName(PredefinedExpr::Function, CurDecl)
ASTContext.cpp 10988 for (auto *CurDecl :
10990 FunctionDecl *CurFD = CurDecl->getAsFunction()->getMostRecentDecl();

Completed in 69 milliseconds