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 800 return isFunctionDecl() && ThisDeclInfo->CurrentDecl &&
801 isa<FunctionDecl>(ThisDeclInfo->CurrentDecl);
808 dyn_cast<FunctionDecl>(ThisDeclInfo->CurrentDecl))
811 dyn_cast<ObjCMethodDecl>(ThisDeclInfo->CurrentDecl))
817 return isFunctionDecl() && ThisDeclInfo->CurrentDecl &&
818 isa<ObjCMethodDecl>(ThisDeclInfo->CurrentDecl);
827 if (const VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDeclInfo->CurrentDecl)) {
840 return ThisDeclInfo->CurrentDecl->getKind() == Decl::ObjCProperty;
866 dyn_cast_or_null<RecordDecl>(ThisDeclInfo->CurrentDecl))
876 return ThisDeclInfo->CurrentDecl &
    [all...]
Comment.cpp 145 CurrentDecl = CommentDecl;
Expr.cpp 478 std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) {
479 ASTContext &Context = CurrentDecl->getASTContext();
481 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
596 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
618 if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {
    [all...]
  /external/clang/include/clang/AST/
Comment.h 970 /// CurrentDecl is the declaration with which the FullComment is associated.
974 /// \c CurrentDecl too (for example, for a redeclaration or an overrider of
977 /// The information in the DeclInfo corresponds to CurrentDecl.
978 const Decl *CurrentDecl;
Expr.h     [all...]

Completed in 368 milliseconds