Searched
full:lexer (Results
401 -
425 of
1025) sorted by null
<<11121314151617181920>>
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestSemanticPredicateEvaluation.java | 75 "@lexer::members {boolean p=false;}\n" + 88 "@lexer::members {boolean p=true;}\n" + 102 "@lexer::members {boolean p=true;}\n" + 115 "@lexer::members {boolean p=true;}\n" + 127 "@lexer::members {boolean p=true;}\n" + 150 "@lexer::members {boolean p=false;}\n" + 162 "@lexer::members {boolean p=false;}\n" + 186 "@lexer::members {boolean sig=false;}\n"+ 212 "@lexer::members {boolean p=true, q=false;}" +
|
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/ |
lexer.py | 29 """Class for errors from the lexer.""" 37 class Lexer(object): 72 ## All the tokens recognized by the lexer 165 t.lexer.lineno += len(t.value) 246 t.lexer.lineno += t.value.count("\n")
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
AuthorizationParser.java | 53 * @param lexer Lexer to set 55 protected AuthorizationParser(Lexer lexer) { 56 super(lexer);
|
WWWAuthenticateParser.java | 52 * @param lexer - lexer to use. 54 protected WWWAuthenticateParser(Lexer lexer) { 55 super(lexer);
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/ |
ObjC.stg | 52 className() ::= "<name><!<if(LEXER)>Lexer<else><if(TREE_PARSER)>Tree<endif>Parser<endif>!>" 60 <if(LEXER)> 61 * - for the lexer : <name>Lexer 80 outputFile( LEXER, 127 #import "<name><!<if(LEXER)>Lexer<else><if(TREE_PARSER)>Tree<endif>Parser<endif>!>.h" 152 headerFile( LEXER, 197 <if(LEXER)> [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/ |
ParserLoader.java | 34 * Class loader for parser & lexer generated by antlr. 43 * Create a class loader for antlr parser/lexer. 49 final String lexerName = grammarName + "Lexer";
|
gUnitAdapter.java | 63 final gUnitLexer lexer = new gUnitLexer(input); local 64 final CommonTokenStream tokens = new CommonTokenStream(lexer);
|
/external/antlr/antlr-3.4/runtime/C/doxygen/ |
using.dox | 17 /// - The lexer is independent of the parser. You \b cannot control the lexer from within the parser; 21 /// This means that your lexer runs first and consumes all the input stream until
|
generate.dox | 31 /// <td> A lexer grammar specification only. </td> 39 /// <td> A combined lexer and parser specification. </td>
|
/external/antlr/antlr-3.4/runtime/Perl5/t/examples/ |
simplecalc.t | 34 * LEXER RULES 61 my $lexer = SimpleCalcLexer->new({ input => $input }); 62 my $tokens = ANTLR::Runtime::CommonTokenStream->new({ token_source => $lexer });
|
expr.t | 76 my $lexer = ExprLexer->new({ input => $input }); 78 my $tokens = ANTLR::Runtime::CommonTokenStream->new({ token_source => $lexer });
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/ |
profile-mode.rb | 126 lexer = SimpleC::Lexer.new( input ) 127 tokens = ANTLR3::CommonTokenStream.new( lexer )
|
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
DefineGrammarItemsWalker.g | 73 /** Remove any lexer rules from a COMBINED; already passed to lexer */ 90 if (Rule.getRuleType(ruleName) == Grammar.LEXER) { 91 // remove lexer rule 118 : ^( LEXER_GRAMMAR {grammar.type = Grammar.LEXER;} grammarSpec ) 222 if ( Rule.getRuleType(name) == Grammar.LEXER && grammar.type==Grammar.COMBINED ) 224 // a merged grammar spec, track lexer rules and send to another grammar 351 // if ( grammar.type!=Grammar.LEXER && grammar.GetOption("output")!=null && blockLevel==1 ) 479 if ( grammar.type!=Grammar.LEXER ) 514 if ( grammar.type == Grammar.LEXER ) [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
CheckerContext.cpp | 17 #include "clang/Lex/Lexer.h" 93 return Lexer::getImmediateMacroName(Loc, getSourceManager(), 96 return Lexer::getSpelling(Loc, buf, getSourceManager(), getLangOpts());
|
/external/llvm/lib/TableGen/ |
TGLexer.h | 1 //===- TGLexer.h - Lexer for TableGen Files ---------------------*- C++ -*-===// 10 // This class represents the Lexer for tablegen files. 61 /// TGLexer - TableGen Lexer class.
|
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
MacroExpander.cpp | 18 class TokenLexer : public Lexer 49 MacroExpander::MacroExpander(Lexer *lexer, 52 : mLexer(lexer), 319 TokenLexer lexer(&arg); 320 MacroExpander expander(&lexer, mMacroSet, mDiagnostics);
|
/external/clang/include/clang/Lex/ |
PreprocessorLexer.h | 1 //===--- PreprocessorLexer.h - C Language Family Lexer ----------*- C++ -*-===// 53 /// 1. If EOF of the current lexer is found, the include stack isn't popped. 57 /// implicitly transformed by the lexer. 141 /// \brief Inform the lexer whether or not we are currently lexing a 147 /// \brief Return true if this lexer is in raw mode or not. 150 /// \brief Return the preprocessor object for this lexer.
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
CharStream.as | 29 /** A source of characters for an ANTLR lexer */ 40 * lexer code. I'd prefer to return a char here type-wise, but it's
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
ICharStream.cs | 35 /** <summary>A source of characters for an ANTLR lexer</summary> */ 49 * lexer code. I'd prefer to return a char here type-wise, but it's
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
ICharStream.cs | 36 /** <summary>A source of characters for an ANTLR lexer</summary> */ 51 * lexer code. I'd prefer to return a char here type-wise, but it's
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/ |
FastSimpleExpression.g3 | 43 @lexer::superClass{Antlr.Runtime.SlimLexer} 71 // LEXER
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
CharStream.java | 30 /** A source of characters for an ANTLR lexer */ 42 * lexer code. I'd prefer to return a char here type-wise, but it's
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
rhino-python.prog | 57 var lexer = new MyLexer(input); 58 var tokens = new ANTLR.runtime.CommonTokenStream(lexer);
|
t012lexerXML.g | 2 lexer grammar t012lexerXML; 7 @lexer::members {
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t055templates.py | 16 lexer = lexerCls(cStream) 17 tStream = antlr3.CommonTokenStream(lexer) 65 lexer='angle-bracket' 236 lexer='angle-bracket' 372 lexer = lexerCls(cStream) 373 tStream = antlr3.TokenRewriteStream(lexer) 481 lexer = lexerCls(cStream) 482 tStream = antlr3.TokenRewriteStream(lexer)
|
Completed in 1487 milliseconds
<<11121314151617181920>>