HomeSort by relevance Sort by last modified time
    Searched refs:BaseRecognizer (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/antlr/antlr-3.4/runtime/Python/unittests/
testdfa.py 17 class TRecognizer(antlr3.BaseRecognizer):
testrecognizers.py 8 """Tests for BaseRecognizer class"""
11 """BaseRecognizer._getRuleInvocationStack()"""
13 rules = antlr3.BaseRecognizer._getRuleInvocationStack(__name__)
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
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;
BaseRecognizer.js 13 org.antlr.runtime.BaseRecognizer = function(state) {
24 org.antlr.lang.augmentObject(org.antlr.runtime.BaseRecognizer, {
26 * @memberOf org.antlr.runtime.BaseRecognizer
32 * @memberOf org.antlr.runtime.BaseRecognizer
38 * @memberOf org.antlr.runtime.BaseRecognizer
44 * @memberOf org.antlr.runtime.BaseRecognizer
50 * @memberOf org.antlr.runtime.BaseRecognizer
56 * @memberOf org.antlr.runtime.BaseRecognizer
62 * @memberOf org.antlr.runtime.BaseRecognizer
68 org.antlr.runtime.BaseRecognizer.prototype =
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognizerSharedState.cs 152 //following = new List<BitSet>( BaseRecognizer.InitialFollowStackSize );
153 following = new BitSet[BaseRecognizer.InitialFollowStackSize];
Parser.cs 41 public class Parser : BaseRecognizer {
BaseRecognizer.cs 56 public abstract class BaseRecognizer {
77 public BaseRecognizer()
81 public BaseRecognizer(RecognizerSharedState state) {
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognizerSharedState.cs 155 //following = new List<BitSet>( BaseRecognizer.InitialFollowStackSize );
156 following = new BitSet[BaseRecognizer.InitialFollowStackSize];
Parser.cs 42 public class Parser : BaseRecognizer
BaseRecognizer.cs 57 public abstract class BaseRecognizer
79 public BaseRecognizer()
84 public BaseRecognizer( RecognizerSharedState state )
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Parser.java 35 public class Parser extends BaseRecognizer {
RecognizerSharedState.java 43 public BitSet[] following = new BitSet[BaseRecognizer.INITIAL_FOLLOW_STACK_SIZE];
BaseRecognizer.java 40 public abstract class BaseRecognizer {
59 public BaseRecognizer() {
63 public BaseRecognizer(RecognizerSharedState state) {
DFA.java 53 protected BaseRecognizer recognizer;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Parser.as 34 public class Parser extends BaseRecognizer {
DFA.as 26 protected var recognizer:BaseRecognizer;
32 public function DFA(recognizer:BaseRecognizer, decisionNumber:int, description:String,
Lexer.as 35 public class Lexer extends BaseRecognizer implements TokenSource {
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventSocketProxy.java 32 import org.antlr.runtime.BaseRecognizer;
55 protected BaseRecognizer recognizer;
63 public DebugEventSocketProxy(BaseRecognizer recognizer, TreeAdaptor adaptor) {
67 public DebugEventSocketProxy(BaseRecognizer recognizer, int port, TreeAdaptor adaptor) {
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 126 class BaseRecognizer(object):
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventSocketProxy.cs 63 protected BaseRecognizer recognizer;
73 public DebugEventSocketProxy(BaseRecognizer recognizer, ITreeAdaptor adaptor) :
77 public DebugEventSocketProxy(BaseRecognizer recognizer, int port, ITreeAdaptor adaptor) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventSocketProxy.cs 63 protected BaseRecognizer recognizer;
73 public DebugEventSocketProxy( BaseRecognizer recognizer, ITreeAdaptor adaptor ) :
78 public DebugEventSocketProxy( BaseRecognizer recognizer, int port, ITreeAdaptor adaptor )
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeParser.as 33 * the BaseRecognizer superclass.
35 public class TreeParser extends BaseRecognizer {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 41 * the BaseRecognizer superclass.
44 public class TreeParser : BaseRecognizer {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeParser.cs 42 * the BaseRecognizer superclass.
45 public class TreeParser : BaseRecognizer
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
TreeParser.js 3 * the BaseRecognizer superclass.
18 org.antlr.lang.extend(TP, org.antlr.runtime.BaseRecognizer, {

Completed in 462 milliseconds

1 2 3