Searched refs:object_api (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/pybind11/include/pybind11/
H A Dpytypes.h54 class object_api : public pyobject_tag { class in inherits:pyobject_tag
114 bool is(object_api const& other) const { return derived().ptr() == other.derived().ptr(); }
118 bool equal(object_api const &other) const { return rich_compare(other, Py_EQ); }
119 bool not_equal(object_api const &other) const { return rich_compare(other, Py_NE); }
120 bool operator<(object_api const &other) const { return rich_compare(other, Py_LT); }
121 bool operator<=(object_api const &other) const { return rich_compare(other, Py_LE); }
122 bool operator>(object_api const &other) const { return rich_compare(other, Py_GT); }
123 bool operator>=(object_api const &other) const { return rich_compare(other, Py_GE); }
127 object operator+(object_api const &other) const;
128 object operator+=(object_api cons
[all...]
H A Dcast.h2111 object object_api<Derived>::operator()(Args &&...args) const {
2117 object object_api<Derived>::call(Args &&...args) const {

Completed in 13 milliseconds