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 792 return isFunctionDecl() && ThisDeclInfo->CurrentDecl &&
793 isa<FunctionDecl>(ThisDeclInfo->CurrentDecl);
797 return isFunctionDecl() && ThisDeclInfo->CurrentDecl &&
798 isa<ObjCMethodDecl>(ThisDeclInfo->CurrentDecl);
809 if (const VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDeclInfo->CurrentDecl)) {
822 return ThisDeclInfo->CurrentDecl->getKind() == Decl::ObjCProperty;
848 dyn_cast_or_null<RecordDecl>(ThisDeclInfo->CurrentDecl))
858 return ThisDeclInfo->CurrentDecl &&
859 isa<RecordDecl>(ThisDeclInfo->CurrentDecl) &&
868 return ThisDeclInfo->CurrentDecl &
    [all...]
Comment.cpp 145 CurrentDecl = CommentDecl;
Expr.cpp 462 std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) {
463 ASTContext &Context = CurrentDecl->getASTContext();
465 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
580 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
602 if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {
    [all...]
  /external/clang/include/clang/AST/
Comment.h 956 /// CurrentDecl is the declaration with which the FullComment is associated.
960 /// \c CurrentDecl too (for example, for a redeclaration or an overrider of
963 /// The information in the DeclInfo corresponds to CurrentDecl.
964 const Decl *CurrentDecl;
Expr.h     [all...]

Completed in 36 milliseconds