/external/syslinux/gpxe/src/core/ |
D | console.c | 22 struct console_driver *console; in putchar() local 28 for_each_table_entry ( console, CONSOLES ) { in putchar() 29 if ( ( ! console->disabled ) && console->putchar ) in putchar() 30 console->putchar ( character ); in putchar() 48 struct console_driver *console; in has_input() local 50 for_each_table_entry ( console, CONSOLES ) { in has_input() 51 if ( ( ! console->disabled ) && console->iskey ) { in has_input() 52 if ( console->iskey () ) in has_input() 53 return console; in has_input() 81 struct console_driver *console; in getchar() local [all …]
|
/external/protobuf/js/ |
D | gulpfile.js | 14 console.log(stdout); 15 console.log(stderr); 23 console.log(stdout); 24 console.log(stderr); 34 console.log(stdout); 35 console.log(stderr); 43 console.log(stdout); 44 console.log(stderr); 52 console.log(stdout); 53 console.log(stderr); [all …]
|
/external/protobuf/js/commonjs/ |
D | rewrite_tests_for_commonjs.js | 66 console.log("var global = Function('return this')();"); 67 console.log("var googleProtobuf = require('google-protobuf');"); 68 console.log("var testdeps = require('testdeps_commonjs');"); 69 console.log("global.goog = testdeps.goog;"); 70 console.log("global.jspb = testdeps.jspb;"); 71 console.log("var asserts = require('closure_asserts_commonjs');"); 72 console.log(""); 73 console.log("// Bring asserts into the global namespace."); 74 console.log("googleProtobuf.object.extend(global, asserts);"); 84 console.log("googleProtobuf.exportSymbol('" + fullSym + "', " + module + sym + ', global);'); [all …]
|
/external/toybox/toys/other/ |
D | switch_root.c | 25 char *console; in GLOBALS() 49 int console = console; // gcc's "may be used" warnings are broken. in switch_root_main() local 81 if (TT.console && -1 == (console = open(TT.console, O_RDWR))) { in switch_root_main() 82 perror_msg("bad console '%s'", TT.console); in switch_root_main() 107 if (TT.console) { in switch_root_main() 109 for (i=0; i<3; i++) if (console != i) dup2(console, i); in switch_root_main() 110 if (console>2) close(console); in switch_root_main()
|
/external/jcommander/src/main/java/com/beust/jcommander/internal/ |
D | JDK6Console.java | 10 private Object console; field in JDK6Console 14 public JDK6Console(Object console) throws Exception { in JDK6Console() argument 15 this.console = console; in JDK6Console() 16 Method writerMethod = console.getClass().getDeclaredMethod("writer", new Class<?>[0]); in JDK6Console() 17 writer = (PrintWriter) writerMethod.invoke(console, new Object[0]); in JDK6Console() 33 method = console.getClass().getDeclaredMethod("readLine", new Class<?>[0]); in readPassword() 34 return ((String) method.invoke(console, new Object[0])).toCharArray(); in readPassword() 36 method = console.getClass().getDeclaredMethod("readPassword", new Class<?>[0]); in readPassword() 37 return (char[]) method.invoke(console, new Object[0]); in readPassword()
|
/external/pdfium/fpdfsdk/javascript/ |
D | console.cpp | 27 IMPLEMENT_JS_CLASS(CJS_Console, console) in IMPLEMENT_JS_CLASS() argument 29 console::console(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject) {} in IMPLEMENT_JS_CLASS() 31 console::~console() {} in ~console() 33 bool console::clear(CJS_Runtime* pRuntime, in clear() 40 bool console::hide(CJS_Runtime* pRuntime, in hide() 47 bool console::println(CJS_Runtime* pRuntime, in println() 57 bool console::show(CJS_Runtime* pRuntime, in show()
|
D | console.h | 14 class console : public CJS_EmbedObj { 16 explicit console(CJS_Object* pJSObject); 17 ~console() override; 45 JS_STATIC_METHOD(clear, console); 46 JS_STATIC_METHOD(hide, console); 47 JS_STATIC_METHOD(println, console); 48 JS_STATIC_METHOD(show, console);
|
/external/jacoco/org.jacoco.examples.test/src/org/jacoco/examples/ |
D | CoreTutorialTest.java | 25 public ConsoleOutput console = new ConsoleOutput(); field in CoreTutorialTest 29 new CoreTutorial(console.stream).execute(); in testRunExample() 31 console.expect(containsLine("0 of 3 methods missed")); in testRunExample() 32 console.expect(containsLine("1 of 5 complexity missed")); in testRunExample() 33 console.expect(containsLine("Line 46: ")); in testRunExample() 34 console.expect(containsLine("Line 47: green")); in testRunExample() 35 console.expect(containsLine("Line 48: yellow")); in testRunExample() 36 console.expect(containsLine("Line 49: red")); in testRunExample()
|
D | ClassInfoTest.java | 30 public ConsoleOutput console = new ConsoleOutput(); field in ClassInfoTest 36 new ClassInfo(console.stream).execute(args); in testRunExample() 38 console.expect(containsLine("class name: org/jacoco/examples/ClassInfoTest")); in testRunExample() 39 console.expect(containsLine("methods: 3")); in testRunExample() 40 console.expect(containsLine("branches: 2")); in testRunExample() 41 console.expect(containsLine("complexity: 4")); in testRunExample()
|
D | ExecDumpTest.java | 33 public ConsoleOutput console = new ConsoleOutput(); field in ExecDumpTest 40 new ExecDump(console.stream).execute(args); in testRunExample() 42 console.expect(containsLine("exec file: " + file)); in testRunExample() 43 console.expect(containsLine("CLASS ID HITS/PROBES CLASS NAME")); in testRunExample() 44 console.expect(containsString("Session \"testid\":")); in testRunExample() 45 console.expect(containsLine("0000000000001234 2 of 3 foo/MyClass")); in testRunExample()
|
/external/libmtp/ |
D | libmtp.sh.in | 25 if [ -f /var/run/console/console.lock ] 27 DEVICEOWNER=`cat /var/run/console/console.lock` 28 elif [ -f /var/run/console.lock ] 30 DEVICEOWNER=`cat /var/run/console.lock` 31 elif [ -f /var/lock/console.lock ] 33 DEVICEOWNER=`cat /var/lock/console.lock`
|
/external/autotest/server/cros/servo/ |
D | pd_device.py | 143 def __init__(self, console, port): argument 150 self.console = console 152 self.utils = pd_console.PDConsoleUtils(console) 385 def __init__(self, console, port): argument 392 super(PDPlanktonDevice, self).__init__(console, 0) 606 def _send_pd_state(self, port, console): argument 617 m = console.send_command_get_output(cmd, [regex]) 624 def _find_num_pd_ports(self, console): argument 634 if self._send_pd_state(port, console): 638 def _is_pd_console(self, console): argument [all …]
|
/external/vogar/src/vogar/tasks/ |
D | TaskQueue.java | 35 private final Console console; field in TaskQueue 44 public TaskQueue(Console console, int maxConcurrentActions) { in TaskQueue() argument 45 this.console = console; in TaskQueue() 67 ExecutorService runners = Threads.threadPerCpuExecutor(console, "TaskQueue"); in runTasks() 86 if (!console.isVerbose()) { in printTasks() 100 console.verbose(message.toString()); in printTasks() 112 console.info(message, task.thrown); in printProblemTasks() 114 console.info(message); in printProblemTasks() 117 if (!console.isVerbose()) { in printProblemTasks() 135 console.verbose(message.toString()); in printProblemTasks() [all …]
|
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/ |
D | scan.js | 22 console.log('App was granted the "documentScan" permission.'); 34 console.log('App was not granted the "documentScan" permission.'); 35 console.log(chrome.runtime.lastError); 43 console.log('Scan failed: ' + chrome.runtime.lastError.message); 47 console.log('Scan completed with ' + numImages + ' images.'); 50 console.log('Scan ' + i + ' data length ' + 52 console.log('URL is ' + urlData);
|
/external/jline/src/src/test/java/jline/ |
D | JLineTestCase.java | 14 ConsoleReader console; field in JLineTestCase 22 console = new ConsoleReader(null, new PrintWriter( in setUp() 35 console.finishBuffer(); in assertBuffer() 36 console.getHistory().clear(); in assertBuffer() 39 console.setInput(new ByteArrayInputStream(buffer.getBytes())); in assertBuffer() 42 while (console.readLine((String) null) != null) { in assertBuffer() 46 assertEquals(expected, console.getCursorBuffer().toString()); in assertBuffer() 50 int action = console.getKeyForAction(logicalAction); in getKeyForAction()
|
D | TestCompletion.java | 23 for (Iterator i = console.getCompletors().iterator(); i.hasNext(); in testSimpleCompletor() 24 console.removeCompletor((Completor) i.next())) { in testSimpleCompletor() 28 console.addCompletor in testSimpleCompletor() 40 for (Iterator i = console.getCompletors().iterator(); i.hasNext(); in testArgumentCompletor() 41 console.removeCompletor((Completor) i.next())) { in testArgumentCompletor() 45 console.addCompletor(new ArgumentCompletor in testArgumentCompletor()
|
/external/guice/extensions/persist/test/ |
D | log4j.properties | 1 log4j.rootLogger=warn, console 3 log4j.appender.console=org.apache.log4j.ConsoleAppender 4 log4j.appender.console.Target=System.out 5 log4j.appender.console.layout=org.apache.log4j.PatternLayout 6 log4j.appender.console.layout.ConversionPattern=%p [%c{1}] - %m %n
|
/external/vogar/src/vogar/ |
D | Driver.java | 73 run.console.info("Nothing to do."); in buildAndRun() 77 run.console.info("Actions: " + actions.size()); in buildAndRun() 118 run.console.info("Printing XML Reports... "); in buildAndRun() 120 run.console.info(numFiles + " XML files written."); in buildAndRun() 130 run.console.summarizeOutcomes(annotatedOutcomes.values()); in buildAndRun() 134 run.console.warn( in buildAndRun() 140 run.console.info(String.format( in buildAndRun() 145 run.console.info(String.format("Outcomes: %s. All successful. Took %s.", in buildAndRun() 209 new ActionFinder(run.console, actions, outcomes).findActions(file); in filesToActions() 215 run.console.verbose("skipped " + earlyFailure.getName()); in addEarlyResult() [all …]
|
/external/lzma/CPP/7zip/UI/Console/ |
D | UserInputUtils.cpp | 69 HANDLE console = GetStdHandle(STD_INPUT_HANDLE); in GetPassword() local 72 if (console != INVALID_HANDLE_VALUE && console != 0) in GetPassword() 73 if (GetConsoleMode(console, &mode)) in GetPassword() 74 wasChanged = (SetConsoleMode(console, mode & ~ENABLE_ECHO_INPUT) != 0); in GetPassword() 77 SetConsoleMode(console, mode); in GetPassword()
|
/external/vogar/test/vogar/android/ |
D | AbstractModeTest.java | 48 @Mock protected Console console; field in AbstractModeTest 69 mkdir = new Mkdir(console); in setUp() 70 rm = new Rm(console); in setUp() 72 androidSdk = new AndroidSdk(console, mkdir, in setUp() 74 new HostFileCache(console, mkdir), in setUp() 85 run = new Run(vogar, false, console, mkdir, androidSdk, new Rm(console), target, in setUp()
|
/external/v8/src/inspector/ |
D | v8-console.cc | 51 v8::Local<v8::Object> console = ensureConsole(); in ensureInspectedContext() local 55 if (!console->GetPrivate(m_context, key).ToLocal(&inspectedContextValue)) in ensureInspectedContext() 149 v8::Local<v8::Object> console = ensureConsole(); in privateMap() local 153 if (!console->GetPrivate(m_context, privateKey).ToLocal(&mapValue)) in privateMap() 157 if (!console->SetPrivate(m_context, privateKey, map).FromMaybe(false)) in privateMap() 230 v8::Local<v8::Object> console = ensureConsole(); in checkAndSetPrivateFlagOnConsole() local 234 if (!console->GetPrivate(m_context, key).ToLocal(&flagValue)) in checkAndSetPrivateFlagOnConsole() 241 if (!console->SetPrivate(m_context, key, v8::True(m_isolate)) in checkAndSetPrivateFlagOnConsole() 255 v8::Local<v8::Object> console, in createBoundFunctionProperty() argument 262 if (!v8::Function::New(context, callback, console, 0, in createBoundFunctionProperty() [all …]
|
/external/autotest/client/deps/graphics/graphics_test_extension/ |
D | background.js | 16 console.log("Background got message: " + message.method); 20 console.log("Create window."); 24 console.log("Set window " + sender.tab.windowId + " to fullscreen."); 27 console.log("Update window " + sender.tab.windowId + ": " + 31 console.log("Move window " + sender.tab.windowId + 43 console.log('Cannot get internal display width.');
|
/external/autotest/server/site_tests/firmware_PDPowerSwap/ |
D | firmware_PDPowerSwap.py | 46 def _send_power_swap_get_reply(self, console, port): argument 59 console.enable_pd_console_debug() 61 m = console.send_pd_command_get_output(cmd, ['RECV\s([\w]+)']) 62 ctrl_msg = int(m[0][1], 16) & console.PD_CONTROL_MSG_MASK 63 console.disable_pd_console_debug() 81 console = self.plankton_pd_utils 84 console = self.dut_pd_utils 87 self._send_power_swap_get_reply(console, port)
|
/external/webrtc/webrtc/tools/rtcbot/bot/browser/ |
D | bot.js | 17 console.log("Getting user media."); 22 console.log("GetUserMedia success."); 29 console.log("Creating peer connection"); 42 console.log("Adding local stream."); 45 console.log("Undefined stream!"); 102 console.log("Stream " + stream.id + " attached to video element"); 112 console.log(id + " is not id for stream.");
|
/external/autotest/server/site_tests/firmware_PDDataSwap/ |
D | firmware_PDDataSwap.py | 96 def _get_data_role(self, console, port): argument 104 role = console.get_pd_role(port) 143 def _send_data_swap_get_reply(self, console, port): argument 156 console.enable_pd_console_debug() 158 m = console.send_pd_command_get_output(cmd, ['RECV\s([\w]+)']) 159 ctrl_msg = int(m[0][1], 16) & console.PD_CONTROL_MSG_MASK 160 console.disable_pd_console_debug() 188 console = self.dut_pd_utils 196 console = self.plankton_pd_utils 197 ctrl = self._send_data_swap_get_reply(console, self.PLANKTON_PORT)
|