Home
last modified time | relevance | path

Searched refs:BaseRecognizer (Results 1 – 25 of 64) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/CSharp2/
DAPI CHANGES.TXT13 Antlr.Runtime.BaseRecognizer.Failed() has been turned into a property
14 Antlr.Runtime.BaseRecognizer.NEXT_TOKEN_RULE_NAME renamed to Antlr.Runtime.BaseRecognizer.NextToken…
15 Antlr.Runtime.BaseRecognizer.MEMO_RULE_FAILED renamed to Antlr.Runtime.BaseRecognizer.MemoRuleFailed
16 Antlr.Runtime.BaseRecognizer.MEMO_RULE_UNKNOWN renamed to Antlr.Runtime.BaseRecognizer.MemoRuleUnkn…
17 Antlr.Runtime.BaseRecognizer.INITIAL_FOLLOW_STACK_SIZE renamed to Antlr.Runtime.BaseRecognizer.Init…
18 Antlr.Runtime.BaseRecognizer.DEFAULT_TOKEN_CHANNEL renamed to Antlr.Runtime.BaseRecognizer.DefaultT…
19 Antlr.Runtime.BaseRecognizer.HIDDEN renamed to Antlr.Runtime.BaseRecognizer.Hidden
20 Antlr.Runtime.BaseRecognizer.Input has been removed.
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Drecognizers.py126 class BaseRecognizer(object): class
1046 class Lexer(BaseRecognizer, TokenSource):
1057 BaseRecognizer.__init__(self, state)
1065 BaseRecognizer.reset(self) # reset all recognizer state variables
1321 msg = BaseRecognizer.getErrorMessage(self, e, tokenNames)
1349 BaseRecognizer.traceIn(self, ruleName, ruleIndex, inputSymbol)
1358 BaseRecognizer.traceOut(self, ruleName, ruleIndex, inputSymbol)
1362 class Parser(BaseRecognizer):
1368 BaseRecognizer.__init__(self, state)
1374 BaseRecognizer.reset(self) # reset all recognizer state variables
[all …]
Dtree.py44 from antlr3.recognizers import BaseRecognizer, RuleReturnScope
2180 class TreeParser(BaseRecognizer):
2189 BaseRecognizer.__init__(self, state)
2196 BaseRecognizer.reset(self) # reset all recognizer state variables
2382 return BaseRecognizer.getErrorMessage(self, e, tokenNames)
2386 BaseRecognizer.traceIn(self, ruleName, ruleIndex, self.input.LT(1))
2390 BaseRecognizer.traceOut(self, ruleName, ruleIndex, self.input.LT(1))
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DBaseRecognizer.js13 org.antlr.runtime.BaseRecognizer = function(state) { class in org.antlr.runtime
24 org.antlr.lang.augmentObject(org.antlr.runtime.BaseRecognizer, {
68 org.antlr.runtime.BaseRecognizer.prototype = {
849 return org.antlr.runtime.BaseRecognizer.MEMO_RULE_UNKNOWN;
868 if ( stopIndex==org.antlr.runtime.BaseRecognizer.MEMO_RULE_UNKNOWN ) {
871 if ( stopIndex==org.antlr.runtime.BaseRecognizer.MEMO_RULE_FAILED ) {
892 org.antlr.runtime.BaseRecognizer.MEMO_RULE_FAILED : input.index()-1;
DParser.js9 org.antlr.lang.extend(org.antlr.runtime.Parser, org.antlr.runtime.BaseRecognizer, {
42 t.channel = org.antlr.runtime.BaseRecognizer.DEFAULT_TOKEN_CHANNEL;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DDebugEventSocketProxy.java32 import org.antlr.runtime.BaseRecognizer;
55 protected BaseRecognizer recognizer;
63 public DebugEventSocketProxy(BaseRecognizer recognizer, TreeAdaptor adaptor) { in DebugEventSocketProxy()
67 public DebugEventSocketProxy(BaseRecognizer recognizer, int port, TreeAdaptor adaptor) { in DebugEventSocketProxy()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DDebugEventSocketProxy.cs63 protected BaseRecognizer recognizer;
73 public DebugEventSocketProxy(BaseRecognizer recognizer, ITreeAdaptor adaptor) : in DebugEventSocketProxy()
77 public DebugEventSocketProxy(BaseRecognizer recognizer, int port, ITreeAdaptor adaptor) { in DebugEventSocketProxy()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DDebugEventSocketProxy.cs63 protected BaseRecognizer recognizer;
73 public DebugEventSocketProxy( BaseRecognizer recognizer, ITreeAdaptor adaptor ) : in DebugEventSocketProxy()
78 public DebugEventSocketProxy( BaseRecognizer recognizer, int port, ITreeAdaptor adaptor ) in DebugEventSocketProxy()
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt023scopes.g17 WS : (' '|'\n'|'\r')+ {$channel=org.antlr.runtime.BaseRecognizer.HIDDEN;}
Dt024finally.g18 WS : (' '|'\n'|'\r')+ {$channel=org.antlr.runtime.BaseRecognizer.HIDDEN}
/external/antlr/antlr-3.4/runtime/Python/unittests/
Dtestdfa.py17 class TRecognizer(antlr3.BaseRecognizer):
Dtestrecognizers.py13 rules = antlr3.BaseRecognizer._getRuleInvocationStack(__name__)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DRecognizerSharedState.cs153 following = new BitSet[BaseRecognizer.InitialFollowStackSize]; in RecognizerSharedState()
DParser.cs41 public class Parser : BaseRecognizer {
DBaseRecognizer.cs56 public abstract class BaseRecognizer { class
77 public BaseRecognizer() in BaseRecognizer() method in Antlr.Runtime.BaseRecognizer
81 public BaseRecognizer(RecognizerSharedState state) { in BaseRecognizer() method in Antlr.Runtime.BaseRecognizer
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DRecognizerSharedState.cs156 following = new BitSet[BaseRecognizer.InitialFollowStackSize]; in RecognizerSharedState()
DParser.cs42 public class Parser : BaseRecognizer
DBaseRecognizer.cs57 public abstract class BaseRecognizer class
79 public BaseRecognizer() in BaseRecognizer() method in Antlr.Runtime.BaseRecognizer
84 public BaseRecognizer( RecognizerSharedState state ) in BaseRecognizer() method in Antlr.Runtime.BaseRecognizer
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DRecognizerSharedState.java43 public BitSet[] following = new BitSet[BaseRecognizer.INITIAL_FOLLOW_STACK_SIZE];
DBaseRecognizer.java40 public abstract class BaseRecognizer { class
59 public BaseRecognizer() { in BaseRecognizer() method in BaseRecognizer
63 public BaseRecognizer(RecognizerSharedState state) { in BaseRecognizer() method in BaseRecognizer
DParser.java35 public class Parser extends BaseRecognizer {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DTreeParser.cs45 public class TreeParser : BaseRecognizer
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeParser.cs44 public class TreeParser : BaseRecognizer {
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DTreeParser.as33 * the BaseRecognizer superclass.
35 public class TreeParser extends BaseRecognizer {
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
DTreeParser.js18 org.antlr.lang.extend(TP, org.antlr.runtime.BaseRecognizer, {

123