Home | History | Annotate | Download | only in AST

Lines Matching defs:QT

480       QualType QT = TD->getUnderlyingType();
481 if (const TagType *TT = QT->getAs<TagType>())
3494 if (ObjCObjectType *QT = ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos))
3495 return QualType(QT, 0);
3531 /// protocol list adopt all protocols in QT's qualified-id protocol
3533 bool ASTContext::ObjCObjectAdoptsQTypeProtocols(QualType QT,
3535 if (!QT->isObjCQualifiedIdType())
3538 if (const ObjCObjectPointerType *OPT = QT->getAs<ObjCObjectPointerType>()) {
3550 /// QT's qualified-id protocol list adopt all protocols in IDecl's list
3552 bool ASTContext::QIdProtocolsAdoptObjCObjectProtocols(QualType QT,
3554 if (!QT->isObjCQualifiedIdType())
3556 const ObjCObjectPointerType *OPT = QT->getAs<ObjCObjectPointerType>();
3603 if (ObjCObjectPointerType *QT =
3605 return QualType(QT, 0);
4890 void ASTContext::getObjCEncodingForMethodParameter(Decl::ObjCDeclQualifier QT,
4894 getObjCEncodingForTypeQualifier(QT, S);
5391 QualType qt = Field->getType();
5392 getLegacyIntegralTypeEncoding(qt);
5393 getObjCEncodingForTypeImpl(qt, S, false, true,
5709 QualType qt = field->getType();
5710 getLegacyIntegralTypeEncoding(qt);
5711 getObjCEncodingForTypeImpl(qt, S, false, true, FD,
5723 void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
5725 if (QT & Decl::OBJC_TQ_In)
5727 if (QT & Decl::OBJC_TQ_Inout)
5729 if (QT & Decl::OBJC_TQ_Out)
5731 if (QT & Decl::OBJC_TQ_Bycopy)
5733 if (QT & Decl::OBJC_TQ_Byref)
5735 if (QT & Decl::OBJC_TQ_Oneway)