Home | History | Annotate | Download | only in AST

Lines Matching defs:ElementType

2389 QualType ASTContext::getDependentSizedArrayType(QualType elementType,
2405 DependentSizedArrayType(*this, elementType, QualType(),
2415 SplitQualType canonElementType = getCanonicalType(elementType).split();
2443 if (QualType(canonElementType.Ty, 0) == elementType)
2450 DependentSizedArrayType(*this, elementType, canon, numElements,
2456 QualType ASTContext::getIncompleteArrayType(QualType elementType,
2460 IncompleteArrayType::Profile(ID, elementType, ASM, elementTypeQuals);
2472 if (!elementType.isCanonical() || elementType.hasLocalQualifiers()) {
2473 SplitQualType canonSplit = getCanonicalType(elementType).split();
2485 IncompleteArrayType(elementType, canon, ASM, elementTypeQuals);
3676 QualType elementType = AT->getElementType();
3677 QualType unqualElementType = getUnqualifiedArrayType(elementType, quals);
3681 if (elementType == unqualElementType) {
7412 QualType ElementType = DecodeTypeFromStr(Str, Context, Error,
7417 Type = Context.getVectorType(ElementType, NumElements,
7429 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
7431 Type = Context.getExtVectorType(ElementType, NumElements);
7435 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE,
7438 Type = Context.getComplexType(ElementType);