Home
last modified time | relevance | path

Searched defs:FDecl (Results 1 – 19 of 19) sorted by relevance

/llvm-project/clang-tools-extra/clang-tidy/utils/
H A DExceptionSpecAnalyzer.cpp45 ExceptionSpecAnalyzer::analyzeFieldDecl(const FieldDecl *FDecl, in analyzeFieldDecl()
101 for (const auto *FDecl : RecordDecl->fields()) in analyzeRecord() local
/llvm-project/clang-tools-extra/clang-tidy/readability/
H A DRedundantStringInitCheck.cpp132 if (const auto *FDecl = Result.Nodes.getNodeAs<FieldDecl>("fieldDecl")) { in check() local
H A DIdentifierNamingCheck.cpp1030 const auto *FDecl = in isParamInMainLikeFunction() local
[all...]
/llvm-project/llvm/unittests/Analysis/
H A DTargetLibraryInfoTest.cpp42 isLibFunc(const Function * FDecl,LibFunc ExpectedLF) isLibFunc() argument
/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/
H A DProTypeVarargCheck.cpp158 const auto *FDecl = dyn_cast<FunctionDecl>(C->getCalleeDecl()); in hasSingleVariadicArgumentWithValue() local
/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h352 getLibFunc(const Function & FDecl,LibFunc & F) getLibFunc() argument
/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp3112 for (const auto *NonNull : FDecl->specific_attrs<NonNullAttr>()) { in CheckArgAlignment() argument
2056 CheckBuiltinFunctionCall(FunctionDecl * FDecl,unsigned BuiltinID,CallExpr * TheCall) CheckBuiltinFunctionCall() argument
3017 CheckNonNullArguments(Sema & S,const NamedDecl * FDecl,const FunctionProtoType * Proto,ArrayRef<const Expr * > Args,SourceLocation CallSiteLoc) CheckNonNullArguments() argument
3147 checkCall(NamedDecl * FDecl,const FunctionProtoType * Proto,const Expr * ThisArg,ArrayRef<const Expr * > Args,bool IsMemberFunction,SourceLocation Loc,SourceRange Range,VariadicCallType CallType) checkCall() argument
3338 CheckConstructorCall(FunctionDecl * FDecl,QualType ThisType,ArrayRef<const Expr * > Args,const FunctionProtoType * Proto,SourceLocation Loc) CheckConstructorCall() argument
3354 CheckFunctionCall(FunctionDecl * FDecl,CallExpr * TheCall,const FunctionProtoType * Proto) CheckFunctionCall() argument
4124 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl()); BuiltinAtomicOverloaded() local
4495 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl()); BuiltinNontemporalOverloaded() local
5304 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl()); BuiltinConstantArg() local
8073 getAbsoluteValueFunctionKind(const FunctionDecl * FDecl) getAbsoluteValueFunctionKind() argument
8128 const FunctionDecl *FDecl = nullptr; emitReplacement() local
8189 IsStdFunction(const FunctionDecl * FDecl,const char (& Str)[StrLen]) IsStdFunction() argument
8202 CheckInfNaNFunction(const CallExpr * Call,const FunctionDecl * FDecl) CheckInfNaNFunction() argument
8218 CheckAbsoluteValueFunction(const CallExpr * Call,const FunctionDecl * FDecl) CheckAbsoluteValueFunction() argument
8298 CheckMaxUnsignedZero(const CallExpr * Call,const FunctionDecl * FDecl) CheckMaxUnsignedZero() argument
[all...]
H A DSemaExpr.cpp1025 DefaultVariadicArgumentPromotion(Expr * E,VariadicCallType CT,FunctionDecl * FDecl) DefaultVariadicArgumentPromotion() argument
3108 if (const auto *FDecl = dyn_cast<FunctionDecl>(D)) { UseArgumentDependentLookup() local
5612 getVariadicCallType(FunctionDecl * FDecl,const FunctionProtoType * Proto,Expr * Fn) getVariadicCallType() argument
5657 TryTypoCorrectionForCall(Sema & S,Expr * Fn,FunctionDecl * FDecl,ArrayRef<Expr * > Args) TryTypoCorrectionForCall() argument
5717 ConvertArgumentsForCall(CallExpr * Call,Expr * Fn,FunctionDecl * FDecl,const FunctionProtoType * Proto,ArrayRef<Expr * > Args,SourceLocation RParenLoc,bool IsExecConfig) ConvertArgumentsForCall() argument
5856 GatherArgumentsForCall(SourceLocation CallLoc,FunctionDecl * FDecl,const FunctionProtoType * Proto,unsigned FirstParam,ArrayRef<Expr * > Args,SmallVectorImpl<Expr * > & AllArgs,VariadicCallType CallType,bool AllowExplicit,bool IsListInitialization) GatherArgumentsForCall() argument
6119 rewriteBuiltinFunctionDecl(Sema * Sema,ASTContext & Context,FunctionDecl * FDecl,MultiExprArg ArgExprs) rewriteBuiltinFunctionDecl() argument
6479 FunctionDecl *FDecl = dyn_cast<FunctionDecl>(NDecl); BuildCallExpr() local
6625 FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl); BuildResolvedCallExpr() local
[all...]
H A DSemaObjC.cpp2270 DiagnoseCStringFormatDirectiveInCFAPI(const NamedDecl * FDecl,Expr ** Args,unsigned NumArgs) DiagnoseCStringFormatDirectiveInCFAPI() argument
H A DSemaOverload.cpp13951 FunctionDecl *FDecl = (*Best)->Function; FinishOverloadedCallExpr() local
14022 FunctionDecl *FDecl = (*Best)->Function; FinishOverloadedCallExpr() local
14088 const FunctionDecl *FDecl = Best->Function; BuildOverloadedCallExpr() local
[all...]
H A DSemaCodeComplete.cpp3809 auto FDecl = Result.getFunction(); getParameterComment() local
4008 FunctionDecl *FDecl = getFunction(); CreateSignatureString() local
H A DSemaLookup.cpp3257 const FunctionDecl *FDecl = D->getUnderlyingDecl()->getAsFunction(); FindAssociatedClassesAndNamespaces() local
/llvm-project/clang/lib/Analysis/
H A DReachableCode.cpp66 if (const auto *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl())) in isBuiltinUnreachable() local
/llvm-project/llvm/lib/Analysis/
H A DTargetLibraryInfo.cpp1150 getLibFunc(const Function & FDecl,LibFunc & F) const getLibFunc() argument
[all...]
/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp1071 const FunctionDecl *FDecl = CallDecl->getAsFunction(); getPrintfFormatArgumentNum() local
/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp1076 Function *FDecl; importFunction() local
/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp211 if (FunctionDecl *FDecl = dyn_cast<FunctionDecl>(*I)) { HandleTopLevelDecl() local
5831 FunctionDecl *FDecl = FunctionDefinitionsSeen[i]; HandleTranslationUnit() local
/llvm-project/clang/lib/AST/
H A DExpr.cpp1580 const auto *FDecl = getDirectCallee(); getBuiltinCallee() local
/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp1847 if (const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(TargetDecl)) { in HasStrictReturn() local