Lines Matching refs:BaseContextObject
270 class BaseContextObject {
272 BaseContextObject(PyMlirContextRef ref) : contextRef(std::move(ref)) { in BaseContextObject() function
359 class PyDialectDescriptor : public BaseContextObject {
362 : BaseContextObject(std::move(contextRef)), dialect(dialect) {} in PyDialectDescriptor()
372 class PyDialects : public BaseContextObject {
375 : BaseContextObject(std::move(contextRef)) {} in PyDialects()
420 class PyLocation : public BaseContextObject {
423 : BaseContextObject(std::move(contextRef)), loc(loc) {} in PyLocation()
463 class PyModule : public BaseContextObject {
531 class PyOperation : public PyOperationBase, public BaseContextObject {
745 class PyType : public BaseContextObject {
748 : BaseContextObject(std::move(contextRef)), type(type) {} in PyType()
815 class PyAttribute : public BaseContextObject {
818 : BaseContextObject(std::move(contextRef)), attr(attr) {} in PyAttribute()
940 class PyAffineExpr : public BaseContextObject {
943 : BaseContextObject(std::move(contextRef)), affineExpr(affineExpr) {} in PyAffineExpr()
967 class PyAffineMap : public BaseContextObject {
970 : BaseContextObject(std::move(contextRef)), affineMap(affineMap) {} in PyAffineMap()
988 class PyIntegerSet : public BaseContextObject {
991 : BaseContextObject(std::move(contextRef)), integerSet(integerSet) {} in PyIntegerSet()