Lines Matching refs:FQT

1969 static Qualifiers::GC GetGCAttrTypeForType(ASTContext &Ctx, QualType FQT,  in GetGCAttrTypeForType()  argument
1974 if (FQT.isObjCGCStrong()) in GetGCAttrTypeForType()
1977 if (FQT.isObjCGCWeak()) in GetGCAttrTypeForType()
1980 if (auto ownership = FQT.getObjCLifetime()) { in GetGCAttrTypeForType()
1994 if (FQT->isObjCObjectPointerType() || FQT->isBlockPointerType()) in GetGCAttrTypeForType()
1999 if (const PointerType *PT = FQT->getAs<PointerType>()) in GetGCAttrTypeForType()
2155 Qualifiers::ObjCLifetime CGObjCCommonMac::getBlockCaptureLifetime(QualType FQT, in getBlockCaptureLifetime() argument
2158 if (auto lifetime = FQT.getObjCLifetime()) in getBlockCaptureLifetime()
2166 if (FQT->isObjCObjectPointerType() || FQT->isBlockPointerType()) in getBlockCaptureLifetime()
2227 QualType FQT = Field->getType(); in BuildRCRecordLayout() local
2228 if (FQT->isRecordType() || FQT->isUnionType()) { in BuildRCRecordLayout()
2229 if (FQT->isUnionType()) in BuildRCRecordLayout()
2232 BuildRCBlockVarRecordLayout(FQT->getAs<RecordType>(), in BuildRCRecordLayout()
2237 if (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) { in BuildRCRecordLayout()
2242 FQT = CArray->getElementType(); in BuildRCRecordLayout()
2243 while (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) { in BuildRCRecordLayout()
2247 FQT = CArray->getElementType(); in BuildRCRecordLayout()
2249 if (FQT->isRecordType() && ElCount) { in BuildRCRecordLayout()
2251 const RecordType *RT = FQT->getAs<RecordType>(); in BuildRCRecordLayout()
2279 getBlockCaptureLifetime(FQT, ByrefLayout), in BuildRCRecordLayout()