• Home
  • Raw
  • Download

Lines Matching refs:QT

574     bool PointerTypeTakesAnyBlockArguments(QualType QT);
575 bool PointerTypeTakesAnyObjCQualifiedType(QualType QT);
1335 QualType QT = PDecl->getType(); in RewriteObjCMethodDecl() local
1337 (void)convertBlockPointerToFunctionPointer(QT); in RewriteObjCMethodDecl()
1338 QT.getAsStringInternal(Name, Context->getPrintingPolicy()); in RewriteObjCMethodDecl()
2311 QualType QT = ND->getType(); in RewriteTypeOfDecl() local
2312 const Type* TypePtr = QT->getAs<Type>(); in RewriteTypeOfDecl()
2317 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl()
2318 TypePtr = QT->getAs<Type>(); in RewriteTypeOfDecl()
2322 std::string TypeAsString(QT.getAsString(Context->getPrintingPolicy())); in RewriteTypeOfDecl()
4022 QualType QT = GetGroupRecordTypeForObjCIvarBitfield(IV); in RewriteObjCInternalStruct() local
4023 RewriteObjCFieldDeclType(QT, Result); in RewriteObjCInternalStruct()
4182 QualType QT = (*AI)->getType(); in SynthesizeBlockFunc() local
4183 (void)convertBlockPointerToFunctionPointer(QT); in SynthesizeBlockFunc()
4184 QT.getAsStringInternal(ParamStr, Context->getPrintingPolicy()); in SynthesizeBlockFunc()
4230 QualType QT = (*I)->getType(); in SynthesizeBlockFunc() local
4232 QT = Context->getPointerType(QT); in SynthesizeBlockFunc()
4233 QT.getAsStringInternal(Name, Context->getPrintingPolicy()); in SynthesizeBlockFunc()
4328 QualType QT = (*I)->getType(); in SynthesizeBlockImpl() local
4330 QT = Context->getPointerType(QT); in SynthesizeBlockImpl()
4331 QT.getAsStringInternal(FieldName, Context->getPrintingPolicy()); in SynthesizeBlockImpl()
4332 QT.getAsStringInternal(ArgName, Context->getPrintingPolicy()); in SynthesizeBlockImpl()
4860 QualType QT = CE->getType(); in RewriteCastExpr() local
4861 const Type* TypePtr = QT->getAs<Type>(); in RewriteCastExpr()
4864 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteCastExpr()
4866 RewriteBlockPointerType(TypeAsString, QT); in RewriteCastExpr()
4892 QualType QT = IC->getType(); in RewriteImplicitCastObjCExpr() local
4893 (void)convertBlockPointerToFunctionPointer(QT); in RewriteImplicitCastObjCExpr()
4894 std::string TypeString(QT.getAsString(Context->getPrintingPolicy())); in RewriteImplicitCastObjCExpr()
4938 bool RewriteModernObjC::PointerTypeTakesAnyBlockArguments(QualType QT) { in PointerTypeTakesAnyBlockArguments() argument
4940 const PointerType *PT = QT->getAs<PointerType>(); in PointerTypeTakesAnyBlockArguments()
4944 const BlockPointerType *BPT = QT->getAs<BlockPointerType>(); in PointerTypeTakesAnyBlockArguments()
4956 bool RewriteModernObjC::PointerTypeTakesAnyObjCQualifiedType(QualType QT) { in PointerTypeTakesAnyObjCQualifiedType() argument
4958 const PointerType *PT = QT->getAs<PointerType>(); in PointerTypeTakesAnyObjCQualifiedType()
4962 const BlockPointerType *BPT = QT->getAs<BlockPointerType>(); in PointerTypeTakesAnyObjCQualifiedType()
5459 QualType QT = (*I)->getType(); in SynthBlockInitExpr() local
5460 QT = Context->getPointerType(QT); in SynthBlockInitExpr()
5461 Exp = new (Context) UnaryOperator(Exp, UO_AddrOf, QT, VK_RValue, in SynthBlockInitExpr()
5475 QualType QT = (*I)->getType(); in SynthBlockInitExpr() local
5476 QT = Context->getPointerType(QT); in SynthBlockInitExpr()
5477 Exp = new (Context) UnaryOperator(Exp, UO_AddrOf, QT, VK_RValue, in SynthBlockInitExpr()