Searched refs:FTP (Results 1 - 14 of 14) sorted by relevance

/freebsd-11-stable/etc/pam.d/
H A DMakefile30 FILESGROUPS+= FTP
31 FTP+= ftpd
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenABITypes.cpp50 const FunctionProtoType *FTP,
52 return CGM.getTypes().arrangeCXXMethodType(RD, FTP, MD);
48 arrangeCXXMethodType(CodeGenModule &CGM, const CXXRecordDecl *RD, const FunctionProtoType *FTP, const CXXMethodDecl *MD) argument
H A DCodeGenTypes.h257 const FunctionProtoType *FTP,
H A DCGCall.cpp178 CanQual<FunctionProtoType> FTP) {
180 RequiredArgs Required = RequiredArgs::forPrototypePlus(FTP, prefix.size());
182 appendParameterTypes(CGT, prefix, paramInfos, FTP);
183 CanQualType resultType = FTP->getReturnType().getUnqualifiedType();
187 FTP->getExtInfo(), paramInfos,
194 CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionProtoType> FTP) { argument
197 FTP);
252 const FunctionProtoType *FTP,
261 FTP->getCanonicalTypeUnqualified().getAs<FunctionProtoType>());
322 CanQual<FunctionProtoType> FTP local
176 arrangeLLVMFunctionInfo(CodeGenTypes &CGT, bool instanceMethod, SmallVectorImpl<CanQualType> &prefix, CanQual<FunctionProtoType> FTP) argument
251 arrangeCXXMethodType(const CXXRecordDecl *RD, const FunctionProtoType *FTP, const CXXMethodDecl *MD) argument
532 CanQual<FunctionProtoType> FTP = GetFormalType(MD); local
544 CanQual<FunctionProtoType> FTP = GetFormalType(CD); local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCodeGenABITypes.h65 const FunctionProtoType *FTP,
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp860 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>(); local
861 if (!FTP)
864 if (FTP->getNumParams() == 1) {
867 const PointerType *PT = FTP->getParamType(0)->getAs<PointerType>();
873 } else if (FTP->getNumParams() != 0)
903 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>(); local
904 if (!FTP)
908 if (FTP->getNumParams() != 0)
1026 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>(); local
1027 if (!FTP)
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp3699 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local
3700 // FTP will be null for closures that don't take arguments.
3706 if (FTP) {
3707 for (auto &I : FTP->param_types()) {
3762 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local
3763 // FTP will be null for closures that don't take arguments.
3775 if (FTP) {
3776 for (auto &I : FTP->param_types()) {
3961 const FunctionProtoType *FTP; local
3964 FTP
3979 const FunctionProtoType *FTP; local
[all...]
H A DRewriteModernObjC.cpp4531 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local
4532 // FTP will be null for closures that don't take arguments.
4538 if (FTP) {
4539 for (auto &I : FTP->param_types()) {
4592 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local
4593 // FTP will be null for closures that don't take arguments.
4605 if (FTP) {
4606 for (auto &I : FTP->param_types()) {
4805 const FunctionProtoType *FTP; local
4808 FTP
4823 const FunctionProtoType *FTP; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DRetainSummaryManager.cpp787 const FunctionProtoType* FTP = dyn_cast<FunctionProtoType>(FT); local
788 if (!FTP || FTP->getNumParams() != 1)
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dlog.c86 L(FTP),
H A Dverify_krb5_conf.c253 L(FTP),
/freebsd-11-stable/share/mk/
H A Dsrc.opts.mk99 FTP \
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4043 auto *FTP = (FunctionProtoType *)Allocate(Size, TypeAlignment); local
4045 new (FTP) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI);
4046 Types.push_back(FTP);
4048 FunctionProtoTypes.InsertNode(FTP, InsertPos);
4049 return QualType(FTP, 0);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp10797 const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT); local
10798 unsigned nparams = FTP->getNumParams();
10803 if (FTP->isVariadic()) {
10829 QualType AT = FTP->getParamType(i);

Completed in 533 milliseconds