Searched refs:FTL (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DComment.cpp165 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
166 ResFTL = FTL;
183 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
184 ResFTL = FTL;
310 FunctionTypeLoc FTL; local
311 if (getFunctionTypeLoc(TL, FTL)) {
312 ParamVars = FTL.getParams();
313 ReturnType = FTL.getReturnLoc().getType();
334 FunctionTypeLoc FTL; local
335 if (getFunctionTypeLoc(TL, FTL)) {
355 FunctionTypeLoc FTL; local
[all...]
H A DDecl.cpp3390 FunctionTypeLoc FTL = getFunctionTypeLoc();
3391 if (!FTL)
3396 SourceRange RTRange = FTL.getReturnLoc().getSourceRange();
3422 FunctionTypeLoc FTL = getFunctionTypeLoc();
3423 return FTL ? FTL.getExceptionSpecRange() : SourceRange();
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp3343 if (auto FTL = TSI->getTypeLoc().getAsAdjusted<FunctionTypeLoc>())
3344 AttrLoc = FTL.getReturnLoc().findNullabilityLoc();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp10672 if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc()
10674 AddConstLoc = getLocForEndOfToken(FTL.getRParenLoc());
14283 if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>())
14288 ? FixItHint::CreateInsertion(FTL.getRParenLoc(), "void")
14344 FunctionTypeLoc FTL = TL.getAsAdjusted<FunctionTypeLoc>(); local
14345 Diag(FTL.getLParenLoc(), diag::warn_strict_prototypes) << 2;

Completed in 168 milliseconds