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.cpp2451 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument
2468 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType()
2469 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType()
2470 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType()
2476 NumCols->getIntegerConstantExpr(Context); in BuildMatrixType()
2479 auto const ColRange = NumCols->getSourceRange(); in BuildMatrixType()