Lines Matching defs:ObjectSlot
28 class ObjectSlot {
30 explicit ObjectSlot(uintptr_t slotAddr) : slotAddress_(slotAddr) {}
31 ~ObjectSlot() = default;
33 DEFAULT_COPY_SEMANTIC(ObjectSlot);
34 DEFAULT_MOVE_SEMANTIC(ObjectSlot);
75 ObjectSlot &operator++()
82 ObjectSlot operator++(int)
84 ObjectSlot ret = *this;
89 ObjectSlot operator+=(size_t length)
91 ObjectSlot ret = *this;
101 bool operator<(const ObjectSlot &other) const
105 bool operator<=(const ObjectSlot &other) const
109 bool operator>(const ObjectSlot &other) const
113 bool operator>=(const ObjectSlot &other) const
117 bool operator==(const ObjectSlot &other) const
121 bool operator!=(const ObjectSlot &other) const