Searched refs:NumCols (Results 1 – 2 of 2) sorted by relevance
565 cout << "NumRows: " << a.dimension(0) << " NumCols: " << a.dimension(1) << endl;566 => NumRows: 3 NumCols: 4577 cout << "NumRows: " << a.dimension(0) << " NumCols: " << a.dimension(1) << endl;578 => NumRows: 3 NumCols: 4588 cout << "NumRows: " << a.dimension(0) << " NumCols: " << a.dimension(1) << endl;589 => NumRows: 3 NumCols: 4
2642 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument2654 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType()2655 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType()2656 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType()2661 NumCols->getIntegerConstantExpr(Context); in BuildMatrixType()2664 auto const ColRange = NumCols->getSourceRange(); in BuildMatrixType()