Home
last modified time | relevance | path

Searched refs:NumCols (Results 1 – 1 of 1) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp2882 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument
2894 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType()
2895 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType()
2896 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType()
2902 NumCols->getIntegerConstantExpr(Context); in BuildMatrixType()
2905 auto const ColRange = NumCols->getSourceRange(); in BuildMatrixType()