Searched refs:symbol (Results 1 - 25 of 670) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as53 /** Match current input symbol against ttype. Attempt
81 /** Match the wildcard: in a symbol */
102 if ( state._fsp>=0 ) { // remove EOR if we're not the start symbol
113 // in follow set to indicate that the fall of the start symbol is
324 * for NoViableAlt and mismatched symbol exceptions. If you enable
326 * handle mismatched symbol exceptions but there could be a mismatched
604 /** Match needs to return the current input symbol, which gets put
609 * input symbol is.
618 * symbols. But, actions might refer to that missing symbol.
H A DDFA.as131 // not in range and not EOF/EOT, must be invalid symbol
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DBaseTreeAdaptor.as214 * For example, there is probably no input symbol associated with imaginary
226 * For example, there is probably no input symbol associated with imaginary
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas92 /// input symbol at which the error was detected. The stop token indicates
93 /// the last symbol consumed during recovery.
646 /// For example, there is probably no input symbol associated with imaginary
657 /// For example, there is probably no input symbol associated with imaginary
1989 /// <summary>lookahead[head] is the first symbol of lookahead, LT(1). </summary>
H A DAntlr.Runtime.pas93 /// Return the current input symbol index 0..N where N indicates the
94 /// last symbol has been read. The index is the symbol about to be
95 /// read not the most recently read symbol.
163 /// the ith symbol. So, seeking to 0 means LA(1) will return the first
709 /// Match current input symbol against ttype. Attempt
755 /// <summary> Match the wildcard: in a symbol</summary>
806 /// for NoViableAlt and mismatched symbol exceptions. If you enable
808 /// handle mismatched symbol exceptions but there could be a mismatched
1361 /// complete trace of rules from the start symbol
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/
H A Dantlr3.rb65 text and symbol information produced by lexers and used by parsers and ASTs
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddebug.rb240 symbol = super
241 @debug_listener.consume_node( symbol )
242 return( symbol )
H A Ddfa.rb54 each step, the machine examines the next symbol on the input stream, checks the
69 The smallest value of the next input symbol that has
72 The largest value of the next input symbol that has
76 the current input symbol.
79 situations where a non-matching input symbol does
H A Derror.rb77 # that you can compute the complete trace of rules from the start symbol.
89 # knows its state (such as current input symbol and line info) that
100 to the recognizer by the rules of a grammar and an input symbol which failed to
107 attr_accessor :input, :index, :line, :column, :symbol, :token, :source_name
117 @token = @symbol = input.look
118 @line = @symbol.line
119 @column = @symbol.column
121 @token = @symbol = input.peek || EOF
125 @symbol = @input.look
126 if @symbol
[all...]
H A Drecognizers.rb379 # Attempt to match the current input symbol the token type
380 # specified by +type+. If the symbol matches the type,
381 # consume the current symbol and return its value. If
382 # the symbol doesn't match, attempt to use the follow-set
397 # the current symbol from the input stream.
440 "missing #{ token_name } at #{ token_error_display( e.symbol ) }"
443 "mismatched input #{ token_error_display( e.symbol ) } expecting #{ token_name }"
446 "mismatched tree node: #{ e.symbol } expecting #{ token_name }"
448 "no viable alternative at input " << token_error_display( e.symbol )
451 [ token_error_display( e.symbol ),
[all...]
H A Dtoken.rb40 a corresponding type symbol, which categorizes/characterizes the content of the
386 say, a ruby symbol) is that ANTLR's decision logic often needs to test whether a
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DRubyTarget.java120 } else if ( formatName.equals( "symbol" ) ) {
121 return symbol( idString );
205 private String symbol( String value ) { method in class:RubyTarget.RubyRenderer
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
H A DActionScript.stg996 <if(semPredState)> <! get next lookahead symbol to test edges, then rewind !>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
H A DC.stg2593 <if(semPredState)> <! get next lookahead symbol to test edges, then rewind !>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DCSharp2.stg1370 <! get next lookahead symbol to test edges, then rewind !>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DCSharp3.stg1349 <! get next lookahead symbol to test edges, then rewind !>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
H A DDelphi.stg1454 <if(semPredState)> <! get next lookahead symbol to test edges, then rewind !>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DJava.stg1099 <if(semPredState)> <! get next lookahead symbol to test edges, then rewind !>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
H A DObjC.stg1597 <if(semPredState)> <! get next lookahead symbol to test edges, then rewind !>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
H A DPerl5.stg1076 <if(semPredState)> <! get next lookahead symbol to test edges, then rewind !>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
H A DPython.stg1180 <if(semPredState)> <! get next lookahead symbol to test edges, then rewind !>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
H A DScala.stg1086 <if(semPredState)> <! get next lookahead symbol to test edges, then rewind !>
/external/bison/build-aux/
H A Dtexinfo.tex3053 % Although only regular is the truly official Euro symbol, we ignore
3074 % installations which never need the symbol don't have to have the
9977 % ends up printing the roman \ from the math symbol font (because \char
/external/bison/doc/
H A Drefcard.tex337 \key{Declare a terminal symbol.}{\%token <{\it t\/}>
340 \key{Declare a terminal symbol, and define its association.}
360 definition, {\it n} is a {\it terminal} symbol name, {\it m} is a
361 {\it non-terminal} symbol name, and {\it association} can be one of
424 For altering the precedence of a symbol use:
442 \key{Access data associated with a symbol.} {\$\$, \$0\dots\${\it n}}
445 \key{Access symbol's location.} {@\$, @0\dots@{\it n}}

Completed in 502 milliseconds

1234567891011>>