Lines Matching refs:contextRef
253 BaseContextObject(PyMlirContextRef ref) : contextRef(std::move(ref)) { in BaseContextObject()
254 assert(this->contextRef && in BaseContextObject()
259 PyMlirContextRef &getContext() { return contextRef; } in getContext()
262 PyMlirContextRef contextRef;
272 PyDialectDescriptor(PyMlirContextRef contextRef, MlirDialect dialect) in PyDialectDescriptor() argument
273 : BaseContextObject(std::move(contextRef)), dialect(dialect) {} in PyDialectDescriptor()
285 PyDialects(PyMlirContextRef contextRef) in PyDialects() argument
286 : BaseContextObject(std::move(contextRef)) {} in PyDialects()
307 PyLocation(PyMlirContextRef contextRef, MlirLocation loc) in PyLocation() argument
308 : BaseContextObject(std::move(contextRef)), loc(loc) {} in PyLocation()
379 PyModule(PyMlirContextRef contextRef, MlirModule module);
418 forOperation(PyMlirContextRef contextRef, MlirOperation operation,
424 createDetached(PyMlirContextRef contextRef, MlirOperation operation,
466 PyOperation(PyMlirContextRef contextRef, MlirOperation operation);
467 static PyOperationRef createInstance(PyMlirContextRef contextRef,
584 PyAttribute(PyMlirContextRef contextRef, MlirAttribute attr) in PyAttribute() argument
585 : BaseContextObject(std::move(contextRef)), attr(attr) {} in PyAttribute()
630 PyType(PyMlirContextRef contextRef, MlirType type) in PyType() argument
631 : BaseContextObject(std::move(contextRef)), type(type) {} in PyType()