• Home
  • Raw
  • Download

Lines Matching refs:QT

474     bool PointerTypeTakesAnyBlockArguments(QualType QT);
475 bool PointerTypeTakesAnyObjCQualifiedType(QualType QT);
1137 QualType QT = PDecl->getType(); in RewriteObjCMethodDecl() local
1139 (void)convertBlockPointerToFunctionPointer(QT); in RewriteObjCMethodDecl()
1140 QT.getAsStringInternal(Name, Context->getPrintingPolicy()); in RewriteObjCMethodDecl()
2196 QualType QT = ND->getType(); in RewriteTypeOfDecl() local
2197 const Type* TypePtr = QT->getAs<Type>(); in RewriteTypeOfDecl()
2202 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl()
2203 TypePtr = QT->getAs<Type>(); in RewriteTypeOfDecl()
2207 std::string TypeAsString(QT.getAsString(Context->getPrintingPolicy())); in RewriteTypeOfDecl()
3308 QualType QT = (*AI)->getType(); in SynthesizeBlockFunc() local
3309 (void)convertBlockPointerToFunctionPointer(QT); in SynthesizeBlockFunc()
3310 QT.getAsStringInternal(ParamStr, Context->getPrintingPolicy()); in SynthesizeBlockFunc()
3356 QualType QT = (*I)->getType(); in SynthesizeBlockFunc() local
3358 QT = Context->getPointerType(QT); in SynthesizeBlockFunc()
3359 QT.getAsStringInternal(Name, Context->getPrintingPolicy()); in SynthesizeBlockFunc()
3454 QualType QT = (*I)->getType(); in SynthesizeBlockImpl() local
3456 QT = Context->getPointerType(QT); in SynthesizeBlockImpl()
3457 QT.getAsStringInternal(FieldName, Context->getPrintingPolicy()); in SynthesizeBlockImpl()
3458 QT.getAsStringInternal(ArgName, Context->getPrintingPolicy()); in SynthesizeBlockImpl()
3944 QualType QT = CE->getType(); in RewriteCastExpr() local
3945 const Type* TypePtr = QT->getAs<Type>(); in RewriteCastExpr()
3948 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteCastExpr()
3950 RewriteBlockPointerType(TypeAsString, QT); in RewriteCastExpr()
4005 bool RewriteObjC::PointerTypeTakesAnyBlockArguments(QualType QT) { in PointerTypeTakesAnyBlockArguments() argument
4007 const PointerType *PT = QT->getAs<PointerType>(); in PointerTypeTakesAnyBlockArguments()
4011 const BlockPointerType *BPT = QT->getAs<BlockPointerType>(); in PointerTypeTakesAnyBlockArguments()
4023 bool RewriteObjC::PointerTypeTakesAnyObjCQualifiedType(QualType QT) { in PointerTypeTakesAnyObjCQualifiedType() argument
4025 const PointerType *PT = QT->getAs<PointerType>(); in PointerTypeTakesAnyObjCQualifiedType()
4029 const BlockPointerType *BPT = QT->getAs<BlockPointerType>(); in PointerTypeTakesAnyObjCQualifiedType()
4509 QualType QT = (*I)->getType(); in SynthBlockInitExpr() local
4510 QT = Context->getPointerType(QT); in SynthBlockInitExpr()
4511 Exp = new (Context) UnaryOperator(Exp, UO_AddrOf, QT, VK_RValue, in SynthBlockInitExpr()
4525 QualType QT = (*I)->getType(); in SynthBlockInitExpr() local
4526 QT = Context->getPointerType(QT); in SynthBlockInitExpr()
4527 Exp = new (Context) UnaryOperator(Exp, UO_AddrOf, QT, VK_RValue, in SynthBlockInitExpr()