HomeSort by relevance Sort by last modified time
    Searched full:treepatternlexer (Results 1 - 15 of 15) sorted by null

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreePatternParser.cs 37 protected TreePatternLexer tokenizer;
42 public TreePatternParser(TreePatternLexer tokenizer, TreeWizard wizard, ITreeAdaptor adaptor) {
50 if (ttype == TreePatternLexer.BEGIN) {
52 } else if (ttype == TreePatternLexer.ID) {
54 if (ttype == TreePatternLexer.EOF) {
63 if (ttype != TreePatternLexer.BEGIN)
71 while (ttype == TreePatternLexer.BEGIN ||
72 ttype == TreePatternLexer.ID ||
73 ttype == TreePatternLexer.PERCENT ||
74 ttype == TreePatternLexer.DOT)
    [all...]
TreePatternLexer.cs 36 public class TreePatternLexer {
63 public TreePatternLexer(string pattern) {
TreeWizard.cs 277 TreePatternLexer tokenizer = new TreePatternLexer(pattern);
361 TreePatternLexer tokenizer = new TreePatternLexer(pattern);
392 TreePatternLexer tokenizer = new TreePatternLexer(pattern);
468 TreePatternLexer tokenizer = new TreePatternLexer(pattern);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreePatternParser.java 34 protected TreePatternLexer tokenizer;
39 public TreePatternParser(TreePatternLexer tokenizer, TreeWizard wizard, TreeAdaptor adaptor) {
47 if ( ttype==TreePatternLexer.BEGIN ) {
50 else if ( ttype==TreePatternLexer.ID ) {
52 if ( ttype==TreePatternLexer.EOF ) {
61 if ( ttype != TreePatternLexer.BEGIN ) {
69 while ( ttype==TreePatternLexer.BEGIN ||
70 ttype==TreePatternLexer.ID ||
71 ttype==TreePatternLexer.PERCENT ||
72 ttype==TreePatternLexer.DOT
    [all...]
TreePatternLexer.java 30 public class TreePatternLexer {
57 public TreePatternLexer(String pattern) {
TreeWizard.java 214 TreePatternLexer tokenizer = new TreePatternLexer(pattern);
275 TreePatternLexer tokenizer = new TreePatternLexer(pattern);
311 TreePatternLexer tokenizer = new TreePatternLexer(pattern);
379 TreePatternLexer tokenizer = new TreePatternLexer(pattern);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreePatternParser.cs 39 protected TreePatternLexer tokenizer;
44 public TreePatternParser( TreePatternLexer tokenizer, TreeWizard wizard, ITreeAdaptor adaptor )
54 if ( ttype == TreePatternLexer.Begin )
58 else if ( ttype == TreePatternLexer.Id )
72 if ( ttype != TreePatternLexer.Begin )
81 while ( ttype == TreePatternLexer.Begin ||
82 ttype == TreePatternLexer.Id ||
83 ttype == TreePatternLexer.Percent ||
84 ttype == TreePatternLexer.Dot )
86 if ( ttype == TreePatternLexer.Begin
    [all...]
TreePatternLexer.cs 37 public class TreePatternLexer
64 public TreePatternLexer( string pattern )
TreeWizard.cs 318 TreePatternLexer tokenizer = new TreePatternLexer( pattern );
416 TreePatternLexer tokenizer = new TreePatternLexer( pattern );
449 TreePatternLexer tokenizer = new TreePatternLexer( pattern );
536 TreePatternLexer tokenizer = new TreePatternLexer( pattern );
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testtreewizard.py 9 TreePatternLexer, EOF, ID, BEGIN, END, PERCENT, COLON, DOT, ARG, \
34 """Test case for the TreePatternLexer class."""
37 """TreePatternLexer(): '('"""
39 lexer = TreePatternLexer('(')
47 """TreePatternLexer(): ')'"""
49 lexer = TreePatternLexer(')')
57 """TreePatternLexer(): '%'"""
59 lexer = TreePatternLexer('%')
67 """TreePatternLexer(): '.'"""
69 lexer = TreePatternLexer('.'
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
treewizard.py 66 class TreePatternLexer(object):
364 tokenizer = TreePatternLexer(pattern)
436 tokenizer = TreePatternLexer(pattern)
502 tokenizer = TreePatternLexer(pattern)
533 tokenizer = TreePatternLexer(pattern)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Antlr3.Runtime.csproj 124 <Compile Include="Tree\TreePatternLexer.cs" />
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/
Antlr3.Runtime (VS2005).csproj 137 <Compile Include="Antlr.Runtime.Tree\TreePatternLexer.cs" />
Antlr3.Runtime (VS2008).csproj 161 <Compile Include="Antlr.Runtime.Tree\TreePatternLexer.cs" />
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeWizard.m 487 TreePatternLexer tokenizer = new TreePatternLexer(pattern);

Completed in 351 milliseconds