Searched refs:ScopedNewLine (Results 1 – 3 of 3) sorted by relevance
30 struct ScopedNewLine { struct31 explicit ScopedNewLine(std::ostream& os) : stream(os) {} in ScopedNewLine() argument33 ScopedNewLine(ScopedNewLine&& other) noexcept : stream(other.stream), active(other.active) { in ScopedNewLine() function37 ScopedNewLine(ScopedNewLine&) = delete;38 ScopedNewLine& operator=(ScopedNewLine&) = delete; argument40 ~ScopedNewLine() { in ~ScopedNewLine() argument47 ScopedNewLine& operator<<(const T& t) {53 ScopedNewLine& operator<<(std::ostream& (*f)(std::ostream&)) {
63 struct ScopedNewLine;138 ScopedNewLine LogVerifyInfo();
5343 ScopedNewLine MethodVerifier::LogVerifyInfo() { in LogVerifyInfo()5344 ScopedNewLine ret{info_messages_}; in LogVerifyInfo()