Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp16131 Expr *RowsExpr = TheCall->getArg(1); in SemaBuiltinMatrixColumnMajorLoad() local
16176 ExprResult RowsConv = ApplyArgumentConversions(RowsExpr); in SemaBuiltinMatrixColumnMajorLoad()
16178 RowsExpr = RowsConv.get(); in SemaBuiltinMatrixColumnMajorLoad()
16179 TheCall->setArg(1, RowsExpr); in SemaBuiltinMatrixColumnMajorLoad()
16181 RowsExpr = nullptr; in SemaBuiltinMatrixColumnMajorLoad()
16192 if ((RowsExpr && RowsExpr->isTypeDependent()) || in SemaBuiltinMatrixColumnMajorLoad()
16200 if (RowsExpr) in SemaBuiltinMatrixColumnMajorLoad()
16201 MaybeRows = getAndVerifyMatrixDimension(RowsExpr, "row", *this); in SemaBuiltinMatrixColumnMajorLoad()
H A DSemaType.cpp7992 Expr *RowsExpr = Attr.getArgAsExpr(0); in HandleMatrixTypeAttr() local
7994 QualType T = S.BuildMatrixType(CurType, RowsExpr, ColsExpr, Attr.getLoc()); in HandleMatrixTypeAttr()