Searched refs:RowExpr (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Type.cpp | 323 const Expr *RowExpr, const Expr *ColumnExpr) in MatrixType() argument 325 (RowExpr ? (matrixType->getDependence() | TypeDependence::Dependent | in MatrixType() 331 (RowExpr && in MatrixType() 332 RowExpr->containsUnexpandedParameterPack()) || in MatrixType() 353 Expr *RowExpr, in DependentSizedMatrixType() argument 356 : MatrixType(DependentSizedMatrix, ElementType, CanonicalType, RowExpr, in DependentSizedMatrixType() 358 RowExpr(RowExpr), ColumnExpr(ColumnExpr), loc(loc) {} in DependentSizedMatrixType() 362 QualType ElementType, Expr *RowExpr, in Profile() argument 365 RowExpr->Profile(ID, CTX, true); in Profile()
|
H A D | ASTContext.cpp | 4610 Expr *RowExpr, in getDependentSizedMatrixType() argument 4615 DependentSizedMatrixType::Profile(ID, *this, CanonElementTy, RowExpr, in getDependentSizedMatrixType() 4624 DependentSizedMatrixType(CanonElementTy, QualType(), RowExpr, in getDependentSizedMatrixType() 4638 if (Canon->getElementType() == ElementTy && Canon->getRowExpr() == RowExpr && in getDependentSizedMatrixType() 4644 DependentSizedMatrixType(ElementTy, QualType(Canon, 0), RowExpr, in getDependentSizedMatrixType()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Type.h | 4163 const Expr *RowExpr = nullptr, const Expr *ColumnExpr = nullptr); 4251 Expr *RowExpr; 4257 Expr *RowExpr, Expr *ColumnExpr, SourceLocation loc); 4260 Expr *getRowExpr() const { return RowExpr; } 4273 QualType ElementType, Expr *RowExpr, Expr *ColumnExpr);
|
H A D | ASTContext.h | 1595 QualType getDependentSizedMatrixType(QualType ElementType, Expr *RowExpr,
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | TreeTransform.h | 985 QualType RebuildDependentSizedMatrixType(QualType ElementType, Expr *RowExpr, 16148 QualType ElementType, Expr *RowExpr, Expr *ColumnExpr, in RebuildDependentSizedMatrixType() argument 16150 return SemaRef.BuildMatrixType(ElementType, RowExpr, ColumnExpr, in RebuildDependentSizedMatrixType()
|