Searched refs:CurType (Results 1 – 2 of 2) sorted by relevance
/external/clang/lib/Sema/ |
D | SemaType.cpp | 5970 static void HandleVectorSizeAttr(QualType& CurType, const AttributeList &Attr, in HandleVectorSizeAttr() argument 5991 if (!CurType->isBuiltinType() || CurType->isBooleanType() || in HandleVectorSizeAttr() 5992 (!CurType->isIntegerType() && !CurType->isRealFloatingType())) { in HandleVectorSizeAttr() 5993 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_vector_type) << CurType; in HandleVectorSizeAttr() 5997 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType)); in HandleVectorSizeAttr() 6023 CurType = S.Context.getVectorType(CurType, vectorSize/typeSize, in HandleVectorSizeAttr() 6029 static void HandleExtVectorTypeAttr(QualType &CurType, in HandleExtVectorTypeAttr() argument 6059 QualType T = S.BuildExtVectorType(CurType, sizeExpr, Attr.getLoc()); in HandleExtVectorTypeAttr() 6061 CurType = T; in HandleExtVectorTypeAttr() 6119 static void HandleNeonVectorTypeAttr(QualType& CurType, in HandleNeonVectorTypeAttr() argument [all …]
|
D | SemaTemplate.cpp | 1597 if (const Type *CurType = NNS->getAsType()) { in getRangeOfTypeInNestedNameSpecifier() local 1598 if (Context.hasSameUnqualifiedType(T, QualType(CurType, 0))) in getRangeOfTypeInNestedNameSpecifier()
|