/external/antlr/antlr-3.4/runtime/CSharp2/ |
D | API CHANGES.TXT | 13 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/ |
D | recognizers.py | 126 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 …]
|
D | tree.py | 44 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/ |
D | BaseRecognizer.js | 13 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;
|
D | Parser.js | 9 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/ |
D | DebugEventSocketProxy.java | 32 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/CSharp3/Sources/Antlr3.Runtime.Debug/ |
D | DebugEventSocketProxy.cs | 63 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/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
D | DebugEventSocketProxy.cs | 63 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/JavaScript/tests/functional/ |
D | t023scopes.g | 17 WS : (' '|'\n'|'\r')+ {$channel=org.antlr.runtime.BaseRecognizer.HIDDEN;}
|
D | t024finally.g | 18 WS : (' '|'\n'|'\r')+ {$channel=org.antlr.runtime.BaseRecognizer.HIDDEN}
|
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
D | testdfa.py | 17 class TRecognizer(antlr3.BaseRecognizer):
|
D | testrecognizers.py | 13 rules = antlr3.BaseRecognizer._getRuleInvocationStack(__name__)
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | RecognizerSharedState.cs | 156 following = new BitSet[BaseRecognizer.InitialFollowStackSize]; in RecognizerSharedState()
|
D | Parser.cs | 42 public class Parser : BaseRecognizer
|
D | BaseRecognizer.cs | 57 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/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | RecognizerSharedState.cs | 153 following = new BitSet[BaseRecognizer.InitialFollowStackSize]; in RecognizerSharedState()
|
D | Parser.cs | 41 public class Parser : BaseRecognizer {
|
D | BaseRecognizer.cs | 56 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/Java/src/main/java/org/antlr/runtime/ |
D | BaseRecognizer.java | 40 public abstract class BaseRecognizer { class 59 public BaseRecognizer() { in BaseRecognizer() method in BaseRecognizer 63 public BaseRecognizer(RecognizerSharedState state) { in BaseRecognizer() method in BaseRecognizer
|
D | RecognizerSharedState.java | 43 public BitSet[] following = new BitSet[BaseRecognizer.INITIAL_FOLLOW_STACK_SIZE];
|
D | Parser.java | 35 public class Parser extends BaseRecognizer {
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | TreeParser.cs | 45 public class TreeParser : BaseRecognizer
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | TreeParser.cs | 44 public class TreeParser : BaseRecognizer {
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | TreeParser.as | 33 * the BaseRecognizer superclass. 35 public class TreeParser extends BaseRecognizer {
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | TreeParser.js | 18 org.antlr.lang.extend(TP, org.antlr.runtime.BaseRecognizer, {
|