HomeSort by relevance Sort by last modified time
    Searched refs:IIntStream (Results 26 - 50 of 53) sorted by null

12 3

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
NoViableAltException.cs 62 public NoViableAltException(string grammarDecisionDescription, int decisionNumber, int stateNumber, IIntStream input)
69 public NoViableAltException(string message, string grammarDecisionDescription, int decisionNumber, int stateNumber, IIntStream input)
76 public NoViableAltException(string message, string grammarDecisionDescription, int decisionNumber, int stateNumber, IIntStream input, Exception innerException)
MismatchedTokenException.cs 61 public MismatchedTokenException(int expecting, IIntStream input)
65 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
72 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
81 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
Parser.cs 63 protected override object GetCurrentInputSymbol(IIntStream input) {
67 protected override object GetMissingSymbol(IIntStream input,
RecognitionException.cs 77 private IIntStream _input;
127 public RecognitionException(IIntStream input)
135 public RecognitionException(string message, IIntStream input)
143 public RecognitionException(string message, IIntStream input, Exception innerException)
203 public IIntStream Input {
278 protected virtual void ExtractInformationFromTreeNodeStream(IIntStream input) {
BaseRecognizer.cs 131 public virtual object Match(IIntStream input, int ttype, BitSet follow) {
149 public virtual void MatchAny(IIntStream input) {
155 public virtual bool MismatchIsUnwantedToken(IIntStream input, int ttype) {
159 public virtual bool MismatchIsMissingToken(IIntStream input, BitSet follow) {
378 public virtual void Recover(IIntStream input, RecognitionException re) {
616 protected virtual object RecoverFromMismatchedToken(IIntStream input, int ttype, BitSet follow) {
648 public virtual object RecoverFromMismatchedSet(IIntStream input,
672 protected virtual object GetCurrentInputSymbol(IIntStream input) {
697 protected virtual object GetMissingSymbol(IIntStream input,
    [all...]
DFA.cs 38 public delegate int SpecialStateTransitionHandler(DFA dfa, int s, IIntStream input);
83 public virtual int Predict(IIntStream input) {
176 protected virtual void NoViableAlt(int s, IIntStream input) {
203 static int SpecialStateTransitionDefault(DFA dfa, int s, IIntStream input) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
NoViableAltException.cs 68 public NoViableAltException(string grammarDecisionDescription, int decisionNumber, int stateNumber, IIntStream input)
76 public NoViableAltException(string message, string grammarDecisionDescription, int decisionNumber, int stateNumber, IIntStream input)
84 public NoViableAltException(string message, string grammarDecisionDescription, int decisionNumber, int stateNumber, IIntStream input, Exception innerException)
Parser.cs 68 protected override object GetCurrentInputSymbol( IIntStream input )
73 protected override object GetMissingSymbol( IIntStream input,
BaseRecognizer.cs 141 public virtual object Match( IIntStream input, int ttype, BitSet follow )
162 public virtual void MatchAny( IIntStream input )
169 public virtual bool MismatchIsUnwantedToken( IIntStream input, int ttype )
174 public virtual bool MismatchIsMissingToken( IIntStream input, BitSet follow )
444 public virtual void Recover( IIntStream input, RecognitionException re )
695 protected virtual object RecoverFromMismatchedToken( IIntStream input, int ttype, BitSet follow )
730 public virtual object RecoverFromMismatchedSet( IIntStream input,
756 protected virtual object GetCurrentInputSymbol( IIntStream input )
    [all...]
RecognitionException.cs 79 private IIntStream _input;
130 public RecognitionException( IIntStream input )
140 public RecognitionException(string message, IIntStream input)
150 public RecognitionException(string message, IIntStream input, Exception innerException)
232 public IIntStream Input
DFA.cs 39 public delegate int SpecialStateTransitionHandler( DFA dfa, int s, IIntStream input );
96 public virtual int Predict( IIntStream input )
207 protected virtual void NoViableAlt( int s, IIntStream input )
238 static int SpecialStateTransitionDefault( DFA dfa, int s, IIntStream input )
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 90 protected override object GetCurrentInputSymbol(IIntStream input) {
94 protected override object GetMissingSymbol(IIntStream input,
110 public override void MatchAny(IIntStream ignore) {
145 protected override object RecoverFromMismatchedToken(IIntStream input, int ttype, BitSet follow) {
CommonErrorNode.cs 38 public IIntStream input;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeParser.cs 98 protected override object GetCurrentInputSymbol( IIntStream input )
103 protected override object GetMissingSymbol( IIntStream input,
120 public override void MatchAny( IIntStream ignore )
159 protected override object RecoverFromMismatchedToken( IIntStream input, int ttype, BitSet follow )
CommonErrorNode.cs 40 public IIntStream input;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeParser.cs 99 protected override object GetMissingSymbol(IIntStream input,
Profiler.cs 120 public virtual void ExamineRuleMemoization(IIntStream input,
140 public virtual void Memoize(IIntStream input,
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeParser.cs 107 protected override object GetMissingSymbol( IIntStream input,
Profiler.cs 124 public virtual void ExamineRuleMemoization(IIntStream input,
148 public virtual void Memoize(IIntStream input,
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
Dbg.stg 69 public override bool AlreadyParsedRule( IIntStream input, int ruleIndex )
75 public override void Memoize( IIntStream input, int ruleIndex, int ruleStartIndex )
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
Dbg.stg 68 public override bool AlreadyParsedRule( IIntStream input, int ruleIndex )
74 public override void Memoize( IIntStream input, int ruleIndex, int ruleStartIndex )
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 61 IIntStream = interface(IANTLRInterface)
87 /// <see cref="IIntStream.Rewind(Integer)"/> to return to the current position.
89 /// <see cref="IIntStream.Index"/>, or some other marker.</returns>
101 /// <see cref="IIntStream.Index"/> would return marker.
104 /// The marker will usually be <see cref="IIntStream.Index"/> but
107 /// <see cref="IIntStream.Release"/> and <see cref="IIntStream.Seek"/>.
131 /// <see cref="IIntStream.Rewind(Integer)"/> except it releases resources without
155 /// <see cref="IIntStream.Mark"/>/<see cref="IIntStream.Rewind(Integer)"/
    [all...]
Antlr.Runtime.Tree.pas 332 ITreeNodeStream = interface(IIntStream)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
ProfileTreeGrammar.cs 77 public virtual bool AlreadyParsedRule( IIntStream input, int ruleIndex )
83 public virtual void Memoize( IIntStream input, int ruleIndex, int ruleStartIndex )
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
Delphi.stg 147 function AlreadyParsedRule(const Input: IIntStream;
149 procedure Memoize(const Input: IIntStream; const RuleIndex,
285 function T<grammar.recognizerName>.AlreadyParsedRule(const Input: IIntStream;
294 procedure T<grammar.recognizerName>.Memoize(const Input: IIntStream; const RuleIndex,
    [all...]

Completed in 2728 milliseconds

12 3