Lines Matching refs:input

69 public override bool AlreadyParsedRule( IIntStream input, int ruleIndex )
71 int stopIndex = GetRuleMemoization(ruleIndex, input.Index);
72 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
73 return base.AlreadyParsedRule(input, ruleIndex);
75 public override void Memoize( IIntStream input, int ruleIndex, int ruleStartIndex )
77 ((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
78 base.Memoize(input, ruleIndex, ruleStartIndex);
91 <actions.(actionScope).ctorModifier; null="public"> <name>( <inputStreamType> input )
92 : this( input, DebugEventSocketProxy.DefaultDebuggerPort, new RecognizerSharedState() )
95 <actions.(actionScope).ctorModifier; null="public"> <name>( <inputStreamType> input, int port, RecognizerSharedState state )
96 : base( input, state )
100 <grammar.directDelegates:{g|<g:delegateName()> = new <g.recognizerName>( input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n">
107 <actions.(actionScope).ctorModifier; null="public"> <name>( <inputStreamType> input )
108 : this( input, new Profiler(null), new RecognizerSharedState() )
111 <actions.(actionScope).ctorModifier; null="public"> <name>( <inputStreamType> input, IDebugEventListener dbg, RecognizerSharedState state )
112 : base( input, dbg, state )
118 {g|<g:delegateName()> = new <g.recognizerName>( input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n">
126 <actions.(actionScope).ctorModifier; null="public"> <name>( <inputStreamType> input, IDebugEventListener dbg, RecognizerSharedState state<grammar.delegators:{g|, <g.recognizerName> <g:delegateName()>}> )
127 : base( input, dbg, state )
131 {g|<g:delegateName()> = new <g.recognizerName>( input, this, this.state<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n">
136 <actions.(actionScope).ctorModifier; null="public"> <name>( <inputStreamType> input, IDebugEventListener dbg )
137 <@superClassRef>: base( input, dbg, new RecognizerSharedState() )<@end>
144 <grammar.directDelegates:{g|<g:delegateName()> = new <g.recognizerName>(input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}>);}; separator="\n">
151 DebugEventSocketProxy proxy = new DebugEventSocketProxy( this, port, input.TreeAdaptor );<\n>