Home | History | Annotate | Download | only in AST

Lines Matching refs:CT

1666   if (const ComplexType* CT = T->getAs<ComplexType>())
1667 T = CT->getElementType().getTypePtr();
1995 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
1996 return QualType(CT, 0);
4098 if (const ComplexType *CT = T->getAs<ComplexType>())
4099 return getFloatingRank(CT->getElementType());
5004 CanQualType CT = getCanonicalType(T);
5005 switch (CT->getTypeClass()) {
5010 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CT))
5013 S += ObjCEncodingForEnumType(this, cast<EnumType>(CT));
5017 const ComplexType *CT = T->castAs<ComplexType>();
5019 getObjCEncodingForTypeImpl(CT->getElementType(), S, false, false, 0, false,
5037 if (isa<PointerType>(CT)) {
5106 const ArrayType *AT = cast<ArrayType>(CT);
5142 RecordDecl *RDecl = cast<RecordType>(CT)->getDecl();
6142 QualType CT = Ty->getCanonicalTypeInternal();
6143 while (const ArrayType *AT = dyn_cast<ArrayType>(CT))
6144 CT = AT->getElementType();
6145 assert(CT->isAnyPointerType() || CT->isBlockPointerType());