Lines Matching refs:QT
141 static bool isConsumableType(const QualType &QT) { in isConsumableType() argument
142 if (QT->isPointerType() || QT->isReferenceType()) in isConsumableType()
145 if (const CXXRecordDecl *RD = QT->getAsCXXRecordDecl()) in isConsumableType()
151 static bool isAutoCastType(const QualType &QT) { in isAutoCastType() argument
152 if (QT->isPointerType() || QT->isReferenceType()) in isAutoCastType()
155 if (const CXXRecordDecl *RD = QT->getAsCXXRecordDecl()) in isAutoCastType()
161 static bool isSetOnReadPtrType(const QualType &QT) { in isSetOnReadPtrType() argument
162 if (const CXXRecordDecl *RD = QT->getPointeeCXXRecordDecl()) in isSetOnReadPtrType()
192 static ConsumedState mapConsumableAttrState(const QualType QT) { in mapConsumableAttrState() argument
193 assert(isConsumableType(QT)); in mapConsumableAttrState()
196 QT->getAsCXXRecordDecl()->getAttr<ConsumableAttr>(); in mapConsumableAttrState()