HomeSort by relevance Sort by last modified time
    Searched defs:Grammar (Results 1 - 25 of 32) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
grammar.py 4 """This module defines the data structures used to represent a grammar.
22 class Grammar(object):
25 Once initialized, this class supplies the grammar tables for the
33 file is written by calling dump() (after loading the grammar
58 begin this grammar rule (represented by a dict
68 start -- the number of the grammar's start symbol.
88 """Dump the grammar tables to a pickle file."""
94 """Load the grammar tables from a pickle file."""
102 Copy the grammar.
114 """Dump the grammar tables to standard output, for debugging."""
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
grammar.py 4 """This module defines the data structures used to represent a grammar.
22 class Grammar(object):
25 Once initialized, this class supplies the grammar tables for the
33 file is written by calling dump() (after loading the grammar
58 begin this grammar rule (represented by a dict
68 start -- the number of the grammar's start symbol.
88 """Dump the grammar tables to a pickle file."""
94 """Load the grammar tables from a pickle file."""
102 Copy the grammar.
114 """Dump the grammar tables to standard output, for debugging.""
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
grammar.py 4 """This module defines the data structures used to represent a grammar.
22 class Grammar(object):
25 Once initialized, this class supplies the grammar tables for the
33 file is written by calling dump() (after loading the grammar
58 begin this grammar rule (represented by a dict
68 start -- the number of the grammar's start symbol.
88 """Dump the grammar tables to a pickle file."""
94 """Load the grammar tables from a pickle file."""
102 Copy the grammar.
114 """Dump the grammar tables to standard output, for debugging.""
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py 4 """This module defines the data structures used to represent a grammar.
22 class Grammar(object):
25 Once initialized, this class supplies the grammar tables for the
33 file is written by calling dump() (after loading the grammar
58 begin this grammar rule (represented by a dict
68 start -- the number of the grammar's start symbol.
88 """Dump the grammar tables to a pickle file."""
94 """Load the grammar tables from a pickle file."""
102 Copy the grammar.
114 """Dump the grammar tables to standard output, for debugging.""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py 4 """This module defines the data structures used to represent a grammar.
22 class Grammar(object):
25 Once initialized, this class supplies the grammar tables for the
33 file is written by calling dump() (after loading the grammar
58 begin this grammar rule (represented by a dict
68 start -- the number of the grammar's start symbol.
88 """Dump the grammar tables to a pickle file."""
94 """Load the grammar tables from a pickle file."""
102 Copy the grammar.
114 """Dump the grammar tables to standard output, for debugging.""
    [all...]
  /external/python/cpython2/Lib/lib2to3/pgen2/
grammar.py 4 """This module defines the data structures used to represent a grammar.
23 class Grammar(object):
26 Once initialized, this class supplies the grammar tables for the
34 file is written by calling dump() (after loading the grammar
59 begin this grammar rule (represented by a dict
69 start -- the number of the grammar's start symbol.
89 """Dump the grammar tables to a pickle file.
106 """Load the grammar tables from a pickle file."""
114 Copy the grammar.
126 """Dump the grammar tables to standard output, for debugging.""
    [all...]
  /external/python/cpython3/Lib/lib2to3/pgen2/
grammar.py 4 """This module defines the data structures used to represent a grammar.
23 class Grammar(object):
26 Once initialized, this class supplies the grammar tables for the
34 file is written by calling dump() (after loading the grammar
59 begin this grammar rule (represented by a dict
69 start -- the number of the grammar's start symbol.
89 """Dump the grammar tables to a pickle file.
106 """Load the grammar tables from a pickle file."""
113 Copy the grammar.
125 """Dump the grammar tables to standard output, for debugging.""
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
grammar.rb 42 class Grammar
202 sprintf( "grammar %s (%s)", @name, @path )
261 @source =~ /^\s*(lexer|parser|tree)?\s*grammar\s*(\S+)\s*;/ or
262 raise Grammar::FormatError[ source, path ]
266 end # class Grammar
268 class Grammar::InlineGrammar < Grammar
300 sprintf( 'inline grammar %s (%s:%s)', name, @host_file, @host_line )
312 end # class Grammar::InlineGrammar
314 class Grammar::CompilationFailure < StandardErro
    [all...]
  /external/annotation-tools/annotation-file-utilities/
annotation-file-format.tex 155 \section{Grammar\label{grammar}}
158 the form of a grammar. Section~\ref{grammar-conventions} details the conventions
159 of the grammar. Section~\ref{java-file-grammar} shows how to represent the
161 file. Section~\ref{annotations-grammar} shows how to add annotations to an
164 \subsection{Grammar conventions\label{grammar-conventions}}
171 (one or more) denote plurality of a grammar element
    [all...]
  /external/libmojo/third_party/ply/
yacc.py 34 # This implements an LR parser that is constructed from grammar rules defined
169 # This class is used to hold non-terminal grammar symbols during parsing.
171 # .type = Grammar symbol type
183 # grammar rule. Index lookup and assignment actually assign the
288 pslice = YaccProduction(None) # Production object passed to grammar rules
318 symstack = [ ] # Stack of grammar symbols
418 # Call the grammar rule with our special slice object
459 # Call the grammar rule with our special slice object
603 pslice = YaccProduction(None) # Production object passed to grammar rules
629 symstack = [ ] # Stack of grammar symbol
    [all...]
  /external/ply/ply/ply/
yacc.py 34 # This implements an LR parser that is constructed from grammar rules defined
208 # This class is used to hold non-terminal grammar symbols during parsing.
210 # .type = Grammar symbol type
225 # grammar rule. Index lookup and assignment actually assign the
356 pslice = YaccProduction(None) # Production object passed to grammar rules
389 symstack = [] # Stack of grammar symbols
498 # Call the grammar rule with our special slice object
542 # Call the grammar rule with our special slice object
703 pslice = YaccProduction(None) # Production object passed to grammar rules
733 symstack = [] # Stack of grammar symbol
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Grammar.java 35 import org.antlr.grammar.v3.*;
47 /** Represents a grammar in memory. */
48 public class Grammar {
65 public static final int WILDCARD_TREE_LABEL = 6; // Used in tree grammar x=.
66 public static final int WILDCARD_TREE_LIST_LABEL = 7; // Used in tree grammar x+=.
121 "Parser" // if combined grammar, gen Parser and Lexer will be done later
125 * another tree parser. Maps delegate to set of delegator grammar types.
146 /** This is the buffer of *all* tokens found in the grammar file
155 public Grammar grammar; field in class:Grammar.Decision
    [all...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /external/guice/extensions/persist/lib/
antlr-2.7.5h3.jar 
  /prebuilts/tools/common/m2/repository/antlr/antlr/2.7.7/
antlr-2.7.7.jar 
  /prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4/4.5/
antlr4-4.5.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /external/guice/lib/build/jdiff/
xerces.jar 
  /prebuilts/tools/common/m2/repository/com/sun/xml/bind/external/rngom/2.2.11/
rngom-2.2.11.jar 
  /prebuilts/checkstyle/
checkstyle.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 

Completed in 420 milliseconds

1 2