Home
last modified time | relevance | path

Searched refs:doesThisDeclarationHaveABody (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DModuleBuilder.cpp185 assert(D->doesThisDeclarationHaveABody()); in HandleInlineFunctionDefinition()
H A DCodeGenModule.cpp2182 if (!FD->doesThisDeclarationHaveABody()) { in EmitGlobal()
2866 if (FD->doesThisDeclarationHaveABody()) { in GetOrCreateLLVMFunction()
5063 if (!cast<FunctionDecl>(D)->doesThisDeclarationHaveABody()) in AddDeferredUnusedCoverageMapping()
H A DTargetInfo.cpp782 if (!FD->doesThisDeclarationHaveABody() && !FD->hasPrototype()) in setTargetAttributes()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DNSErrorChecker.cpp102 if (!D->doesThisDeclarationHaveABody()) in checkASTDecl()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclPrinter.cpp460 cast<FunctionDecl>(*D)->doesThisDeclarationHaveABody()) || in VisitDeclContext()
462 cast<FunctionTemplateDecl>(*D)->getTemplatedDecl()->doesThisDeclarationHaveABody()))) in VisitDeclContext()
637 } else if (D->doesThisDeclarationHaveABody() && !D->hasPrototype()) { in VisitFunctionDecl()
718 else if (D->doesThisDeclarationHaveABody()) { in VisitFunctionDecl()
H A DCommentSema.cpp688 FD->doesThisDeclarationHaveABody()) in checkDeprecatedCommand()
H A DDecl.cpp2697 if (I->doesThisDeclarationHaveABody()) { in hasBody()
3143 assert(!doesThisDeclarationHaveABody() && in doesDeclarationForceExternallyVisibleDefinition()
3252 assert((doesThisDeclarationHaveABody() || willHaveBody()) && in isInlineDefinitionExternallyVisible()
H A DASTDumper.cpp651 if (D->doesThisDeclarationHaveABody()) in VisitFunctionDecl()
H A DDeclCXX.cpp2205 (fn->doesThisDeclarationHaveABody() || fn->willHaveBody()); in hasInlineBody()
H A DASTImporter.cpp2985 if (D->doesThisDeclarationHaveABody() && FoundFunction->hasBody()) in VisitFunctionDecl()
3005 if (D->doesThisDeclarationHaveABody() && in VisitFunctionDecl()
3186 if (D->doesThisDeclarationHaveABody()) { in VisitFunctionDecl()
H A DASTContext.cpp9845 if (!FD->doesThisDeclarationHaveABody()) in DeclMustBeEmitted()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterDecl.cpp278 Record.push_back(FD->doesThisDeclarationHaveABody()); in Visit()
279 if (FD->doesThisDeclarationHaveABody()) in Visit()
2323 assert(FD->doesThisDeclarationHaveABody()); in AddFunctionDefinition()
H A DASTReaderDecl.cpp2787 return Func->doesThisDeclarationHaveABody() || HasBody; in isConsumerInterestedIn()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclCXX.cpp5478 if (MD->doesThisDeclarationHaveABody()) in CheckAbstractClassUsage()
10996 !Constructor->doesThisDeclarationHaveABody() && in DefineImplicitDefaultConstructor()
11133 !Constructor->doesThisDeclarationHaveABody() && in DefineInheritingConstructor()
11274 !Destructor->doesThisDeclarationHaveABody() && in DefineImplicitDestructor()
11927 !CopyAssignOperator->doesThisDeclarationHaveABody() && in DefineImplicitCopyAssignment()
12289 !MoveAssignOperator->doesThisDeclarationHaveABody() && in DefineImplicitMoveAssignment()
12587 !CopyConstructor->doesThisDeclarationHaveABody() && in DefineImplicitCopyConstructor()
12717 !MoveConstructor->doesThisDeclarationHaveABody() && in DefineImplicitMoveConstructor()
H A DSemaDecl.cpp1514 if (D->doesThisDeclarationHaveABody()) in IsDisallowedCopyOrAssign()
1585 if (FD->doesThisDeclarationHaveABody() && in ShouldWarnIfUnusedFileScopedDecl()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1776 return Node.doesThisDeclarationHaveABody() ? Node.getBody() : nullptr;
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDecl.h1989 bool doesThisDeclarationHaveABody() const { in doesThisDeclarationHaveABody() function