HomeSort by relevance Sort by last modified time
    Searched refs:CurrentDecl (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/AST/
CommentSema.cpp 811 return isFunctionDecl() && ThisDeclInfo->CurrentDecl &&
812 isa<FunctionDecl>(ThisDeclInfo->CurrentDecl);
819 dyn_cast<FunctionDecl>(ThisDeclInfo->CurrentDecl))
822 dyn_cast<FunctionTemplateDecl>(ThisDeclInfo->CurrentDecl))
825 dyn_cast<ObjCMethodDecl>(ThisDeclInfo->CurrentDecl))
831 return isFunctionDecl() && ThisDeclInfo->CurrentDecl &&
832 isa<ObjCMethodDecl>(ThisDeclInfo->CurrentDecl);
841 if (const VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDeclInfo->CurrentDecl)) {
854 return ThisDeclInfo->CurrentDecl->getKind() == Decl::ObjCProperty;
880 dyn_cast_or_null<RecordDecl>(ThisDeclInfo->CurrentDecl))
    [all...]
Comment.cpp 146 CurrentDecl = CommentDecl;
Expr.cpp 475 std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) {
476 ASTContext &Context = CurrentDecl->getASTContext();
479 if (const NamedDecl *ND = dyn_cast<NamedDecl>(CurrentDecl)) {
502 if (auto *BD = dyn_cast<BlockDecl>(CurrentDecl)) {
507 auto DC = CurrentDecl->getDeclContext();
518 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
658 if (const CapturedDecl *CD = dyn_cast<CapturedDecl>(CurrentDecl)) {
668 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
690 if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {
    [all...]
  /external/clang/include/clang/AST/
Comment.h 991 /// CurrentDecl is the declaration with which the FullComment is associated.
995 /// \c CurrentDecl too (for example, for a redeclaration or an overrider of
998 /// The information in the DeclInfo corresponds to CurrentDecl.
999 const Decl *CurrentDecl;
Expr.h     [all...]

Completed in 515 milliseconds