Searched defs:console (Results 1 - 25 of 27) sorted by relevance

12

/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DgUnitBaseTest.java60 private PrintStream console = System.out; field in class:gUnitBaseTest
144 System.setOut(console); // Reset standard output
292 System.setOut(console); // Reset standard output
457 System.setOut(console); // Reset standard output
H A DJUnitCodeGen.java53 private final static Handler console = new ConsoleHandler(); field in class:JUnitCodeGen
56 logger.addHandler(console);
H A DgUnitExecutor.java75 private PrintStream console = System.out; field in class:gUnitExecutor
295 System.setOut(console); // Reset standard output
427 System.setOut(console); // Reset standard output
596 System.setOut(console); // Reset standard output
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DConsoleTest.java47 private Console console = null; field in class:ConsoleTest
54 console = constructor.newInstance(in, out);
58 console = null;
63 assertNotNull(System.console());
67 console.flush();
68 assertFalse(console.writer().checkError());
72 assertSame(console, console.format("%d %s", 1, "hello"));
79 assertSame(console, console
[all...]
/external/webkit/Source/WebCore/xml/
H A DXSLTProcessorQt.cpp84 Console* console = m_document->frame()->domWindow()->console(); local
85 console->addMessage(XMLMessageSource, LogMessageType, level, description,
H A DXSLStyleSheetLibxslt.cpp145 Console* console = 0; local
147 console = frame->domWindow()->console();
149 XMLDocumentParserScope scope(cachedResourceLoader(), XSLTProcessor::genericErrorFunc, XSLTProcessor::parseErrorFunc, console); local
H A DXSLTProcessorLibxslt.cpp83 Console* console = static_cast<Console*>(userData); local
84 if (!console)
102 console->addMessage(XMLMessageSource, LogMessageType, level, error->message, error->line, error->file);
138 Console* console = 0; local
140 console = frame->domWindow()->console();
141 xmlSetStructuredErrorFunc(console, XSLTProcessor::parseErrorFunc);
142 xmlSetGenericErrorFunc(console, XSLTProcessor::genericErrorFunc);
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dautoinstall.py494 console = logging.StreamHandler() variable in class:AutoInstaller
497 console.setFormatter(formatter)
498 _log.addHandler(console)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.console_1.0.200.v20100601.jar ... org/eclipse/equinox/internal/p2/ org/eclipse/equinox/internal/p2/console/ org/eclipse/equinox/internal/p2/console/Activator.class Activator ...
H A Dorg.eclipse.equinox.simpleconfigurator_1.0.200.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium/chrome/browser/diagnostics/
H A Ddiagnostics_main.cc27 // 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) argument
209 : console_(console),
340 SimpleConsole* console = SimpleConsole::Create(); local
[all...]
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dcallclient.h40 #include "talk/examples/call/console.h"
94 void SetConsole(Console *console) { argument
95 console_ = console;
H A Dcall_main.cc45 #include "talk/examples/call/console.h"
212 // will get input from the console, parse it, and pass the appropriate
367 Console *console = new Console(main_thread, client); local
368 client->SetConsole(console);
375 console->Start();
386 console->Stop();
387 delete console;
/external/qemu/distrib/sdl-1.2.15/src/video/svga/
H A DSDL_svgavideo.c72 /* Check to see if we are root and stdin is a virtual console */
73 int console; local
79 console = STDIN_FILENO;
81 if ( console >= 0 ) {
85 if ( (fstat(console, &sb) < 0) ||
86 (ioctl(console, VT_GETMODE, &dummy) < 0) ) {
87 console = -1;
98 return(((svgalib2 != -1) || (geteuid() == 0)) && (console >= 0));
558 /* Reset the console video mode */
/external/qemu/distrib/sdl-1.2.15/src/video/vgl/
H A DSDL_vglvideo.c71 * virtual console. Also try to ensure that
74 int console, hires_available, i; local
77 console = STDIN_FILENO;
78 if ( console >= 0 ) {
82 if ( (fstat(console, &sb) < 0) ||
83 (ioctl(console, VT_GETMODE, &dummy) < 0) ) {
84 console = -1;
87 if (geteuid() != 0 && console == -1)
461 /* Reset the console video mode if we actually initialised one */
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsvideo.c24 /* Framebuffer console based SDL video driver implementation.
61 int console, memory; local
63 console = open(PS2_DEV_GS, O_RDWR, 0);
64 if ( console >= 0 ) {
65 close(console);
71 return((console >= 0) && (memory >= 0));
305 SDL_SetError("Couldn't get console pixel format");
322 SDL_SetError("Unknown console pixel format: %d", vinfo.psm);
424 SDL_SetError("Couldn't get console screen info");
460 SDL_SetError("Couldn't set console scree
[all...]
/external/v8/src/
H A Dd8.h363 static LineEditor* console; member in class:v8::Shell
H A Dd8.cc117 LineEditor* Shell::console = NULL; member in class:v8::Shell
951 if (console != NULL) console->Close();
1085 console = LineEditor::Get();
1086 printf("V8 version %s [console: %s]\n", V8::GetVersion(), console->name());
1087 console->Open();
1090 Handle<String> input = console->Prompt(Shell::kPrompt);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-netrexx.jar ... boolean comments private boolean compact private boolean compile private boolean console private boolean crossref private boolean decimal private java.io ...
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Proxy.cpp136 Console* console = page->mainFrame()->domWindow()->console(); local
137 console->addMessage(JSMessageSource, LogMessageType, ErrorMessageLevel, message, lineNumber, sourceID);
171 // Build a console message with fake source ID and line number.
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbvideo.c24 /* Framebuffer console based SDL video driver implementation.
199 int console = -1; local
210 console = open(SDL_fbdevs[idx], O_RDWR, 0);
211 if ( console >= 0 ) {
212 close(console);
216 return(console >= 0);
532 SDL_SetError("Couldn't get console hardware info");
555 SDL_SetError("Unsupported console hardware");
566 SDL_SetError("Unsupported console hardware");
594 SDL_SetError("Couldn't get console pixe
[all...]
/external/webkit/Source/WebCore/page/
H A DDOMWindow.cpp589 Console* DOMWindow::console() const function in class:WebCore::DOMWindow
849 console()->addMessage(JSMessageSource, LogMessageType, ErrorMessageLevel, message, 0, String());
1724 console()->addMessage(JSMessageSource, LogMessageType, ErrorMessageLevel, message, 1, String());
1735 // FIXME: This message, and other console messages, have extra newlines. Should remove them.
/external/kernel-headers/original/linux/
H A Dfb.h301 __u32 console; member in struct:fb_con2fbmap
544 /* CONSOLE-SPECIFIC: get console to framebuffer mapping */
546 /* CONSOLE-SPECIFIC: set console to framebuffer mapping */
559 /* Unbind from the console if possible */
623 * LOCKING NOTE: those functions must _ALL_ be called with the console
628 * into a debug state (e.g. flipping to the kernel console) and restoring
630 * keep track of the initial console (if applicable) and may need to
702 /* called at KDB enter and leave time to prepare the console */
821 * is that it introduces unwanted delays to every console switch if set_par
824 * framebuffer console
[all...]

Completed in 844 milliseconds

12