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

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t044trace.html 54 lexer = new TLexer(cstream),
55 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
59 assertArrayEquals(lexer.traces,
t026actions.g 6 @lexer::init {
t047treeparser.html 94 lexer = new TLexer(cstream),
95 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
111 lexer = new TLexer(cstream),
112 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
  /external/antlr/antlr-3.4/runtime/Python/tests/
t012lexerXMLLexer.g 0 lexer grammar t012lexerXMLLexer;
10 @lexer::init {
14 @lexer::members {
t026actions.g 6 @lexer::init {
t047treeparser.py 54 lexer = self.getLexer(cStream)
55 tStream = antlr3.CommonTokenStream(lexer)
108 lexer = self.getLexer(cStream)
109 tStream = antlr3.CommonTokenStream(lexer)
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
calc.rb 68 lexer = TestCalc::Lexer.new( expression )
69 parser = TestCalc::Parser.new lexer
ll-star.rb 120 lexer = LLStar::Lexer.new( <<-'END'.fixed_indent( 0 ) )
134 parser = LLStar::Parser.new lexer
  /external/clang/include/clang/AST/
CommentLexer.h 1 //===--- CommentLexer.h - Lexer for structured comments ---------*- C++ -*-===//
10 // This file defines lexer for structured comments and supporting token class.
27 class Lexer;
57 friend class Lexer;
217 void dump(const Lexer &L, const SourceManager &SM) const;
220 /// \brief Comment lexer.
221 class Lexer {
223 Lexer(const Lexer &) LLVM_DELETED_FUNCTION;
224 void operator=(const Lexer &) LLVM_DELETED_FUNCTION
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
AsmLexer.h 1 //===- AsmLexer.h - Lexer for Assembly Files --------------------*- C++ -*-===//
10 // This class declares the lexer for assembly files.
26 /// AsmLexer - Lexer class for assembly files.
  /external/webkit/Source/JavaScriptCore/runtime/
LiteralParser.h 63 class Lexer {
72 Lexer(const UString& s, ParserMode mode)
105 LiteralParser::Lexer m_lexer;
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-lexer.rb 59 # - - - - - - begin action @lexer::header - - - - - -
66 # - - - - - - end action @lexer::header - - - - - - -
86 class Lexer < ANTLR3::Lexer
111 # - - - - - - - - - - - lexer rules - - - - - - - - - - - -
112 # lexer rule t__10! (T__10)
136 # lexer rule t__11! (T__11)
160 # lexer rule t__12! (T__12)
184 # lexer rule t__13! (T__13)
208 # lexer rule t__14! (T__14
    [all...]
  /external/clang/lib/Lex/
PPLexerChange.cpp 11 // current lexer stack.
41 "Top level include stack isn't our primary lexer?");
48 /// getCurrentLexer - Return the current file lexer being lexed from. Note
55 // Look for a stacked lexer.
104 EnterSourceFileWithLexer(new Lexer(FID, InputFile, *this), CurDir);
110 void Preprocessor::EnterSourceFileWithLexer(Lexer *TheLexer,
113 // Add the current lexer to the include stack.
177 /// which will cause the lexer to start returning the specified tokens.
234 /// HandleEndOfFile - This callback is invoked when the lexer hits the end of
276 assert(CurPTHLexer && "Got EOF but no current lexer set!")
    [all...]
Lexer.cpp 1 //===--- Lexer.cpp - C Language Family Lexer ------------------------------===//
10 // This file implements the Lexer and Token interfaces.
14 // TODO: GCC Diagnostics emitted by the lexer:
27 #include "clang/Lex/Lexer.h"
62 // Lexer Class Implementation
65 void Lexer::anchor() { }
67 void Lexer::InitLexer(const char *BufStart, const char *BufPtr,
113 /// Lexer constructor - Create a new lexer object for the specified buffe
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
C.stg 56 <if(LEXER)>
57 * - for the lexer : <name>Lexer
76 outputFile( LEXER,
197 <if(LEXER)>
199 /* Macros for accessing things in a lexer
201 #undef LEXER
238 #define LEXER ctx->pLexer
239 #define RECOGNIZER LEXER->rec
242 #define GETCHARINDEX() LEXER->getCharIndex(LEXER
    [all...]
  /bootable/recovery/edify/
Android.mk 6 lexer.l \
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/
TTree.g 9 // Use the vocab from the parser (not the lexer)
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognizerSharedState.as 55 // LEXER FIELDS (must be in same state object to avoid casting
56 // constantly in generated code and Lexer object) :(
59 /** The goal of all lexer rules/methods is to create a token object.
62 * matching lexer rule(s). If you subclass to allow multiple token
  /external/antlr/antlr-3.4/runtime/C/doxygen/
buildrec.dox 6 /// according to whether your grammar file contains a lexer, parser, combined or treeparser specification.
15 /// <td> lexer grammar (G.g3l) </td>
50 /// In order to run your lexer/parser/tree parser combination, you will need a small function (or main)
103 /// // The lexer is of course generated by ANTLR, and so the lexer type is not upper case.
104 /// // The lexer is supplied with a pANTLR3_INPUT_STREAM from whence it consumes its
106 /// // for your lexer.
110 /// // The token stream is produced by the ANTLR3 generated lexer. Again it is a structure based
172 /// // lexer and set the lexer input to our input stream
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognizerSharedState.js 54 // LEXER FIELDS (must be in same state object to avoid casting
55 // constantly in generated code and Lexer object) :(
58 /** The goal of all lexer rules/methods is to create a token object.
61 * matching lexer rule(s). If you subclass to allow multiple token
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleC__.gl 0 lexer grammar SimpleC;
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestDFAMatching.java 44 "lexer grammar t;\n"+
57 "lexer grammar t;\n"+
71 "lexer grammar t;\n"+
84 "lexer grammar t;\n"+
  /external/clang/lib/Rewrite/Core/
TokenRewriter.cpp 17 #include "clang/Lex/Lexer.h"
25 // Create a lexer to lex all the tokens of the main file in raw mode.
27 Lexer RawLex(FID, FromFile, SM, LangOpts);
93 // TODO: Form a whole lexer around this and relex the token! For now, just
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
SecurityServerParser.java 41 import gov.nist.javax.sip.parser.Lexer;
57 protected SecurityServerParser(Lexer lexer)
59 super(lexer);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
CSeqParser.java 51 protected CSeqParser(Lexer lexer) {
52 super(lexer);
59 this.lexer.match(TokenTypes.CSEQ);
60 this.lexer.SPorHT();
61 this.lexer.match(':');
62 this.lexer.SPorHT();
63 String number = this.lexer.number();
65 this.lexer.SPorHT();
71 this.lexer.SPorHT()
    [all...]

Completed in 1110 milliseconds

<<11121314151617181920>>