Lines Matching refs:operator
54 Iterator operator+(int offset) const;
55 Iterator& operator+=(int offset);
56 Iterator& operator++();
58 Iterator operator-(int offset) const;
59 int operator-(const Iterator& itr) const;
60 Iterator& operator-=(int offset);
61 Iterator& operator--();
63 Iterator& operator=(const Iterator& itr); variable
65 bool operator!=(const Iterator& itr) const;
66 bool operator==(const Iterator& itr) const;
68 bool operator<(const Iterator& itr) const;
69 bool operator>(const Iterator& itr) const;
71 bool operator<=(const Iterator& itr) const;
72 bool operator>=(const Iterator& itr) const;
74 uint8_t operator*() const;
89 value_ptr[index] = this->operator*(); in extract()
90 this->operator++(); in extract()
100 extracted_value.data()[index] = this->operator*(); in extract()
101 this->operator++(); in extract()