HomeSort by relevance Sort by last modified time
    Searched defs:grammars (Results 1 - 5 of 5) sorted by null

  /external/antlr/tool/src/main/java/org/antlr/tool/
CompositeGrammarTree.java 33 /** A tree of grammars */
58 * delegate grammars.
115 /** Return a postorder list of grammars; root is last in list */
117 List<Grammar> grammars = new ArrayList<Grammar>(); local
118 _getPostOrderedGrammarList(grammars);
119 return grammars;
123 protected void _getPostOrderedGrammarList(List<Grammar> grammars) {
126 child._getPostOrderedGrammarList(grammars);
128 grammars.add(this.grammar);
131 /** Return a preorder list of grammars; root is first in list *
133 List<Grammar> grammars = new ArrayList<Grammar>(); local
    [all...]
CompositeGrammar.java 46 /** A tree of component (delegate) grammars.
50 * rules from all delegate grammars, so they must be stored here in one
56 * in each grammar, even single noncomposite grammars use one of these objects
67 /** Used to assign state numbers; all grammars in composite share common
72 /** The NFA states in the NFA built from rules across grammars in composite.
108 * This is combined set of lexer rules from all lexer grammars
113 /** Rules are uniquely labeled from 1..n among all grammars */
201 /** Get list of all delegates from all grammars in the delegate subtree of g.
202 * The grammars are in delegation tree preorder. Don't include g itself
210 List<Grammar> grammars = t.getPostOrderedGrammarList() local
221 List<Grammar> grammars = new ArrayList<Grammar>(); local
246 List<Grammar> grammars = new ArrayList<Grammar>(); local
291 List<Grammar> grammars = subtreeRoot.getPreOrderedGrammarList(); local
341 List<Grammar> grammars = delegateGrammarTreeRoot.getPostOrderedGrammarList(); local
360 List<Grammar> grammars = delegateGrammarTreeRoot.getPostOrderedGrammarList(); local
376 List<Grammar> grammars = delegateGrammarTreeRoot.getPostOrderedGrammarList(); local
392 List<Grammar> grammars = delegateGrammarTreeRoot.getPostOrderedGrammarList(); local
    [all...]
  /external/antlr/runtime/Ruby/lib/antlr3/test/
functional.rb 74 # Compile and load inline grammars on demand when their constant name
77 # for all grammars to compile, and then discovering there's a big dumb
78 # error ruining most of the grammars.
81 if g = grammars[ name.to_s ]
83 grammars.delete( name.to_s )
85 elsif superclass.respond_to?( :grammars )
89 # assumptions made in the test code. Grammars are stored in @grammars belonging
90 # to the test class, so in 1.9, this method is called with @grammars = {}
101 def grammars method in class:ANTLR3.Test.GrammarManager
    [all...]
  /external/guice/extensions/persist/lib/
antlr-2.7.5h3.jar 
  /external/cldr/tools/java/libs/
xercesImpl.jar 

Completed in 238 milliseconds