Home
last modified time | relevance | path

Searched refs:FunDecl (Results 1 – 10 of 10) sorted by relevance

/openbsd/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h352 StringRef getCalleeName(const FunctionDecl *FunDecl) const;
356 const FunctionDecl *FunDecl = getCalleeDecl(CE); in getCalleeIdentifier() local
357 if (FunDecl) in getCalleeIdentifier()
358 return FunDecl->getIdentifier(); in getCalleeIdentifier()
365 const FunctionDecl *FunDecl = getCalleeDecl(CE); in getCalleeName() local
366 return getCalleeName(FunDecl); in getCalleeName()
/openbsd/gnu/llvm/clang/lib/Analysis/
H A DConsumed.cpp186 return FunDecl->hasAttr<TestTypestateAttr>(); in isTestingFunction()
266 assert(isTestingFunction(FunDecl)); in testsFor()
495 const FunctionDecl *FunDecl,
741 const FunctionDecl *FunDecl = Call->getDirectCallee(); in VisitCallExpr() local
742 if (!FunDecl) in VisitCallExpr()
752 handleCall(Call, nullptr, FunDecl); in VisitCallExpr()
753 propagateReturnType(Call, FunDecl); in VisitCallExpr()
815 if (!FunDecl) return; in VisitCXXOperatorCallExpr()
819 if (!handleCall(Call, Call->getArg(0), FunDecl)) in VisitCXXOperatorCallExpr()
827 handleCall(Call, Call->getArg(0), FunDecl); in VisitCXXOperatorCallExpr()
[all …]
H A DThreadSafety.cpp1476 auto *FunDecl = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl()); in getEdgeLockset() local
1477 if(!FunDecl || !FunDecl->hasAttrs()) in getEdgeLockset()
1484 for (const auto *Attr : FunDecl->attrs()) { in getEdgeLockset()
1489 Exp, FunDecl, PredBlock, CurrBlock, A->getSuccessValue(), in getEdgeLockset()
1495 getMutexIDs(ExclusiveLocksToAdd, A, Exp, FunDecl, PredBlock, CurrBlock, in getEdgeLockset()
1501 getMutexIDs(SharedLocksToAdd, A, Exp, FunDecl, PredBlock, CurrBlock, in getEdgeLockset()
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp31 StringRef CheckerContext::getCalleeName(const FunctionDecl *FunDecl) const { in getCalleeName()
32 if (!FunDecl) in getCalleeName()
34 IdentifierInfo *funI = FunDecl->getIdentifier(); in getCalleeName()
/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.h124 bool SynthesizeFunctionResult(clang::FunctionDecl *FunDecl);
H A DASTResultSynthesizer.cpp115 bool ASTResultSynthesizer::SynthesizeFunctionResult(FunctionDecl *FunDecl) { in SynthesizeFunctionResult() argument
121 FunctionDecl *function_decl = FunDecl; in SynthesizeFunctionResult()
/openbsd/gnu/llvm/llvm/tools/llvm-c-test/
H A Decho.cpp977 goto FunDecl; in declare_symbols()
1001 FunDecl: in declare_symbols()
/openbsd/gnu/llvm/clang/lib/Parse/
H A DParseDeclCXX.cpp2956 Decl *FunDecl = ParseCXXInlineMethodDef(AS, AccessAttrs, DeclaratorInfo, in ParseCXXClassMemberDeclaration() local
2959 if (FunDecl) { in ParseCXXClassMemberDeclaration()
2961 CommonLateParsedAttrs[i]->addDecl(FunDecl); in ParseCXXClassMemberDeclaration()
2964 LateParsedAttrs[i]->addDecl(FunDecl); in ParseCXXClassMemberDeclaration()
2973 return DeclGroupPtrTy::make(DeclGroupRef(FunDecl)); in ParseCXXClassMemberDeclaration()
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaOverload.cpp12380 if (FunctionDecl *FunDecl = dyn_cast<FunctionDecl>(Fn)) { in AddMatchingNonTemplateFunction() local
12383 if (!Caller->isImplicit() && !S.IsAllowedCUDACall(Caller, FunDecl)) in AddMatchingNonTemplateFunction()
12385 if (FunDecl->isMultiVersion()) { in AddMatchingNonTemplateFunction()
12386 const auto *TA = FunDecl->getAttr<TargetAttr>(); in AddMatchingNonTemplateFunction()
12389 const auto *TVA = FunDecl->getAttr<TargetVersionAttr>(); in AddMatchingNonTemplateFunction()
12396 if (completeFunctionType(S, FunDecl, SourceExpr->getBeginLoc(), in AddMatchingNonTemplateFunction()
12402 if (!S.checkAddressOfFunctionIsAvailable(FunDecl)) in AddMatchingNonTemplateFunction()
12407 candidateHasExactlyCorrectType(FunDecl)) { in AddMatchingNonTemplateFunction()
12409 CurAccessFunPair, cast<FunctionDecl>(FunDecl->getCanonicalDecl()))); in AddMatchingNonTemplateFunction()
/openbsd/gnu/llvm/clang/lib/AST/
H A DASTImporter.cpp1698 FunctionDecl *FunDecl; in ImportDeclParts() local
1699 if (isa<RecordDecl>(D) && (FunDecl = dyn_cast<FunctionDecl>(OrigDC)) && in ImportDeclParts()
1700 FunDecl->hasBody()) { in ImportDeclParts()
1707 for (const ParmVarDecl *P : FunDecl->parameters()) { in ImportDeclParts()