Home | History | Annotate | Download | only in base

Lines Matching full:operator

35 Iterator Iterator::operator+(size_t offset) {
41 Iterator& Iterator::operator+=(size_t offset) {
48 Iterator Iterator::operator++(int) {
57 Iterator& Iterator::operator++() {
65 Iterator Iterator::operator-(size_t offset) {
71 int Iterator::operator-(const Iterator& itr) { return index_ - itr.index_; }
73 Iterator& Iterator::operator-=(size_t offset) {
81 Iterator Iterator::operator--(int) {
88 Iterator& Iterator::operator--() {
94 Iterator& Iterator::operator=(const Iterator& itr) {
101 bool Iterator::operator==(const Iterator& itr) const {
105 bool Iterator::operator!=(const Iterator& itr) const { return !(*this == itr); }
107 bool Iterator::operator<(const Iterator& itr) const {
111 bool Iterator::operator>(const Iterator& itr) const {
115 bool Iterator::operator<=(const Iterator& itr) const {
119 bool Iterator::operator>=(const Iterator& itr) const {
123 uint8_t Iterator::operator*() const {