Lines Matching defs:operator
38 // defining either operator<<() or PrintTo() in the namespace that
44 // 2. operator<<(ostream&, const T&) defined in either foo or the
46 // * Prefer AbslStringify(..) to operator<<(..), per https://abseil.io/tips/215.
52 // operator<<() is ignored for container types.
227 // The presence of an operator<< here will terminate lexical scope lookup
229 // types). Thus, the two operator<< calls in StreamPrinter will find only ADL
232 void operator<<(LookupBlocker, LookupBlocker);
240 // Only accept types for which we can find a streaming operator via
246 // Call streaming operator found by ADL, possibly with implicit conversions
273 // Since T has no << operator or PrintTo() but can be implicitly
343 // - Use the stream operator, if available.
474 // Prints the given value using the << operator if it has one;
481 // give the user this option as sometimes defining a << operator for
483 // or there is already a << operator but it doesn't do what the user
916 void operator()(const U& u) const {