HomeSort by relevance Sort by last modified time
    Searched full:lexer (Results 576 - 600 of 912) sorted by null

<<21222324252627282930>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRIntStream.h 42 // TODO: problem in that lexer stream returns not index but some marker
96 * pass the buck all the way to the lexer who can ask its input stream
ANTLRLexer.m 81 // wack Lexer state variables
114 // this method may be overridden in the generated lexer if we generate a filtering lexer.
250 // try to change all those occurrences to -LT: if possible (i.e. if ANTLR can be made to generate LA only for lexer code)
320 /** TODO: not thought about recovery in lexer yet.
  /external/antlr/antlr-3.4/runtime/Ruby/
README.txt 23 While it does provide implementation for basic lexer and parser classes, the
85 # see how the lexer tokenizes some input
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
error.rb 71 # the various reporting methods in Parser and Lexer can be overridden
281 lexer = MissingTokenExample::Lexer.new( "ac" ) # <= notice the missing 'b'
282 tokens = ANTLR3::CommonTokenStream.new( lexer )
430 lexer grammar EarlyExitDemo;
439 lexer = EarlyExitDemo::Lexer.new( input )
440 lexer.next_token
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSerializerFoo.java 174 if ( g.type!=Grammar.LEXER ) {
179 // else lexer???
NameSpaceChecker.java 105 else if ( grammar.type==Grammar.LEXER &&
123 * If you ref ID in a combined grammar and don't define ID as a lexer rule
147 // associated lexer rule.
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestJavaCodeGeneration.java 56 "lexer grammar T;\n" +
115 "lexer grammar T; \n" +
TestSymbolDefinitions.java 71 "lexer grammar t;\n" +
111 // 'x' is token and char in lexer rule
121 "lexer grammar t;" + newline +
346 "lexer grammar t;\n" +
377 "lexer grammar t;\n"+
459 "lexer grammar t;\n"+
528 "lexer grammar t;\n"+
781 "lexer grammar B; \n" +
  /external/clang/include/clang/Format/
Format.h 23 class Lexer;
120 tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex,
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/LexicalConventions/
regress-177314.js 43 * the lexer should interpret this as '\40' + '0' instead, and throw no error.
64 // now exercise the lexer by going one higher in the last digit
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
LL1Analyzer.java 177 if ( grammar.type!=Grammar.LEXER && look.member(Label.EOR_TOKEN_TYPE) ) {
185 else if ( grammar.type==Grammar.LEXER && look.member(Label.EOT) ) {
204 if ( grammar.type==Grammar.LEXER ) {
251 if ( grammar.type!=Grammar.LEXER && tset.member(Label.EOR_TOKEN_TYPE) ) {
300 if ( grammar.type==Grammar.LEXER ) {
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Lexer.java 19 * $Id: Lexer.java 524810 2007-04-02 15:51:55Z zongaro $
32 class Lexer
73 * Create a Lexer object.
75 * @param compiler The owning compiler for this lexer.
80 Lexer(Compiler compiler, PrefixResolver resolver,
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
auto-ast.rb 13 grammar_module::Lexer.send( :include, ANTLR3::Test::CollectErrors )
14 grammar_module::Lexer.send( :include, ANTLR3::Test::CaptureOutput )
18 lexer = grammar_module::Lexer.new( input )
19 parser = grammar_module::Parser.new( lexer )
41 grammar_module::Lexer.send( :include, ANTLR3::Test::CollectErrors )
42 grammar_module::Lexer.send( :include, ANTLR3::Test::CaptureOutput )
48 lexer = grammar_module::Lexer.new( input )
49 parser = grammar.module::Parser.new( lexer )
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /cts/tools/dasm/src/java_cup/
Main.java 164 if (lexer.error_count == 0)
440 lexer.emit_error("Internal error: Unexpected exception");
475 lexer.warning_count++;
494 lexer.warning_count++;
573 lexer.error_count++;
626 System.err.println(" " + lexer.error_count + " error" +
627 plural(lexer.error_count) + " and " + lexer.warning_count +
628 " warning" + plural(lexer.warning_count));
parser.java 326 lexer.init();
333 return lexer.next_token();
345 lexer.emit_error(message);
352 lexer.emit_error(message);
481 lexer.emit_error( "Symbol \"" + (/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val +
509 lexer.emit_error("Symbol \"" + (/*term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val +
600 if (lexer.error_count == 0)
601 lexer.emit_error("Symbol \"" + (/*symid*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-1)).str_val +
690 lexer.emit_error("Syntax Error");
713 if (lexer.error_count == 0
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BufferedTokenStream.java 36 * lexer. Useful when the parser or lexer has to set context/mode info before
260 /** Get all tokens from lexer until EOF */
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
ANTLRStringStream.js 3 * fed to a lexer.
146 * rewind(mark()) should not affect the input cursor. The Lexer
306 * pass the buck all the way to the lexer who can ask its input stream
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Python.g 43 * Starting with Loring's preliminary lexer for Python, I modified it
51 * way. Resist changing the lexer unless you've used ANTLR a lot. ;)
66 @lexer::members {
rhino-python.extensions 49 Upon NEWLINE token from the lexer, however, an INDENT or DEDENT token
57 lexer grammar must set the text of the LEADING_WS token to be
64 are generated. Before asking the lexer for another token via
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
CombinedLexer.m 6 * - for the lexer : CombinedLexerLexer *
56 /** As per Terence: No returns for lexer rules! */
87 /* Start of actions.lexer.methods */
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
Target.java 125 case Grammar.LEXER :
126 if ( scope.equals("lexer") ) {return true;}
133 if ( scope.equals("lexer") ) {return true;}
  /external/bison/data/
java.m4 82 [b4_percent_code_ifdef([[lexer]], [$1], [$2])])
256 # Delegating the lexer parameters to the lexer constructor.
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Lexer.java 38 * Lexer class for the parser.
46 public class Lexer extends LexerCore {
68 public Lexer(String lexerName, String buffer) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Unicode/
uc-005.js 199 * So we force the lexer to condense the string before we use it.
223 * the lexer to turn escape sequences back into single characters.
229 * So we surround |str| lexicographically with quotes to force the lexer to

Completed in 549 milliseconds

<<21222324252627282930>>