Lines Matching refs:operator
39 Iterator operator+(int offset);
40 Iterator& operator+=(int offset);
41 Iterator& operator++();
43 Iterator operator-(int offset);
44 int operator-(Iterator& itr);
45 Iterator& operator-=(int offset);
46 Iterator& operator--();
48 Iterator& operator=(const Iterator& itr); variable
50 bool operator!=(const Iterator& itr) const;
51 bool operator==(const Iterator& itr) const;
53 bool operator<(const Iterator& itr) const;
54 bool operator>(const Iterator& itr) const;
56 bool operator<=(const Iterator& itr) const;
57 bool operator>=(const Iterator& itr) const;
59 uint8_t operator*() const;
74 value_ptr[index] = this->operator*(); in extract()
75 this->operator++(); in extract()
85 extracted_value.data()[index] = this->operator*(); in extract()
86 this->operator++(); in extract()