/third_party/protobuf/csharp/src/AddressBook/ |
H A D | Program.cs | 48 Console.Error.WriteLine("Usage: AddressBook [file]");
in Main() 49 Console.Error.WriteLine("If the filename isn't specified, \"addressbook.data\" is used instead.");
in Main() 57 Console.WriteLine("Options:");
in Main() 58 Console.WriteLine(" L: List contents");
in Main() 59 Console.WriteLine(" A: Add new person");
in Main() 60 Console.WriteLine(" Q: Quit");
in Main() 61 Console.Write("Action? ");
in Main() 62 Console.Out.Flush();
in Main() 63 char choice = Console.ReadKey().KeyChar;
in Main() 64 Console in Main() [all...] |
H A D | ListPeople.cs | 47 Console.WriteLine("Person ID: {0}", person.Id);
in Print() 48 Console.WriteLine(" Name: {0}", person.Name);
in Print() 51 Console.WriteLine(" E-mail address: {0}", person.Email);
in Print() 59 Console.Write(" Mobile phone #: ");
in Print() 62 Console.Write(" Home phone #: ");
in Print() 65 Console.Write(" Work phone #: ");
in Print() 68 Console.WriteLine(phoneNumber.Number);
in Print() 80 Console.Error.WriteLine("Usage: ListPeople ADDRESS_BOOK_FILE");
in Main() 86 Console.WriteLine("{0} doesn't exist. Add a person to create the file first.", args[0]);
in Main()
|
H A D | AddPerson.cs | 102 Console.Error.WriteLine("Usage: AddPerson ADDRESS_BOOK_FILE");
in Main() 117 Console.WriteLine("{0}: File not found. Creating a new file.", args[0]);
in Main() 122 addressBook.People.Add(PromptForAddress(Console.In, Console.Out));
in Main()
|
/third_party/protobuf/csharp/src/Google.Protobuf.JsonDump/ |
H A D | Program.cs | 48 Console.Error.WriteLine("Usage: Google.Protobuf.JsonDump <descriptor type name> <input data>");
in Main() 49 Console.Error.WriteLine("The descriptor type name is the fully-qualified message name,");
in Main() 50 Console.Error.WriteLine("including assembly e.g. ProjectNamespace.Message,Company.Project");
in Main() 56 Console.Error.WriteLine("Unable to load type {0}.", args[0]);
in Main() 61 Console.Error.WriteLine("Type {0} doesn't implement IMessage.", args[0]);
in Main() 69 Console.WriteLine(message);
in Main()
|
/third_party/libsnd/examples/ |
H A D | generate.cs | 196 Console.WriteLine("Error opening " + sfn); in Main() 197 Console.WriteLine("Error #" + sf_error(infile)); in Main() 219 Console.WriteLine("sf_format_check failed. Invalid encoding"); in Main() 228 Console.WriteLine("Error opening " + ofn); in Main() 229 Console.WriteLine("Error #" + sf_error(outfile)); in Main() 234 Console.Write(sfn + " -> " + ofn); in Main() 236 Console.Write("."); in Main() 239 Console.WriteLine("done."); in Main()
|
/third_party/lzma/CS/7zip/Compress/LzmaAlone/ |
H A D | LzmaBench.cs | 214 System.Console.Write(" ");
in PrintValue() 215 System.Console.Write(s);
in PrintValue() 221 System.Console.Write(" MIPS");
in PrintRating() 232 System.Console.Write(" KB/s ");
in PrintResults() 247 System.Console.WriteLine("\nError: dictionary size for benchmark must be >= 19 (512 KB)");
in LzmaBenchmark() 250 System.Console.Write("\n Compressing Decompressing\n\n");
in LzmaBenchmark() 322 System.Console.Write(" ");
in LzmaBenchmark() 324 System.Console.WriteLine();
in LzmaBenchmark() 331 System.Console.WriteLine("---------------------------------------------------");
in LzmaBenchmark() 333 System.Console in LzmaBenchmark() [all...] |
H A D | LzmaAlone.cs | 81 System.Console.WriteLine("\nUsage: LZMA <e|d> [<switches>...] inputFile outputFile\n" +
in PrintHelp() 116 // System.Console.WriteLine("\nCommand line error\n");
in IncorrectCommand() 121 System.Console.WriteLine("\nLZMA# 4.61 2008-11-23\n");
in Main2() 358 Console.WriteLine("{0} Caught exception #1.", e);
in Main()
|
/third_party/node/lib/internal/console/ |
H A D | constructor.js | 3 // The Console constructor is not actually used to construct the global 105 function Console(options /* or: stdout, stderr, ignoreErrors = true */) { class 110 return ReflectConstruct(Console, arguments); 156 // Bind the prototype functions to this Console instance 157 ArrayPrototypeForEach(ObjectKeys(Console.prototype), (key) => { 159 // the prototype so that users extending the Console can override them 178 // Fixup global.console instanceof global.console.Console 179 ObjectDefineProperty(Console, SymbolHasInstance, { 189 ObjectDefineProperties(Console.prototype, { 193 // Eager version for the Console constructo [all...] |
/third_party/node/test/parallel/ |
H A D | test-console-group.js | 11 const Console = require('console').Console; 26 c = new Console({ stdout: process.stdout, 68 // Group indentation is tracked per Console instance. 77 const c2 = new Console(process.stdout, process.stderr); 199 new Console({ stdout: process.stdout, 214 new Console({ stdout: process.stdout, 230 new Console({ stdout: process.stdout,
|
H A D | test-console-tty-colors.js | 6 const { Console } = require('console'); 32 const testConsole = new Console({ 63 new Console({ 79 new Console({
|
H A D | test-console-methods.js | 9 const { Console } = console; 10 const newInstance = new Console(process.stdout);
|
H A D | test-console-table.js | 6 const { Console } = require('console'); 10 const console = new Console({ write: (x) => {
|
H A D | test-repl-context.js | 37 assert(context.console instanceof require('console').Console);
|
/third_party/rust/crates/termcolor/wincolor/src/ |
H A D | win.rs | 28 pub struct Console { structure names 49 impl Console { impls 51 fn create_for_stream(kind: HandleKind) -> io::Result<Console> { in create_for_stream() 55 Ok(Console { kind: kind, start_attr: attr, cur_attr: attr }) in create_for_stream() 58 /// Create a new Console to stdout. 61 pub fn stdout() -> io::Result<Console> { in stdout() 65 /// Create a new Console to stderr. 68 pub fn stderr() -> io::Result<Console> { in stderr() 105 /// when this `Console` value was created.
|
/third_party/skia/experimental/xps_to_png/ |
H A D | xps_to_png.cs | 65 System.Console.WriteLine(filename); in convert() 76 System.Console.WriteLine(e); in try_convert() 84 System.Console.WriteLine("usage:\n\txps_to_png [-dDPI] [XPS_FILES]\n\n"); in Main() 96 System.Console.WriteLine("file missing: '" + arg + "'\n\n"); in Main()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-console-agent-impl.h | 9 #include "src/inspector/protocol/Console.h" 19 class V8ConsoleAgentImpl : public protocol::Console::Backend { 42 protocol::Console::Frontend m_frontend;
|
H A D | v8-console-message.cc | 228 protocol::Console::Frontend* frontend) const { in reportToFrontend() 230 String16 level = protocol::Console::ConsoleMessage::LevelEnum::Log; in reportToFrontend() 233 level = protocol::Console::ConsoleMessage::LevelEnum::Debug; in reportToFrontend() 236 level = protocol::Console::ConsoleMessage::LevelEnum::Error; in reportToFrontend() 238 level = protocol::Console::ConsoleMessage::LevelEnum::Warning; in reportToFrontend() 240 level = protocol::Console::ConsoleMessage::LevelEnum::Info; in reportToFrontend() 241 std::unique_ptr<protocol::Console::ConsoleMessage> result = in reportToFrontend() 242 protocol::Console::ConsoleMessage::create() in reportToFrontend() 243 .setSource(protocol::Console::ConsoleMessage::SourceEnum::ConsoleApi) in reportToFrontend()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Conformance/ |
H A D | Program.cs | 49 var input = new BinaryReader(Console.OpenStandardInput()); in Main() 50 var output = new BinaryWriter(Console.OpenStandardOutput()); in Main() 60 Console.Error.WriteLine("Received EOF after {0} tests", count); in Main()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
H A D | RefStructCompatibilityTest.cs | 98 Console.WriteLine(e.Data); in RunOldCsharpCompilerAndCheckSuccess() 105 Console.WriteLine(e.Data); in RunOldCsharpCompilerAndCheckSuccess()
|
/third_party/rust/crates/is-terminal/src/ |
H A D | lib.rs | 37 use windows_sys::Win32::System::Console::STD_HANDLE; 82 use windows_sys::Win32::System::Console::GetStdHandle; 83 use windows_sys::Win32::System::Console::{ 124 use windows_sys::Win32::System::Console::{GetConsoleMode, GetStdHandle}; in console_on_any()
|
/third_party/lzma/CPP/7zip/ |
H A D | 7zip_gcc.mak | 316 $O/Console.o: ../../../Windows/Console.cpp
895 $O/BenchCon.o: ../../UI/Console/BenchCon.cpp
897 $O/ConsoleClose.o: ../../UI/Console/ConsoleClose.cpp
899 $O/ExtractCallbackConsole.o: ../../UI/Console/ExtractCallbackConsole.cpp
901 $O/HashCon.o: ../../UI/Console/HashCon.cpp
903 $O/List.o: ../../UI/Console/List.cpp
905 $O/Main.o: ../../UI/Console/Main.cpp ../../../../C/7zVersion.h
907 $O/MainAr.o: ../../UI/Console/MainAr.cpp
909 $O/OpenCallbackConsole.o: ../../UI/Console/OpenCallbackConsol [all...] |
H A D | 7zip.mak | 151 $(CONSOLE_OBJS): ../../UI/Console/$(*B).cpp
193 {../../UI/Console}.cpp{$O}.obj::
|
/third_party/rust/crates/termcolor/src/ |
H A D | lib.rs | 474 console: Mutex<wincon::Console>, 493 console: MutexGuard<'a, wincon::Console>, 627 StandardStreamType::Stdout => wincon::Console::stdout(), in create() 628 StandardStreamType::Stderr => wincon::Console::stderr(), in create() 629 StandardStreamType::StdoutBuffered => wincon::Console::stdout(), in create() 630 StandardStreamType::StderrBuffered => wincon::Console::stderr(), in create() 913 console: Option<Mutex<wincon::Console>>, 943 StandardStreamType::Stdout => wincon::Console::stdout(), in create() 944 StandardStreamType::Stderr => wincon::Console::stderr(), in create() 945 StandardStreamType::StdoutBuffered => wincon::Console in create() [all...] |
/third_party/vk-gl-cts/android/cts/runner/tests/ |
H A D | run_tests.sh | 40 TF_CONSOLE=com.android.tradefed.command.Console
|
/third_party/selinux/libsepol/tests/ |
H A D | libsepol-tests.c | 30 #include <CUnit/Console.h>
|