/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
ICharStream.cs | 36 public interface ICharStream : IIntStream {
|
IIntStream.cs | 44 public interface IIntStream 62 /// <see cref="IIntStream.Rewind(int)"/> to return to the current position. 64 /// <see cref="IIntStream.Index"/>, or some other marker.</returns> 76 /// <see cref="IIntStream.Index"/> would return marker. 79 /// The marker will usually be <see cref="IIntStream.Index"/> but 82 /// <see cref="IIntStream.Release"/> and <see cref="IIntStream.Seek"/>. 106 /// <see cref="IIntStream.Rewind(int)"/> except it releases resources without 130 /// <see cref="IIntStream.Mark"/>/<see cref="IIntStream.Rewind(int)"/> [all...] |
ITokenStream.cs | 35 public interface ITokenStream : IIntStream {
|
MissingTokenException.cs | 59 public MissingTokenException(int expecting, IIntStream input, object inserted) 63 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames) 68 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames) 73 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException)
|
UnwantedTokenException.cs | 53 public UnwantedTokenException(int expecting, IIntStream input) 57 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) 61 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) 65 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
|
EarlyExitException.cs | 55 public EarlyExitException(int decisionNumber, IIntStream input) 60 public EarlyExitException(string message, int decisionNumber, IIntStream input) 65 public EarlyExitException(string message, int decisionNumber, IIntStream input, Exception innerException)
|
MismatchedNotSetException.cs | 51 public MismatchedNotSetException(BitSet expecting, IIntStream input) 55 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) 59 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
|
MismatchedSetException.cs | 54 public MismatchedSetException(BitSet expecting, IIntStream input) 59 public MismatchedSetException(string message, BitSet expecting, IIntStream input) 64 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
|
FailedPredicateException.cs | 62 public FailedPredicateException(IIntStream input, string ruleName, string predicateText) 68 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText) 74 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText, Exception innerException)
|
MismatchedRangeException.cs | 55 public MismatchedRangeException(int a, int b, IIntStream input) 61 public MismatchedRangeException(string message, int a, int b, IIntStream input) 67 public MismatchedRangeException(string message, int a, int b, IIntStream input, Exception innerException)
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
ICharStream.cs | 37 public interface ICharStream : IIntStream
|
IIntStream.cs | 41 public interface IIntStream
|
ITokenStream.cs | 36 public interface ITokenStream : IIntStream
|
MissingTokenException.cs | 64 public MissingTokenException(int expecting, IIntStream input, object inserted) 69 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames) 75 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames) 81 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException)
|
UnwantedTokenException.cs | 58 public UnwantedTokenException(int expecting, IIntStream input) 63 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) 68 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) 73 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
|
EarlyExitException.cs | 60 public EarlyExitException(int decisionNumber, IIntStream input) 66 public EarlyExitException(string message, int decisionNumber, IIntStream input) 72 public EarlyExitException(string message, int decisionNumber, IIntStream input, Exception innerException)
|
MismatchedNotSetException.cs | 56 public MismatchedNotSetException(BitSet expecting, IIntStream input) 61 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) 66 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
|
MismatchedSetException.cs | 59 public MismatchedSetException( BitSet expecting, IIntStream input ) 65 public MismatchedSetException(string message, BitSet expecting, IIntStream input) 71 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
|
FailedPredicateException.cs | 67 public FailedPredicateException(IIntStream input, string ruleName, string predicateText) 74 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText) 81 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText, Exception innerException)
|
MismatchedRangeException.cs | 60 public MismatchedRangeException(int a, int b, IIntStream input) 67 public MismatchedRangeException(string message, int a, int b, IIntStream input) 74 public MismatchedRangeException(string message, int a, int b, IIntStream input, Exception innerException)
|
MismatchedTokenException.cs | 63 public MismatchedTokenException(int expecting, IIntStream input) 68 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames) 77 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) 86 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
Tracer.cs | 47 public IIntStream input; 50 public Tracer( IIntStream input )
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
ITreeNodeStream.cs | 35 public interface ITreeNodeStream : IIntStream {
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
ITreeNodeStream.cs | 36 public interface ITreeNodeStream : IIntStream
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
Tracer.cs | 50 public IIntStream input; 53 public Tracer(IIntStream input)
|