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

/external/clang/lib/CodeGen/
H A DCodeGenABITypes.cpp60 const FunctionProtoType *FTP) {
61 return CGM->getTypes().arrangeCXXMethodType(RD, FTP);
59 arrangeCXXMethodType(const CXXRecordDecl *RD, const FunctionProtoType *FTP) argument
H A DCGCall.cpp99 CanQual<FunctionProtoType> FTP) {
100 RequiredArgs required = RequiredArgs::forPrototypePlus(FTP, prefix.size());
102 prefix.append(FTP->param_type_begin(), FTP->param_type_end());
103 CanQualType resultType = FTP->getReturnType().getUnqualifiedType();
106 FTP->getExtInfo(), required);
112 CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionProtoType> FTP) { argument
115 FTP);
158 const FunctionProtoType *FTP) {
169 FTP
97 arrangeLLVMFunctionInfo(CodeGenTypes &CGT, bool instanceMethod, SmallVectorImpl<CanQualType> &prefix, CanQual<FunctionProtoType> FTP) argument
157 arrangeCXXMethodType(const CXXRecordDecl *RD, const FunctionProtoType *FTP) argument
207 CanQual<FunctionProtoType> FTP = GetFormalType(MD); local
343 CanQual<FunctionProtoType> FTP = GetFormalType(MD); local
355 CanQual<FunctionProtoType> FTP = GetFormalType(CD); local
[all...]
H A DCGException.cpp1310 const auto *FTP = cast<FunctionType>( variable
1325 CGM.getTypes().arrangeFreeFunctionCall(Args, FTP, /*chainCall=*/false);
/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.cpp594 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>(); local
595 if (!FTP)
598 if (FTP->getNumParams() == 1) {
601 const PointerType *PT = FTP->getParamType(0)->getAs<PointerType>();
607 } else if (FTP->getNumParams() != 0)
637 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>(); local
638 if (!FTP)
642 if (FTP->getNumParams() != 0)
712 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>(); local
713 if (!FTP)
[all...]
H A DRetainCountChecker.cpp1261 const FunctionProtoType* FTP = dyn_cast<FunctionProtoType>(FT); local
1262 if (!FTP || FTP->getNumParams() != 1)
/external/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp3720 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local
3721 // FTP will be null for closures that don't take arguments.
3727 if (FTP) {
3728 for (auto &I : FTP->param_types()) {
3783 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local
3784 // FTP will be null for closures that don't take arguments.
3796 if (FTP) {
3797 for (auto &I : FTP->param_types()) {
3987 const FunctionProtoType *FTP; local
3990 FTP
4005 const FunctionProtoType *FTP; local
[all...]
H A DRewriteModernObjC.cpp4627 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local
4628 // FTP will be null for closures that don't take arguments.
4634 if (FTP) {
4635 for (auto &I : FTP->param_types()) {
4688 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local
4689 // FTP will be null for closures that don't take arguments.
4701 if (FTP) {
4702 for (auto &I : FTP->param_types()) {
4909 const FunctionProtoType *FTP; local
4912 FTP
4927 const FunctionProtoType *FTP; local
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp2917 if (FunctionProtoType *FTP =
2919 return QualType(FTP, 0);
2980 FunctionProtoType *FTP = (FunctionProtoType*) Allocate(Size, TypeAlignment); local
2982 new (FTP) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI);
2983 Types.push_back(FTP);
2984 FunctionProtoTypes.InsertNode(FTP, InsertPos);
2985 return QualType(FTP, 0);
/external/clang/lib/Sema/
H A DSemaDecl.cpp8246 const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT); local
8247 unsigned nparams = FTP->getNumParams();
8272 QualType AT = FTP->getParamType(i);

Completed in 323 milliseconds