Home | History | Annotate | Download | only in AST

Lines Matching refs:QT

681 bool PrintfSpecifier::fixType(QualType QT, const LangOptions &LangOpt,
691 if (QT->isObjCRetainableType()) {
710 if (QT->isPointerType() && (QT->getPointeeType()->isAnyCharacterType())) {
718 if (QT->getPointeeType()->isWideCharType())
727 if (const EnumType *ETy = QT->getAs<EnumType>())
728 QT = ETy->getDecl()->getIntegerType();
730 const BuiltinType *BT = QT->getAs<BuiltinType>();
732 const VectorType *VT = QT->getAs<VectorType>();
734 QT = VT->getElementType();
735 BT = QT->getAs<BuiltinType>();
846 if (isa<TypedefType>(QT) && (LangOpt.C99 || LangOpt.CPlusPlus11))
847 namedTypeToLengthModifier(QT, LM);
855 if (QT->isSignedIntegerType())
861 if (QT->isUnsignedIntegerType() && !HasPlusPrefix)
870 if (ATR.isValid() && ATR.matchesType(Ctx, QT))
876 if (!isa<TypedefType>(QT) && QT->isCharType()) {
885 else if (QT->isRealFloatingType()) {
888 else if (QT->isSignedIntegerType()) {
892 else if (QT->isUnsignedIntegerType()) {