Searched refs:FunDecl (Results 1 - 8 of 8) sorted by path

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h244 StringRef getCalleeName(const FunctionDecl *FunDecl) const;
248 const FunctionDecl *FunDecl = getCalleeDecl(CE); local
249 if (FunDecl)
250 return FunDecl->getIdentifier();
257 const FunctionDecl *FunDecl = getCalleeDecl(CE); local
258 return getCalleeName(FunDecl);
/external/clang/lib/Analysis/
H A DConsumed.cpp184 static bool isTestingFunction(const FunctionDecl *FunDecl) { argument
185 return FunDecl->hasAttr<TestTypestateAttr>();
264 static ConsumedState testsFor(const FunctionDecl *FunDecl) { argument
265 assert(isTestingFunction(FunDecl));
266 switch (FunDecl->getAttr<TestTypestateAttr>()->getTestState()) {
486 const FunctionDecl *FunDecl,
575 const FunctionDecl *FunDecl,
579 const CallableWhenAttr *CWAttr = FunDecl->getAttr<CallableWhenAttr>();
590 FunDecl->getNameAsString(), PInfo.getVar()->getNameAsString(),
600 FunDecl
574 checkCallability(const PropagationInfo &PInfo, const FunctionDecl *FunDecl, SourceLocation BlameLoc) argument
743 const FunctionDecl *FunDecl = Call->getDirectCallee(); local
821 const FunctionDecl *FunDecl = local
[all...]
H A DThreadSafety.cpp1757 NamedDecl *FunDecl = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl());
1758 if(!FunDecl || !FunDecl->hasAttrs())
1765 for (auto *Attr : FunDecl->getAttrs()) {
1770 getMutexIDs(ExclusiveLocksToAdd, A, Exp, FunDecl,
1778 getMutexIDs(SharedLocksToAdd, A, Exp, FunDecl,
/external/clang/lib/Parse/
H A DParseDeclCXX.cpp2253 Decl *FunDecl = local
2257 if (FunDecl) {
2259 CommonLateParsedAttrs[i]->addDecl(FunDecl);
2262 LateParsedAttrs[i]->addDecl(FunDecl);
/external/clang/lib/Sema/
H A DSemaOverload.cpp9782 if (FunctionDecl *FunDecl = dyn_cast<FunctionDecl>(Fn)) {
9785 if (S.CheckCUDATarget(Caller, FunDecl))
9791 FunDecl->getReturnType()->isUndeducedType() &&
9792 S.DeduceReturnType(FunDecl, SourceExpr->getLocStart(), Complain))
9797 FunDecl->getType()) ||
9798 S.IsNoReturnConversion(FunDecl->getType(), TargetFunctionType,
9801 cast<FunctionDecl>(FunDecl->getCanonicalDecl())));
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp29 StringRef CheckerContext::getCalleeName(const FunctionDecl *FunDecl) const {
30 if (!FunDecl)
32 IdentifierInfo *funI = FunDecl->getIdentifier();
/external/lldb/include/lldb/Expression/
H A DASTResultSynthesizer.h137 /// @param[in] FunDecl
140 bool SynthesizeFunctionResult(clang::FunctionDecl *FunDecl);
/external/lldb/source/Expression/
H A DASTResultSynthesizer.cpp130 ASTResultSynthesizer::SynthesizeFunctionResult (FunctionDecl *FunDecl) argument
137 FunctionDecl *function_decl = FunDecl;

Completed in 361 milliseconds