Home
last modified time | relevance | path

Searched refs:Console (Results 1 – 25 of 237) sorted by relevance

12345678910

/external/protobuf/csharp/src/AddressBook/
DProgram.cs48 Console.Error.WriteLine("Usage: AddressBook [file]"); in Main()
49Console.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.WriteLine(); in Main()
[all …]
DListPeople.cs47 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()
86Console.WriteLine("{0} doesn't exist. Add a person to create the file first.", args[0]); in Main()
/external/libiio/src/bindings/csharp/examples/
DExampleProgram.cs17 Console.WriteLine("Unable to create IIO context"); in Main()
21 Console.WriteLine("IIO context created: " + ctx.name); in Main()
22 Console.WriteLine("IIO context description: " + ctx.description); in Main()
24 Console.WriteLine("IIO context has " + ctx.devices.Count + " devices:"); in Main()
26 Console.WriteLine("\t" + dev.id + ": " + dev.name); in Main()
30 Console.WriteLine("Found trigger! Rate=" + ((Trigger) dev).get_rate()); in Main()
33 Console.WriteLine("\t\t" + dev.channels.Count + " channels found:"); in Main()
40 Console.WriteLine("\t\t\t" + chn.id + ": " + chn.name + " (" + type + ")"); in Main()
45Console.WriteLine("\t\t\t" + chn.attrs.Count + " channel-specific attributes found:"); in Main()
48 Console.WriteLine("\t\t\t\t" + attr.name); in Main()
[all …]
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DTraceDebugEventListener.cs36 using Console = System.Console; typedef
48 Console.Out.WriteLine("enterRule " + ruleName); in EnterRule()
51 Console.Out.WriteLine("exitRule " + ruleName); in ExitRule()
54 Console.Out.WriteLine("enterSubRule"); in EnterSubRule()
57 Console.Out.WriteLine("exitSubRule"); in ExitSubRule()
60 Console.Out.WriteLine("location " + line + ":" + pos); in Location()
69 Console.Out.WriteLine("consumeNode " + ID + " " + text + " " + type); in ConsumeNode()
76 Console.Out.WriteLine("LT " + i + " " + ID + " " + text + " " + type); in LT()
85 Console.Out.WriteLine("nilNode " + adaptor.GetUniqueID(t)); in NilNode()
92 Console.Out.WriteLine("create " + ID + ": " + text + ", " + type); in CreateNode()
[all …]
DRemoteDebugEventSocketListener.cs38 using Console = System.Console; typedef
260 Console.Error.WriteLine(e); in EventHandler()
261 ExceptionExtensions.PrintStackTrace(e, Console.Error); in EventHandler()
281 Console.Error.WriteLine(e); in OpenConnection()
295 Console.Error.WriteLine(e); in CloseConnection()
296 ExceptionExtensions.PrintStackTrace(e, Console.Error); in CloseConnection()
302 Console.Error.WriteLine(ioe); in CloseConnection()
312 Console.Error.WriteLine(ioe); in CloseConnection()
339 Console.Error.WriteLine("unknown debug event: " + line); in Dispatch()
411 Console.Error.println( "can't find class " + cnfe ); in Dispatch()
[all …]
DProfiler.cs42 using Console = System.Console; typedef
125Console.WriteLine("examine memo " + ruleName + " at " + input.Index + ": " + stopIndex); in ExamineRuleMemoization()
146 Console.WriteLine("memoize " + ruleName); in Memoize()
161Console.WriteLine("enterDecision canBacktrack=" + couldBacktrack + " " + decisionNumber + in EnterDecision()
198 Console.WriteLine("exitDecision " + decisionNumber + " in " + d.decision.ruleName + in ExitDecision()
207 Console.WriteLine("consume token " + token); in ConsumeToken()
225 Console.WriteLine("consume " + thisRefIndex + " " + depth + " tokens ahead in " + in ConsumeToken()
251Console.WriteLine("LT(" + i + ")=" + t + " index " + t.TokenIndex + " relative to " + d.decision.r… in LT()
259 Console.WriteLine("set last token " + lastRealTokenTouchedInDecision); in LT()
297 Console.WriteLine("enter backtrack " + level); in BeginBacktrack()
[all …]
DTracer.cs62 Console.Out.Write(" "); in EnterRule()
64Console.Out.WriteLine("> " + grammarFileName + " " + ruleName + " lookahead(1)=" + GetInputSymbol(… in EnterRule()
73 Console.Out.Write(" "); in ExitRule()
75Console.Out.WriteLine("< " + grammarFileName + " " + ruleName + " lookahead(1)=" + GetInputSymbol(… in ExitRule()
DDebugParser.cs36 using Console = System.Console; typedef
88 Console.Error.WriteLine(e); in ReportError()
89 ExceptionExtensions.PrintStackTrace(e, Console.Error); in ReportError()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DTraceDebugEventListener.cs37 using Console = System.Console; typedef
52 Console.Out.WriteLine( "enterRule " + ruleName ); in EnterRule()
56 Console.Out.WriteLine( "exitRule " + ruleName ); in ExitRule()
60 Console.Out.WriteLine( "enterSubRule" ); in EnterSubRule()
64 Console.Out.WriteLine( "exitSubRule" ); in ExitSubRule()
68 Console.Out.WriteLine( "location " + line + ":" + pos ); in Location()
78 Console.Out.WriteLine( "consumeNode " + ID + " " + text + " " + type ); in ConsumeNode()
86 Console.Out.WriteLine( "LT " + i + " " + ID + " " + text + " " + type ); in LT()
96 Console.Out.WriteLine( "nilNode " + adaptor.GetUniqueID( t ) ); in NilNode()
104 Console.Out.WriteLine( "create " + ID + ": " + text + ", " + type ); in CreateNode()
[all …]
DTracer.cs37 using Console = System.Console; typedef
59 Console.Out.Write( " " ); in EnterRule()
61 Console.Out.WriteLine( "> " + ruleName + " lookahead(1)=" + GetInputSymbol( 1 ) ); in EnterRule()
70 Console.Out.Write( " " ); in ExitRule()
72 Console.Out.WriteLine( "< " + ruleName + " lookahead(1)=" + GetInputSymbol( 1 ) ); in ExitRule()
DRemoteDebugEventSocketListener.cs39 using Console = System.Console; typedef
319 Console.Error.WriteLine( e ); in EventHandler()
320 ExceptionExtensions.PrintStackTrace( e, Console.Error ); in EventHandler()
346 Console.Error.WriteLine( e ); in OpenConnection()
364 Console.Error.WriteLine( e ); in CloseConnection()
365 ExceptionExtensions.PrintStackTrace( e, Console.Error ); in CloseConnection()
377 Console.Error.WriteLine( ioe ); in CloseConnection()
392 Console.Error.WriteLine( ioe ); in CloseConnection()
423 Console.Error.WriteLine( "unknown debug event: " + line ); in Dispatch()
531 Console.Error.println( "can't find class " + cnfe ); in Dispatch()
[all …]
DProfiler.cs41 using Console = System.Console; typedef
130Console.WriteLine("examine memo " + ruleName + " at " + input.Index + ": " + stopIndex); in ExamineRuleMemoization()
155 Console.WriteLine("memoize " + ruleName); in Memoize()
173Console.WriteLine("enterDecision canBacktrack=" + couldBacktrack + " " + decisionNumber + in EnterDecision()
213 Console.WriteLine("exitDecision " + decisionNumber + " in " + d.decision.ruleName + in ExitDecision()
223 Console.WriteLine("consume token " + token); in ConsumeToken()
244 Console.WriteLine("consume " + thisRefIndex + " " + depth + " tokens ahead in " + in ConsumeToken()
276Console.WriteLine("LT(" + i + ")=" + t + " index " + t.TokenIndex + " relative to " + d.decision.r… in LT()
285 Console.WriteLine("set last token " + lastRealTokenTouchedInDecision); in LT()
324 Console.WriteLine("enter backtrack " + level); in BeginBacktrack()
[all …]
DDebugParser.cs37 using Console = System.Console; typedef
97 Console.Error.WriteLine( e ); in ReportError()
98 ExceptionExtensions.PrintStackTrace( e, Console.Error ); in ReportError()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DDFA.cs35 using Console = System.Console; typedef
85 Console.Error.WriteLine("Enter DFA.predict for decision " + decisionNumber); in Predict()
92Console.Error.WriteLine("DFA " + decisionNumber + " state " + s + " LA(1)=" + (char)input.LA(1) + … in Predict()
97 Console.Error.WriteLine("DFA " + decisionNumber + in Predict()
102 Console.Error.WriteLine("DFA " + decisionNumber + in Predict()
114Console.Error.WriteLine("accept; predict " + accept[s] + " from state " + s); in Predict()
128 Console.Error.WriteLine("EOT transition"); in Predict()
147 Console.Error.WriteLine("EOT transition"); in Predict()
154Console.Error.WriteLine("accept via EOF; predict " + accept[eof[s]] + " from " + eof[s]); in Predict()
159 Console.Error.WriteLine("min[" + s + "]=" + min[s]); in Predict()
[all …]
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DInteropClient.cs204 Console.WriteLine("running empty_unary"); in RunEmptyUnary()
207 Console.WriteLine("Passed!"); in RunEmptyUnary()
212 Console.WriteLine("running large_unary"); in RunLargeUnary()
221 Console.WriteLine("Passed!"); in RunLargeUnary()
226 Console.WriteLine("running client_streaming"); in RunClientStreamingAsync()
237 Console.WriteLine("Passed!"); in RunClientStreamingAsync()
242 Console.WriteLine("running server_streaming"); in RunServerStreamingAsync()
256 Console.WriteLine("Passed!"); in RunServerStreamingAsync()
261 Console.WriteLine("running ping_pong"); in RunPingPongAsync()
305 Console.WriteLine("Passed!"); in RunPingPongAsync()
[all …]
DRunnerClientServerTest.cs82 System.Console.WriteLine("Warming up"); in ClientServerRunner()
86 System.Console.WriteLine("Benchmarking"); in ClientServerRunner()
91 System.Console.WriteLine(stats); in ClientServerRunner()
92 …System.Console.WriteLine("avg micros/call " + (long) (stats.Latencies.Sum / stats.Latencies.Count … in ClientServerRunner()
/external/protobuf/csharp/src/Google.Protobuf.JsonDump/
DProgram.cs48Console.Error.WriteLine("Usage: Google.Protobuf.JsonDump <descriptor type name> <input data>"); in Main()
49Console.Error.WriteLine("The descriptor type name is the fully-qualified message name,"); in Main()
50Console.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()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
DTestActionFeatures.g313 @parser::header{using Console = System.Console;}
35 : EOF {Console.WriteLine($dynamicScopeAttr::i);}
42 : EOF {Console.WriteLine($dynamicNegativeIndexedScopeAttr[-1]::i);}
49 : EOF {Console.WriteLine($dynamicNegativeIndexedScopeAttr[0]::i);}
56 : EOF {Console.WriteLine($isolatedDynamicScope.Count);}
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DDFA.cs37 using Console = System.Console; typedef
203 Console.Error.WriteLine(format, args); in DfaDebugMessage()
209 Console.Error.WriteLine("min[{0}]={1}", s, min[s]); in DfaDebugInvalidSymbol()
210 Console.Error.WriteLine("max[{0}]={1}", s, max[s]); in DfaDebugInvalidSymbol()
211 Console.Error.WriteLine("eot[{0}]={1}", s, eot[s]); in DfaDebugInvalidSymbol()
212 Console.Error.WriteLine("eof[{0}]={1}", s, eof[s]); in DfaDebugInvalidSymbol()
215 Console.Error.Write(transition[s][p] + " "); in DfaDebugInvalidSymbol()
217 Console.Error.WriteLine(); in DfaDebugInvalidSymbol()
/external/grpc-grpc/src/csharp/Grpc.Examples/
DMathExamples.cs30 Console.WriteLine("Div Result: " + result); in DivExample()
36 Console.WriteLine("DivAsync Result: " + result); in DivAsyncExample()
44 Console.WriteLine("Fib Result: " + string.Join("|", result)); in FibExample()
60 Console.WriteLine("Sum Result: " + await call.ResponseAsync); in SumExample()
75Console.WriteLine("DivMany Result: " + string.Join("|", await call.ResponseStream.ToListAsync())); in DivManyExample()
96 Console.WriteLine("Avg Result: " + result); in DependendRequestsExample()
110 Console.WriteLine(string.Format("RPC ended with status {0}", ex.Status)); in HandleErrorExample()
/external/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaBench.cs214 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.Write(" "); in LzmaBenchmark()
[all …]
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/
DProgram.cs34 input = new ANTLRInputStream(Console.OpenStandardInput()); in _Main()
42 Console.WriteLine("Original tree: " + t.ToStringTree()); in _Main()
50 Console.WriteLine("Simplified tree: " + t.ToStringTree()); in _Main()
51 Console.ReadKey(); in _Main()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DBufferedTreeNodeStream.cs36 using Console = System.Console; typedef
353 Console.Out.WriteLine( "start last node: " + i + " size==" + nodes.Count ); in getLastTreeNode()
361 Console.Out.WriteLine( "stop at node: " + i + " " + nodes[i] ); in getLastTreeNode()
498 Console.Out.WriteLine("toString"); in ToString()
507 Console.Out.Write("toString: " + ((CommonTree)start).Token + ", "); in ToString()
509 Console.Out.WriteLine(start); in ToString()
511 Console.Out.WriteLine(((CommonTree)stop).Token); in ToString()
513 Console.Out.WriteLine(stop); in ToString()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DBufferedTreeNodeStream.cs37 using Console = System.Console; typedef
417 Console.Out.WriteLine( "start last node: " + i + " size==" + nodes.Count ); in getLastTreeNode()
425 Console.Out.WriteLine( "stop at node: " + i + " " + nodes[i] ); in getLastTreeNode()
593 Console.Out.WriteLine( "toString" ); in ToString()
604 Console.Out.Write( "toString: " + ( (CommonTree)start ).Token + ", " ); in ToString()
606 Console.Out.WriteLine( start ); in ToString()
608 Console.Out.WriteLine( ( (CommonTree)stop ).Token ); in ToString()
610 Console.Out.WriteLine( stop ); in ToString()
/external/lzma/CPP/7zip/Bundles/Alone7z/
Dresource.rc3 MY_VERSION_INFO_APP("7-Zip Reduced Standalone Console", "7zr")
6 1 24 MOVEABLE PURE "../../UI/Console/Console.manifest"

12345678910