Lines Matching refs:AT

2150   if (auto *AT = dyn_cast<AttributedType>(Orig))  in getFunctionTypeWithExceptionSpec()  local
2152 AT->getAttrKind(), in getFunctionTypeWithExceptionSpec()
2153 getFunctionTypeWithExceptionSpec(Context, AT->getModifiedType(), ESI), in getFunctionTypeWithExceptionSpec()
2154 getFunctionTypeWithExceptionSpec(Context, AT->getEquivalentType(), in getFunctionTypeWithExceptionSpec()
2253 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getAdjustedType() local
2254 if (AT) in getAdjustedType()
2255 return QualType(AT, 0); in getAdjustedType()
2260 AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getAdjustedType()
2261 assert(!AT && "Shouldn't be in the map!"); in getAdjustedType()
2263 AT = new (*this, TypeAlignment) in getAdjustedType()
2265 Types.push_back(AT); in getAdjustedType()
2266 AdjustedTypes.InsertNode(AT, InsertPos); in getAdjustedType()
2267 return QualType(AT, 0); in getAdjustedType()
2293 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getDecayedType() local
2294 if (AT) in getDecayedType()
2295 return QualType(AT, 0); in getDecayedType()
2300 AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getDecayedType()
2301 assert(!AT && "Shouldn't be in the map!"); in getDecayedType()
2303 AT = new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical); in getDecayedType()
2304 Types.push_back(AT); in getDecayedType()
2305 AdjustedTypes.InsertNode(AT, InsertPos); in getDecayedType()
2306 return QualType(AT, 0); in getDecayedType()
3835 if (AutoType *AT = AutoTypes.FindNodeOrInsertPos(ID, InsertPos)) in getAutoType() local
3836 return QualType(AT, 0); in getAutoType()
3838 AutoType *AT = new (*this, TypeAlignment) AutoType(DeducedType, in getAutoType() local
3841 Types.push_back(AT); in getAutoType()
3843 AutoTypes.InsertNode(AT, InsertPos); in getAutoType()
3844 return QualType(AT, 0); in getAutoType()
3856 if (AtomicType *AT = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos)) in getAtomicType() local
3857 return QualType(AT, 0); in getAtomicType()
3983 const ArrayType *AT = in getUnqualifiedArrayType() local
3987 if (!AT) { in getUnqualifiedArrayType()
3993 QualType elementType = AT->getElementType(); in getUnqualifiedArrayType()
4008 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) { in getUnqualifiedArrayType()
4013 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) { in getUnqualifiedArrayType()
4017 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(AT)) { in getUnqualifiedArrayType()
4025 const DependentSizedArrayType *DSAT = cast<DependentSizedArrayType>(AT); in getUnqualifiedArrayType()
4284 if (const ArrayType *AT = dyn_cast<ArrayType>(T)) in getAsArrayType() local
4285 return AT; in getAsArrayType()
4943 if (const ArrayType *AT = in getObjCEncodingForBlock() local
4947 if (!isa<ConstantArrayType>(AT)) in getObjCEncodingForBlock()
4985 if (const ArrayType *AT = in getObjCEncodingForFunctionDecl() local
4989 if (!isa<ConstantArrayType>(AT)) in getObjCEncodingForFunctionDecl()
5056 if (const ArrayType *AT = in getObjCEncodingForMethodDecl() local
5060 if (!isa<ConstantArrayType>(AT)) in getObjCEncodingForMethodDecl()
5359 const AtomicType *AT = T->castAs<AtomicType>(); in getObjCEncodingForTypeImpl() local
5361 getObjCEncodingForTypeImpl(AT->getValueType(), S, false, false, nullptr); in getObjCEncodingForTypeImpl()
5440 const ArrayType *AT = cast<ArrayType>(CT); in getObjCEncodingForTypeImpl() local
5442 if (isa<IncompleteArrayType>(AT) && !StructField) { in getObjCEncodingForTypeImpl()
5446 getObjCEncodingForTypeImpl(AT->getElementType(), S, in getObjCEncodingForTypeImpl()
5451 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) in getObjCEncodingForTypeImpl()
5455 assert((isa<VariableArrayType>(AT) || isa<IncompleteArrayType>(AT)) && in getObjCEncodingForTypeImpl()
5460 getObjCEncodingForTypeImpl(AT->getElementType(), S, in getObjCEncodingForTypeImpl()
6473 while (const ArrayType *AT = dyn_cast<ArrayType>(CT)) in getObjCGCAttrKind() local
6474 CT = AT->getElementType(); in getObjCGCAttrKind()