Home | History | Annotate | Download | only in AST

Lines Matching defs:qt

592       QualType QT = TD->getUnderlyingType();
593 if (const auto *TT = QT->getAs<TagType>())
5095 if (ObjCObjectType *QT = ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos))
5096 return QualType(QT, 0);
5277 /// protocol list adopt all protocols in QT's qualified-id protocol
5279 bool ASTContext::ObjCObjectAdoptsQTypeProtocols(QualType QT,
5281 if (!QT->isObjCQualifiedIdType())
5284 if (const auto *OPT = QT->getAs<ObjCObjectPointerType>()) {
5296 /// QT's qualified-id protocol list adopt all protocols in IDecl's list
5298 bool ASTContext::QIdProtocolsAdoptObjCObjectProtocols(QualType QT,
5300 if (!QT->isObjCQualifiedIdType())
5302 const auto *OPT = QT->getAs<ObjCObjectPointerType>();
5349 if (ObjCObjectPointerType *QT =
5351 return QualType(QT, 0);
6986 void ASTContext::getObjCEncodingForMethodParameter(Decl::ObjCDeclQualifier QT,
6990 getObjCEncodingForTypeQualifier(QT, S);
7592 QualType qt = Field->getType();
7593 getLegacyIntegralTypeEncoding(qt);
7595 qt, S,
7890 QualType qt = field->getType();
7891 getLegacyIntegralTypeEncoding(qt);
7893 qt, S, ObjCEncOptions().setExpandStructures().setIsStructField(),
7903 void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
7905 if (QT & Decl::OBJC_TQ_In)
7907 if (QT & Decl::OBJC_TQ_Inout)
7909 if (QT & Decl::OBJC_TQ_Out)
7911 if (QT & Decl::OBJC_TQ_Bycopy)
7913 if (QT & Decl::OBJC_TQ_Byref)
7915 if (QT & Decl::OBJC_TQ_Oneway)
11331 uint64_t ASTContext::getTargetNullPointerValue(QualType QT) const {
11333 if (QT->getUnqualifiedDesugaredType()->isNullPtrType())
11336 AS = QT->getPointeeType().getAddressSpace();