Home | History | Annotate | Download | only in diagnostics

Lines Matching defs:console

27 // This is a minimalistic interface to wrap the platform console.  This will be
41 // false there would be no console output.
44 // Writes a string to the console with the current color.
47 // Reads a string from the console. Internally it may be limited to 256
60 // Wrapper for the windows console operating in high-level IO mode.
63 // The ctor allocates a console always. This avoids having to ask
84 // Reads a string from the console. Internally it is limited to 256
206 // The |console| must be valid and properly initialized. This
208 explicit TestWriter(SimpleConsole* console)
209 : console_(console),
339 // If we can't initialize the console exit right away.
340 SimpleConsole* console = SimpleConsole::Create();
341 if (!console || !console->Init())
350 TestWriter writer(console);
364 console->Read(&txt);
366 delete console;