Home | History | Annotate | Download | only in AST

Lines Matching refs:PointeeTy

5076 void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
5077 if (isa<TypedefType>(PointeeTy.getTypePtr())) {
5078 if (const BuiltinType *BT = PointeeTy->getAs<BuiltinType>()) {
5079 if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32)
5080 PointeeTy = UnsignedIntTy;
5082 if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32)
5083 PointeeTy = IntTy;
5254 QualType PointeeTy;
5261 PointeeTy = PT->getPointeeType();
5263 PointeeTy = T->castAs<ReferenceType>()->getPointeeType();
5277 QualType P = PointeeTy;
5293 if (PointeeTy->isCharType()) {
5296 if (!isTypeTypedefedAsBOOL(PointeeTy)) {
5300 } else if (const RecordType *RTy = PointeeTy->getAs<RecordType>()) {
5314 getLegacyIntegralTypeEncoding(PointeeTy);
5316 getObjCEncodingForTypeImpl(PointeeTy, S, false, ExpandPointedToStructures,
5506 QualType PointeeTy = OPT->getPointeeType();
5508 isa<TypedefType>(PointeeTy.getTypePtr()) &&
5528 getObjCEncodingForTypeImpl(PointeeTy, S,