Searched defs:FT (Results 51 - 64 of 64) sorted by relevance

123

/external/clang/lib/CodeGen/
H A DTargetInfo.cpp161 QualType FT = FD->getType();
166 while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) {
169 FT = AT->getElementType();
172 const RecordType *RT = FT->getAs<RecordType>();
183 return isEmptyRecord(Context, FT, AllowArrays);
249 QualType FT = FD->getType(); local
261 while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) {
264 FT = AT->getElementType();
267 if (!isAggregateTypeForABI(FT)) {
268 Found = FT
757 QualType FT = i->getType(); local
6456 appendFunctionType(SmallStringEnc &Enc, const FunctionType *FT, const CodeGen::CodeGenModule &CGM, TypeStringCache &TSC) argument
[all...]
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp2831 const FunctionType *FT = getFunctionType(); local
2832 Result.AddTextChunk(GetCompletionTypeString(FT->getReturnType(), S.Context,
H A DSemaDeclAttr.cpp2100 const FunctionType *FT = FD->getType()->castAs<FunctionType>(); local
2101 if (isa<FunctionNoProtoType>(FT)) {
2106 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
2123 const FunctionType *FT = Ty->isFunctionPointerType() local
2126 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
4641 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
4643 for (const auto &AI : FT->param_types()) {
H A DSemaType.cpp4608 const FunctionType *FT = Unwrapped.get(); local
4609 bool IsVariadic = (isa<FunctionProtoType>(FT) &&
4610 cast<FunctionProtoType>(FT)->isVariadic());
4615 CallingConv CurCC = FT->getCallConv();
4625 FT = Context.adjustFunctionType(FT, FT->getExtInfo().withCallingConv(ToCC));
4626 QualType Wrapped = Unwrapped.wrap(*this, FT);
H A DSemaTemplate.cpp6644 QualType FT = FD->getType(); local
6649 const FunctionProtoType *FPT = FT->castAs<FunctionProtoType>();
6652 FT = Context.getFunctionType(FPT->getReturnType(),
6668 ExplicitTemplateArgs, FT, Specialization, Info)) {
H A DSemaChecking.cpp3645 const FunctionProtoType *FT = BuiltinType->getAs<FunctionProtoType>(); local
3646 if (!FT)
3649 if (FT->getNumParams() != 1)
3652 return FT->getParamType(0);
H A DSemaDecl.cpp1673 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) {
1675 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1678 nullptr, FT->getParamType(i), /*TInfo=*/nullptr,
2487 const FunctionType *FT = local
2489 FunctionType::ExtInfo FI = FT->getExtInfo();
7164 } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) {
7175 for (const auto &AI : FT->param_types()) {
7517 const FunctionType *FT = NewFD->getType()->getAs<FunctionType>(); local
7521 EPI.ExtInfo = FT->getExtInfo();
7523 QualType R = Context.getFunctionType(FT
7954 const FunctionType* FT = T->castAs<FunctionType>(); local
8061 const FunctionType *FT = T->castAs<FunctionType>(); local
[all...]
H A DSemaDeclCXX.cpp721 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>(); local
722 for (FunctionProtoType::param_type_iterator i = FT->param_type_begin(),
723 e = FT->param_type_end();
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp623 const RetainSummary *getUnarySummary(const FunctionType* FT,
1021 const FunctionType* FT = FD->getType()->getAs<FunctionType>(); local
1033 QualType RetTy = FT->getReturnType();
1046 ? getUnarySummary(FT, cfmakecollectable)
1130 S = getUnarySummary(FT, cfretain);
1132 S = getUnarySummary(FT, cfautorelease);
1137 S = getUnarySummary(FT, cfmakecollectable);
1149 S = getUnarySummary(FT, cfretain);
1179 S = getUnarySummary(FT, cfrelease);
1231 RetainSummaryManager::getUnarySummary(const FunctionType* FT, argument
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp2339 FunctionType *FT = local
2341 if (FT->isVarArg()) {
/external/netperf/
H A Dnetlib.c727 } FT;
732 FT nt_time;
721 } FT; typedef in typeref:union:__anon28057
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp437 QualType convertFunctionTypeOfBlocks(const FunctionType *FT);
826 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(FPRetType)){
828 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
831 FT->getParamType(i).getAsString(Context->getPrintingPolicy());
834 if (FT->isVariadic()) {
835 if (FT->getNumParams())
1152 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(FPRetType)) {
1154 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1157 FT->getParamType(i).getAsString(Context->getPrintingPolicy());
1160 if (FT
2031 const FunctionType *FT = msgSendType->getAs<FunctionType>(); local
2622 const FunctionType *FT = msgSendType->getAs<FunctionType>(); local
2988 const FunctionType *FT = msgSendType->getAs<FunctionType>(); local
3298 const FunctionProtoType *FT = cast<FunctionProtoType>(AFT); local
3736 convertFunctionTypeOfBlocks(const FunctionType *FT) argument
3798 const FunctionType *FT = CPT->getPointeeType()->getAs<FunctionType>(); local
[all...]
H A DRewriteModernObjC.cpp534 QualType convertFunctionTypeOfBlocks(const FunctionType *FT);
993 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(FPRetType)){
995 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
998 FT->getParamType(i).getAsString(Context->getPrintingPolicy());
1001 if (FT->isVariadic()) {
1002 if (FT->getNumParams())
1350 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(FPRetType)) {
1352 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1355 FT->getParamType(i).getAsString(Context->getPrintingPolicy());
1358 if (FT
2142 const FunctionType *FT = msgSendType->getAs<FunctionType>(); local
2731 const FunctionType *FT = msgSendType->getAs<FunctionType>(); local
2860 const FunctionType *FT = msgSendType->getAs<FunctionType>(); local
3024 const FunctionType *FT = msgSendType->getAs<FunctionType>(); local
3611 const FunctionType *FT = msgSendType->getAs<FunctionType>(); local
4172 const FunctionProtoType *FT = cast<FunctionProtoType>(AFT); local
4654 convertFunctionTypeOfBlocks(const FunctionType *FT) argument
4714 const FunctionType *FT = CPT->getPointeeType()->getAs<FunctionType>(); local
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp2796 if (FunctionNoProtoType *FT =
2798 return QualType(FT, 0);
4424 QualType FT = Field->getType();
4435 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy;
5409 const FunctionType *FT = BT->getPointeeType()->castAs<FunctionType>(); local
5414 FT->getReturnType(), S, ExpandPointedToStructures, ExpandStructures,
5420 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {

Completed in 5028 milliseconds

123