Lines Matching defs:operator
243 // The copy constructor and assignment operator are not used and the defaults
247 InvalSet operator=(const InvalSet& other) = delete;
250 InvalSet operator=(const InvalSet& other);
276 InvalSetIterator<S>& operator=(InvalSetIterator<S> other);
303 InvalSetIterator<S>& operator++(); // Pre-increment.
304 InvalSetIterator<S> operator++(int); // Post-increment.
305 bool operator==(const InvalSetIterator<S>& rhs) const;
306 bool operator!=(const InvalSetIterator<S>& rhs) const {
309 ElementType& operator*() { return *Current(); }
310 const ElementType& operator*() const { return *Current(); }
311 ElementType* operator->() { return Current(); }
312 const ElementType* operator->() const { return Current(); }
890 InvalSetIterator<S>& InvalSetIterator<S>::operator=(InvalSetIterator<S> other) {
897 bool InvalSetIterator<S>::operator==(const InvalSetIterator<S>& rhs) const {
925 InvalSetIterator<S>& InvalSetIterator<S>::operator++() {
942 InvalSetIterator<S> InvalSetIterator<S>::operator++(int /* unused */) {