Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp2426 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument
2438 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType()
2439 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType()
2440 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType()
2446 NumCols->getIntegerConstantExpr(Context); in BuildMatrixType()
2449 auto const ColRange = NumCols->getSourceRange(); in BuildMatrixType()