Home
last modified time | relevance | path

Searched refs:RecognizerSharedState (Results 1 – 25 of 70) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DRecognizerSharedState.cs49 public class RecognizerSharedState { class
151 public RecognizerSharedState() { in RecognizerSharedState() method in Antlr.Runtime.RecognizerSharedState
159 public RecognizerSharedState(RecognizerSharedState state) { in RecognizerSharedState() method in Antlr.Runtime.RecognizerSharedState
DBaseRecognizer.cs75 protected internal RecognizerSharedState state;
78 : this(new RecognizerSharedState()) { in BaseRecognizer()
81 public BaseRecognizer(RecognizerSharedState state) { in BaseRecognizer()
83 state = new RecognizerSharedState(); in BaseRecognizer()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DRecognizerSharedState.cs50 public class RecognizerSharedState class
153 public RecognizerSharedState() in RecognizerSharedState() method in Antlr.Runtime.RecognizerSharedState
162 public RecognizerSharedState( RecognizerSharedState state ) in RecognizerSharedState() method in Antlr.Runtime.RecognizerSharedState
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DRecognizerSharedState.java38 public class RecognizerSharedState { class
120 public RecognizerSharedState() {;} in RecognizerSharedState() method in RecognizerSharedState
122 public RecognizerSharedState(RecognizerSharedState state) { in RecognizerSharedState() method in RecognizerSharedState
DBaseRecognizer.java57 protected RecognizerSharedState state;
60 state = new RecognizerSharedState(); in BaseRecognizer()
63 public BaseRecognizer(RecognizerSharedState state) { in BaseRecognizer()
65 state = new RecognizerSharedState(); in BaseRecognizer()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeFilter.java30 import org.antlr.runtime.RecognizerSharedState;
87 this(input, new RecognizerSharedState()); in TreeFilter()
89 public TreeFilter(TreeNodeStream input, RecognizerSharedState state) { in TreeFilter()
99 state = new RecognizerSharedState(); in applyOnce()
DTreeRewriter.java30 import org.antlr.runtime.RecognizerSharedState;
45 this(input, new RecognizerSharedState()); in TreeRewriter()
47 public TreeRewriter(TreeNodeStream input, RecognizerSharedState state) { in TreeRewriter()
57 state = new RecognizerSharedState(); in applyOnce()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DTreeFilter.cs43 : this( input, new RecognizerSharedState() ) in TreeFilter()
46 public TreeFilter( ITreeNodeStream input, RecognizerSharedState state ) in TreeFilter()
61 state = new RecognizerSharedState(); in ApplyOnce()
DTreeRewriter.cs50 : this( input, new RecognizerSharedState() ) in TreeRewriter()
53 public TreeRewriter( ITreeNodeStream input, RecognizerSharedState state ) in TreeRewriter()
70 state = new RecognizerSharedState(); in ApplyOnce()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeFilter.cs88 : this( input, new RecognizerSharedState() ) in TreeFilter()
91 public TreeFilter( ITreeNodeStream input, RecognizerSharedState state ) in TreeFilter()
106 state = new RecognizerSharedState(); in ApplyOnce()
DTreeRewriter.cs44 : this(input, new RecognizerSharedState()) { in TreeRewriter()
46 public TreeRewriter(ITreeNodeStream input, RecognizerSharedState state) in TreeRewriter()
60 state = new RecognizerSharedState(); in ApplyOnce()
/external/smali/smali/src/main/java/org/jf/smali/
DLexerErrorInterface.java33 import org.antlr.runtime.RecognizerSharedState;
44 public ANTLRLexerWithErrorInterface(CharStream input, RecognizerSharedState state) { in ANTLRLexerWithErrorInterface()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DDebugParser.java46 public DebugParser(TokenStream input, DebugEventListener dbg, RecognizerSharedState state) { in DebugParser()
51 public DebugParser(TokenStream input, RecognizerSharedState state) { in DebugParser()
DDebugTreeParser.java48 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg, RecognizerSharedState state) { in DebugTreeParser()
53 public DebugTreeParser(TreeNodeStream input, RecognizerSharedState state) { in DebugTreeParser()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DDebugParser.cs55 public DebugParser(ITokenStream input, IDebugEventListener dbg, RecognizerSharedState state) in DebugParser()
60 public DebugParser(ITokenStream input, RecognizerSharedState state) in DebugParser()
DDebugTreeParser.cs59 …public DebugTreeParser(ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state) in DebugTreeParser()
64 public DebugTreeParser(ITreeNodeStream input, RecognizerSharedState state) in DebugTreeParser()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DDebugParser.cs57 … public DebugParser( ITokenStream input, IDebugEventListener dbg, RecognizerSharedState state ) in DebugParser()
63 public DebugParser( ITokenStream input, RecognizerSharedState state ) in DebugParser()
DDebugTreeParser.cs59 …blic DebugTreeParser( ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state ) in DebugTreeParser()
65 public DebugTreeParser( ITreeNodeStream input, RecognizerSharedState state ) in DebugTreeParser()
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
DDbg.stg91 : this( input, DebugEventSocketProxy.DefaultDebuggerPort, new RecognizerSharedState() )
94 …orModifier; null="public"> <name>( <inputStreamType> input, int port, RecognizerSharedState state )
107 : this( input, new Profiler(null), new RecognizerSharedState() )
110 …l="public"> <name>( <inputStreamType> input, IDebugEventListener dbg, RecognizerSharedState state )
125 …ublic"> <name>( <inputStreamType> input, IDebugEventListener dbg, RecognizerSharedState state<gram…
136 <@superClassRef>: base( input, dbg, new RecognizerSharedState() )<@end>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
DDbg.stg92 : this( input, DebugEventSocketProxy.DefaultDebuggerPort, new RecognizerSharedState() )
95 …orModifier; null="public"> <name>( <inputStreamType> input, int port, RecognizerSharedState state )
108 : this( input, new Profiler(null), new RecognizerSharedState() )
111 …l="public"> <name>( <inputStreamType> input, IDebugEventListener dbg, RecognizerSharedState state )
126 …ublic"> <name>( <inputStreamType> input, IDebugEventListener dbg, RecognizerSharedState state<gram…
137 <@superClassRef>: base( input, dbg, new RecognizerSharedState() )<@end>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
DDbg.stg88 this(input, DebugEventSocketProxy.DEFAULT_DEBUGGER_PORT, new RecognizerSharedState());
90 public <name>(<inputStreamType> input, int port, RecognizerSharedState state) {
102 this(input, new Profiler(null), new RecognizerSharedState());
104 public <name>(<inputStreamType> input, DebugEventListener dbg, RecognizerSharedState state) {
118 public <name>(<inputStreamType> input, DebugEventListener dbg, RecognizerSharedState state<grammar.…
128 <@superClassRef>super(input, dbg, new RecognizerSharedState());<@end>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
DDbg.stg126 this(input, DebugEventSocketProxy.DEFAULT_DEBUGGER_PORT, new RecognizerSharedState());
128 public <name>(<inputStreamType> input, int port, RecognizerSharedState state) {
141 this(input, new Profiler(null), new RecognizerSharedState());
143 public <name>(<inputStreamType> input, DebugEventListener self.dbg, RecognizerSharedState state) {
158 public <name>(<inputStreamType> input, DebugEventListener self.dbg, RecognizerSharedState state<gra…
170 <@superClassRef>super(input, dbg, new RecognizerSharedState());<@end>
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DRecognizerSharedState.js8 org.antlr.runtime.RecognizerSharedState = function() { class in org.antlr.runtime
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DProfileGrammarLexer.cs40 : this( input, new RecognizerSharedState() ) in ProfileGrammarLexer()
43 public ProfileGrammarLexer( ICharStream input, RecognizerSharedState state ) in ProfileGrammarLexer()
DDebugGrammarLexer.cs40 : this( input, new RecognizerSharedState() ) in DebugGrammarLexer()
43 public DebugGrammarLexer( ICharStream input, RecognizerSharedState state ) in DebugGrammarLexer()

123