Home
last modified time | relevance | path

Searched defs:FTD (Results 1 – 25 of 29) sorted by relevance

12

/freebsd-src/contrib/llvm-project/clang/include/clang/Sema/
H A DDelayedDiagnostic.h247 struct FTD { global() struct
255 OperandTypeFTD global() argument
/freebsd-src/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFindingAction.cpp85 if (const auto *FTD = FD->getPrimaryTemplate()) in Find() local
138 void handleFunctionTemplateDecl(const FunctionTemplateDecl *FTD) { in handleFunctionTemplateDecl()
170 if (const auto *FTD = dyn_cast<FunctionTemplateDecl>(D)) in addUSRsOfCtorDtors() local
/freebsd-src/contrib/llvm-project/clang/include/clang/AST/
H A DDeclFriend.h151 if (const auto *FTD = dyn_cast<FunctionTemplateDecl>(ND)) in getSourceRange() local
H A DJSONNodeDumper.h441 VisitFunctionTemplateDecl(const FunctionTemplateDecl * FTD) VisitFunctionTemplateDecl() argument
/freebsd-src/contrib/llvm-project/clang/lib/Analysis/
H A DCallGraph.cpp83 if (FunctionTemplateDecl *FTD = LE->getDependentCallOperator()) in VisitLambdaExpr() local
H A DUninitializedValues.cpp425 if (FunctionTemplateDecl *FTD = FD->getPrimaryTemplate()) in hasTrivialBody() local
/freebsd-src/contrib/llvm-project/clang/lib/AST/
H A DComment.cpp268 const FunctionTemplateDecl *FTD = cast<FunctionTemplateDecl>(CommentDecl); in fill() local
H A DDeclBase.cpp230 if (const auto *FTD = dyn_cast<FunctionTemplateDecl>(this)) getAsFunction() local
712 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(this)) getAvailability() local
H A DDeclPrinter.cpp919 else if (FunctionTemplateDecl *FTD = VisitFriendDecl() local
H A DMicrosoftMangle.cpp131 if (const auto *FTD = dyn_cast<FunctionTemplateDecl>(ND)) in getStructor() local
135 if (const auto *FTD = FD->getPrimaryTemplate()) in getStructor() local
H A DItaniumMangle.cpp1476 auto *FTD = dyn_cast<FunctionTemplateDecl>(ND); mangleUnqualifiedName() local
5828 if (auto *FTD = dyn_cast_or_null<FunctionTemplateDecl>(ResolvedTemplate)) { isOverloadable() local
H A DStmtPrinter.cpp1605 if (auto *FTD = FD->getPrimaryTemplate()) VisitMemberExpr() local
/freebsd-src/contrib/llvm-project/clang/lib/Frontend/
H A DInterfaceStubFunctionsConsumer.cpp150 HandleTemplateSpecializations(const FunctionTemplateDecl & FTD,MangledSymbols & Symbols,int RDO) HandleTemplateSpecializations() argument
/freebsd-src/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp48 auto *FTD = FD ? FD->getDescribedFunctionTemplate() : nullptr; in addUnexpanded() local
H A DSemaTemplateInstantiateDecl.cpp329 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(New)) instantiateOMPDeclareSimdDeclAttr() local
412 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(New)) instantiateOMPDeclareVariantAttr() local
4858 InstantiateFunctionDeclaration(FunctionTemplateDecl * FTD,const TemplateArgumentList * Args,SourceLocation Loc) InstantiateFunctionDeclaration() argument
[all...]
H A DSemaAccess.cpp543 FTD = (*I)->getDescribedFunctionTemplate(); in MatchesFriend() local
H A DSemaLambda.cpp2307 FunctionTemplateDecl *FTD = FD->getPrimaryTemplate(); getPatternFunctionDecl() local
H A DSemaTemplateInstantiate.cpp232 HandleFunctionTemplateDecl(const FunctionTemplateDecl * FTD,MultiLevelTemplateArgumentList & Result) HandleFunctionTemplateDecl() argument
391 } else if (const auto *FTD = dyn_cast<FunctionTemplateDecl>(CurDecl)) { getTemplateInstantiationArgs() local
[all...]
H A DSemaLookup.cpp5563 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(D)) ValidateCandidate() local
5601 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND)) ValidateCandidate() local
H A DSemaDeclCXX.cpp1254 if (FunctionTemplateDecl *FTD = checkTupleLikeDecomposition() local
1658 if (auto *FTD = FD->getDescribedFunctionTemplate()) CheckCXXDefaultArguments() local
6241 } else if (auto *FTD = dyn_cast<FunctionTemplateDecl>(D)) { CheckAbstractClassUsage() local
10683 if (FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate()) ActOnReenterTemplateScope() local
18078 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND)) ActOnFriendFunctionDecl() local
18203 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(Dcl)) { SetDeclDefaulted() local
[all...]
H A DSemaCodeComplete.cpp3933 if (const auto *FTD = dyn_cast<FunctionTemplateDecl>(TD)) templateResultType() local
5635 else if (const auto *FTD = llvm::dyn_cast<FunctionTemplateDecl>(D)) getApproximateType() local
6411 } else if (auto *FTD = dyn_cast<FunctionTemplateDecl>(C)) { ProduceConstructorSignatureHelp() local
H A DSemaOpenMP.cpp7007 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(ADecl)) ActOnOpenMPDeclareSimdDirective() local
7319 auto *FTD = cast<FunctionTemplateDecl>(CandidateDecl); ActOnStartOfFunctionDefinitionInOpenMPDeclareVariantScope() local
7527 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(ADecl)) checkOpenMPDeclareVariantFunction() local
23433 if (const auto *FTD = dyn_cast<FunctionTemplateDecl>(D)) checkDeclIsAllowedInOpenMPTarget() local
H A DSemaTemplateDeduction.cpp1223 getFirstInnerIndex(FunctionTemplateDecl * FTD) getFirstInnerIndex() argument
H A DSemaOverload.cpp7589 isNonDependentlyExplicit(FunctionTemplateDecl * FTD) isNonDependentlyExplicit() argument
9992 auto *FTD = cast<FunctionTemplateDecl>(*I); AddArgumentDependentLookupCandidates() local
/freebsd-src/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp4255 else if (auto *FTD = dyn_cast<FunctionTemplateDecl>(D)) loadDeclUpdateRecords() local

12