Lines Matching refs:NonThrowingIterator
473 struct NonThrowingIterator { struct
481 NonThrowingIterator () in NonThrowingIterator() argument
483 NonThrowingIterator (const T *first, const T* last) in NonThrowingIterator() argument
485 NonThrowingIterator (const NonThrowingIterator &rhs) in NonThrowingIterator() argument
487 NonThrowingIterator & operator= (const NonThrowingIterator &rhs) TEST_NOEXCEPT
501 NonThrowingIterator & operator++() TEST_NOEXCEPT
507 NonThrowingIterator operator++(int) TEST_NOEXCEPT
509 NonThrowingIterator temp = *this; argument
514 NonThrowingIterator & operator--() TEST_NOEXCEPT
520 NonThrowingIterator operator--(int) TEST_NOEXCEPT
522 NonThrowingIterator temp = *this; argument
527 bool operator== (const NonThrowingIterator &rhs) const TEST_NOEXCEPT
543 bool operator== (const NonThrowingIterator<T>& a, const NonThrowingIterator<T>& b) TEST_NOEXCEPT argument
547 bool operator!= (const NonThrowingIterator<T>& a, const NonThrowingIterator<T>& b) TEST_NOEXCEPT