Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp2675 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument
2687 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType()
2688 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType()
2689 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType()
2694 NumCols->getIntegerConstantExpr(Context); in BuildMatrixType()
2697 auto const ColRange = NumCols->getSourceRange(); in BuildMatrixType()