Home | History | Annotate | Download | only in AST

Lines Matching refs:PointeeTy

5348 void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
5349 if (isa<TypedefType>(PointeeTy.getTypePtr())) {
5350 if (const BuiltinType *BT = PointeeTy->getAs<BuiltinType>()) {
5351 if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32)
5352 PointeeTy = UnsignedIntTy;
5354 if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32)
5355 PointeeTy = IntTy;
5537 QualType PointeeTy;
5544 PointeeTy = PT->getPointeeType();
5546 PointeeTy = T->castAs<ReferenceType>()->getPointeeType();
5560 QualType P = PointeeTy;
5576 if (PointeeTy->isCharType()) {
5579 if (!isTypeTypedefedAsBOOL(PointeeTy)) {
5583 } else if (const RecordType *RTy = PointeeTy->getAs<RecordType>()) {
5597 getLegacyIntegralTypeEncoding(PointeeTy);
5599 getObjCEncodingForTypeImpl(PointeeTy, S, false, ExpandPointedToStructures,
5790 QualType PointeeTy = OPT->getPointeeType();
5792 isa<TypedefType>(PointeeTy.getTypePtr()) &&
5812 getObjCEncodingForTypeImpl(PointeeTy, S,