Home
last modified time | relevance | path

Searched defs:ScopedNewLine (Results 1 – 1 of 1) sorted by relevance

/art/runtime/verifier/
Dscoped_newline.h28 struct ScopedNewLine { struct
29 explicit ScopedNewLine(std::ostream& os) : stream(os) {} in ScopedNewLine() function
31 ScopedNewLine(ScopedNewLine&& other) : stream(other.stream), active(other.active) { in ScopedNewLine() argument
36 ScopedNewLine& operator=(ScopedNewLine&) = delete; argument
38 ~ScopedNewLine() { in ~ScopedNewLine() argument
57 std::ostream& stream;
58 bool active = true;