Searched refs:RowExpr (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/clang/lib/AST/ |
D | Type.cpp | 286 const Expr *RowExpr, const Expr *ColumnExpr) in MatrixType() argument 288 (RowExpr ? (matrixType->getDependence() | TypeDependence::Dependent | in MatrixType() 294 (RowExpr && in MatrixType() 295 RowExpr->containsUnexpandedParameterPack()) || in MatrixType() 316 Expr *RowExpr, Expr *ColumnExpr, SourceLocation loc) in DependentSizedMatrixType() argument 317 : MatrixType(DependentSizedMatrix, ElementType, CanonicalType, RowExpr, in DependentSizedMatrixType() 319 Context(CTX), RowExpr(RowExpr), ColumnExpr(ColumnExpr), loc(loc) {} in DependentSizedMatrixType() 323 QualType ElementType, Expr *RowExpr, in Profile() argument 326 RowExpr->Profile(ID, CTX, true); in Profile()
|
D | ASTContext.cpp | 4013 Expr *RowExpr, in getDependentSizedMatrixType() argument 4018 DependentSizedMatrixType::Profile(ID, *this, CanonElementTy, RowExpr, in getDependentSizedMatrixType() 4027 *this, CanonElementTy, QualType(), RowExpr, ColumnExpr, AttrLoc); in getDependentSizedMatrixType() 4040 if (Canon->getElementType() == ElementTy && Canon->getRowExpr() == RowExpr && in getDependentSizedMatrixType() 4046 DependentSizedMatrixType(*this, ElementTy, QualType(Canon, 0), RowExpr, in getDependentSizedMatrixType()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Type.h | 3412 const Expr *RowExpr = nullptr, const Expr *ColumnExpr = nullptr); 3505 Expr *RowExpr; 3511 QualType CanonicalType, Expr *RowExpr, 3516 Expr *getRowExpr() const { return RowExpr; } 3532 QualType ElementType, Expr *RowExpr, Expr *ColumnExpr);
|
D | ASTContext.h | 1383 QualType getDependentSizedMatrixType(QualType ElementType, Expr *RowExpr,
|
/external/llvm-project/clang/lib/Sema/ |
D | TreeTransform.h | 904 QualType RebuildDependentSizedMatrixType(QualType ElementType, Expr *RowExpr, 14050 QualType ElementType, Expr *RowExpr, Expr *ColumnExpr, in RebuildDependentSizedMatrixType() argument 14052 return SemaRef.BuildMatrixType(ElementType, RowExpr, ColumnExpr, in RebuildDependentSizedMatrixType()
|