Searched defs:TraceDestination (Results 1 - 2 of 2) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBaseRecognizer.cs89 public TextWriter TraceDestination { property in class:Antlr.Runtime.BaseRecognizer
366 if (TraceDestination != null)
367 TraceDestination.WriteLine(msg);
900 if (TraceDestination != null)
901 TraceDestination.WriteLine("!!!!!!!!! memo array is null for " + GrammarFileName);
904 if (TraceDestination != null)
905 TraceDestination.WriteLine("!!!!!!!!! memo size is " + state.ruleMemo.Length + ", but rule index is " + ruleIndex);
928 if (TraceDestination == null)
931 TraceDestination.Write("enter " + ruleName + " " + inputSymbol);
933 TraceDestination
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBaseRecognizer.cs94 public TextWriter TraceDestination property in class:Antlr.Runtime.BaseRecognizer
432 if (TraceDestination != null)
433 TraceDestination.WriteLine( msg );
1017 if (TraceDestination != null)
1018 TraceDestination.WriteLine( "!!!!!!!!! memo array is null for " + GrammarFileName );
1022 if (TraceDestination != null)
1023 TraceDestination.WriteLine("!!!!!!!!! memo size is " + state.ruleMemo.Length + ", but rule index is " + ruleIndex);
1050 if (TraceDestination == null)
1053 TraceDestination.Write("enter " + ruleName + " " + inputSymbol);
1056 TraceDestination
[all...]

Completed in 80 milliseconds