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

  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentSema.cpp 830 return isFunctionDecl() && ThisDeclInfo->CurrentDecl &&
831 isa<FunctionDecl>(ThisDeclInfo->CurrentDecl);
835 if (!isFunctionDecl() || !ThisDeclInfo->CurrentDecl)
838 dyn_cast<FunctionDecl>(ThisDeclInfo->CurrentDecl))
841 dyn_cast<FunctionTemplateDecl>(ThisDeclInfo->CurrentDecl))
844 dyn_cast<ObjCMethodDecl>(ThisDeclInfo->CurrentDecl))
847 dyn_cast<TypedefNameDecl>(ThisDeclInfo->CurrentDecl)) {
858 return isFunctionDecl() && ThisDeclInfo->CurrentDecl &&
859 isa<ObjCMethodDecl>(ThisDeclInfo->CurrentDecl);
868 if (const VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDeclInfo->CurrentDecl)) {
    [all...]
Comment.cpp 221 CurrentDecl = CommentDecl;
Expr.cpp 566 std::string PredefinedExpr::ComputeName(IdentKind IK, const Decl *CurrentDecl) {
567 ASTContext &Context = CurrentDecl->getASTContext();
570 if (const NamedDecl *ND = dyn_cast<NamedDecl>(CurrentDecl)) {
596 if (isa<BlockDecl>(CurrentDecl)) {
600 auto DC = CurrentDecl->getDeclContext();
613 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
760 if (const CapturedDecl *CD = dyn_cast<CapturedDecl>(CurrentDecl)) {
770 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
791 if (isa<TranslationUnitDecl>(CurrentDecl) && IK == PrettyFunction) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Comment.h 985 /// CurrentDecl is the declaration with which the FullComment is associated.
989 /// \c CurrentDecl too (for example, for a redeclaration or an overrider of
992 /// The information in the DeclInfo corresponds to CurrentDecl.
993 const Decl *CurrentDecl;
Expr.h 2021 static std::string ComputeName(IdentKind IK, const Decl *CurrentDecl);

Completed in 64 milliseconds