Searched defs:FTP (Results 1 - 10 of 10) sorted by relevance

/external/clang/lib/CodeGen/
H A DCodeGenABITypes.cpp58 const FunctionProtoType *FTP) {
59 return CGM->getTypes().arrangeCXXMethodType(RD, FTP);
57 arrangeCXXMethodType(const CXXRecordDecl *RD, const FunctionProtoType *FTP) argument
H A DCGCall.cpp93 CanQual<FunctionProtoType> FTP,
95 RequiredArgs required = RequiredArgs::forPrototypePlus(FTP, prefix.size());
97 for (unsigned i = 0, e = FTP->getNumParams(); i != e; ++i)
98 prefix.push_back(FTP->getParamType(i));
99 CanQualType resultType = FTP->getReturnType().getUnqualifiedType();
108 CanQual<FunctionProtoType> FTP) {
109 return arrangeLLVMFunctionInfo(CGT, false, prefix, FTP, FTP->getExtInfo());
116 CanQual<FunctionProtoType> FTP) {
117 FunctionType::ExtInfo extInfo = FTP
90 arrangeLLVMFunctionInfo(CodeGenTypes &CGT, bool IsInstanceMethod, SmallVectorImpl<CanQualType> &prefix, CanQual<FunctionProtoType> FTP, FunctionType::ExtInfo extInfo) argument
106 arrangeFreeFunctionType(CodeGenTypes &CGT, SmallVectorImpl<CanQualType> &prefix, CanQual<FunctionProtoType> FTP) argument
114 arrangeCXXMethodType(CodeGenTypes &CGT, SmallVectorImpl<CanQualType> &prefix, CanQual<FunctionProtoType> FTP) argument
124 arrangeFreeFunctionType(CanQual<FunctionProtoType> FTP) argument
185 arrangeCXXMethodType(const CXXRecordDecl *RD, const FunctionProtoType *FTP) argument
231 CanQual<FunctionProtoType> FTP = GetFormalType(D); local
283 CanQual<FunctionProtoType> FTP = GetFormalType(D); local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-commons-net.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp593 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>(); local
594 if (!FTP)
597 if (FTP->getNumParams() == 1) {
600 const PointerType *PT = FTP->getParamType(0)->getAs<PointerType>();
606 } else if (FTP->getNumParams() != 0)
636 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>(); local
637 if (!FTP)
641 if (FTP->getNumParams() != 0)
711 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>(); local
712 if (!FTP)
[all...]
H A DRetainCountChecker.cpp1236 const FunctionProtoType* FTP = dyn_cast<FunctionProtoType>(FT); local
1237 if (!FTP || FTP->getNumParams() != 1)
/external/smack/src/org/xbill/DNS/
H A DWKSRecord.java257 public static final int FTP = 21; field in class:WKSRecord.Service
301 /** NI FTP */
319 /** VIA Systems - FTP */
484 services.add(FTP, "ftp");
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp3737 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local
3738 // FTP will be null for closures that don't take arguments.
3744 if (FTP) {
3745 for (auto &I : FTP->param_types()) {
3800 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local
3801 // FTP will be null for closures that don't take arguments.
3813 if (FTP) {
3814 for (auto &I : FTP->param_types()) {
4006 const FunctionProtoType *FTP; local
4009 FTP
4024 const FunctionProtoType *FTP; local
[all...]
H A DRewriteModernObjC.cpp4655 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local
4656 // FTP will be null for closures that don't take arguments.
4662 if (FTP) {
4663 for (auto &I : FTP->param_types()) {
4716 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local
4717 // FTP will be null for closures that don't take arguments.
4729 if (FTP) {
4730 for (auto &I : FTP->param_types()) {
4939 const FunctionProtoType *FTP; local
4942 FTP
4957 const FunctionProtoType *FTP; local
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp2837 if (FunctionProtoType *FTP =
2839 return QualType(FTP, 0);
2901 FunctionProtoType *FTP = (FunctionProtoType*) Allocate(Size, TypeAlignment); local
2903 new (FTP) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI);
2904 Types.push_back(FTP);
2905 FunctionProtoTypes.InsertNode(FTP, InsertPos);
2906 return QualType(FTP, 0);
/external/clang/lib/Sema/
H A DSemaDecl.cpp7992 const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT); local
7993 unsigned nparams = FTP->getNumParams();
8018 QualType AT = FTP->getParamType(i);

Completed in 261 milliseconds