Home | History | Annotate | Download | only in test

Lines Matching full:operator

95   // assignment operator (as opposed to a copy constructor) matches
101 << "created with the assignment operator." << std::endl;
104 << "created with the assignment operator." << std::endl;
109 << "created with the assignment operator." << std::endl;
146 // Verifies that prefix operator++() returns *this.
147 EXPECT_EQ(&it, &(++it)) << "Result of the prefix operator++ must be "
150 // Verifies that the result of the postfix operator++ points to the value
156 // Verifies that prefix and postfix operator++() advance an iterator
205 // copy constructor, operator=(), operator+(), and operator<().
211 DogAdder operator=(const DogAdder& other) {
216 DogAdder operator+(const DogAdder& other) const {
221 bool operator<(const DogAdder& other) const {
249 IntWrapper operator=(const IntWrapper& other) {
253 // operator+() adds a different type.
254 IntWrapper operator+(int other) const { return IntWrapper(value_ + other); }
255 bool operator<(const IntWrapper& other) const {
404 ::std::ostream& operator<<(::std::ostream& stream, const tuple<T1, T2>& value) {
410 ::std::ostream& operator<<(::std::ostream& stream,
419 ::std::ostream& operator<<(