HomeSort by relevance Sort by last modified time
    Searched full:lexer (Results 801 - 825 of 1025) sorted by null

<<31323334353637383940>>

  /external/clang/unittests/Lex/
PPCallbacksTest.cpp 159 // Run lexer over SourceText and collect FilenameRange from
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
Parser.java 5 import com.google.clearsilver.jsilver.syntax.lexer.*;
21 private final Lexer lexer; field in class:Parser
34 public Parser(@SuppressWarnings("hiding") Lexer lexer)
36 this.lexer = lexer;
110 while(index(this.lexer.peek()) == -1)
117 ign.add(this.lexer.next());
122 this.ignoredTokens.setIn(this.lexer.peek(), ign)
    [all...]
  /external/mesa3d/src/glsl/glcpp/
glcpp-lex.l 130 * Simply pass them through to the main compiler's lexer/parser. */
  /cts/tools/dasm/src/java_cup/
lexer.java 8 /** This class implements a small scanner (aka lexical analyzer or lexer) for
41 public class lexer { class
48 private lexer() { } method in class:lexer
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/
ANTLR3.java 88 /** optional flag to add trace methods to the lexer only */
304 * If true, enables lexer tracing.
552 throw new BuildException("No target grammar, lexer grammar or tree parser specified!");
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableLexer.m 6 * - for the lexer : SymbolTableLexerLexer *
150 /** As per Terence: No returns for lexer rules!
186 // Start of actions.lexer.methods
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
token.rb 54 starting at zero. For example, the 22nd token pulled from a lexer by
225 general utility. Thus code generated for a standard combo lexer-parser grammar
444 grammar, ANTLR will add a lexer rule for the literal and give the token a name
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
debug-mode.rb 77 lexer = grammar_module::Lexer.new( input )
78 tokens = ANTLR3::CommonTokenStream.new( lexer )
  /external/chromium_org/third_party/jinja2/
ext.py 88 """It's passed a :class:`~jinja2.lexer.TokenStream` that can be used
90 :class:`~jinja2.lexer.Token`\s, but it doesn't have to return a
91 :class:`~jinja2.lexer.TokenStream`.
  /external/clang/include/clang/Format/
Format.h 24 class Lexer;
479 tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex,
485 /// Otherwise identical to the reformat() function consuming a \c Lexer.
  /external/clang/lib/AST/
CommentParser.cpp 35 /// This flag is set when there are no more tokens we can fetch from lexer.
95 /// fetch from lexer.
257 Parser::Parser(Lexer &L, Sema &S, llvm::BumpPtrAllocator &Allocator,
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 19 #include "clang/Lex/Lexer.h"
475 Lexer rawLexer(SM.getLocForStartOfFile(LocInfo.first), PP.getLangOpts(),
606 EndColNo += Lexer::MeasureTokenLength(Range.getEnd(), SM, LangOpts)-1;
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 14 // Lexer
17 // The lexer returns tokens [0-255] if it is an unknown character, otherwise one
158 /// lexer and updates CurTok with its results.
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 21 // Lexer
24 // The lexer returns tokens [0-255] if it is an unknown character, otherwise one
165 /// lexer and updates CurTok with its results.
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js 2 * lexer, parser, and tree grammars. This is all the parsing
14 /** State of a lexer, parser, or tree parser are collected into a state
351 /** <p>Get number of recognition errors (lexer, parser, tree parser). Each
352 * recognizer tracks its own number. So parser and lexer each have
727 * If you change what tokens must be created by the lexer,
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseRecognizer.m 433 /** Get number of recognition errors (lexer, parser, tree parser). Each
434 * recognizer tracks its own number. So parser and lexer each have
456 * your token objects because you don't have to go modify your lexer
808 * If you change what tokens must be created by the lexer,
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestSemanticPredicates.java 411 "lexer grammar P;\n"+
426 "lexer grammar P;\n"+
441 "lexer grammar P;\n"+
471 "lexer grammar P;\n"+
488 "lexer grammar P;\n"+
TestDFAConversion.java 445 "lexer grammar t;\n"+
471 "lexer grammar t;\n"+
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp 296 // directive mode. Tell the lexer this so any newlines we see will be
578 // predefines buffer. Any other file is not lexed with a normal lexer, so
673 /// HandleDirective - This callback is invoked when the lexer sees a # token
675 /// lexer/preprocessor state, and advances the lexer(s) so that the next token
681 // mode. Tell the lexer this so any newlines we see will be converted into an
837 // unknown so the token lexer doesn't try to perform token pasting.
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.m 6 * - for the lexer : SimpleCLexerLexer *
176 /** As per Terence: No returns for lexer rules!
212 /* Start of actions.lexer.methods */
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 21 // Lexer
24 // The lexer returns tokens [0-255] if it is an unknown character, otherwise one
194 /// lexer and updates CurTok with its results.
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 21 // Lexer
24 // The lexer returns tokens [0-255] if it is an unknown character, otherwise one
222 /// lexer and updates CurTok with its results.
  /external/llvm/lib/AsmParser/
LLLexer.cpp 1 //===- LLLexer.cpp - Lexer for .ll Files ----------------------------------===//
10 // Implement the Lexer for .ll files.
161 // Lexer definition.
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DFA.cs 50 * lexer's Tokens rule DFA has 326 states roughly.
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/
Antlr3.Runtime (VS2008).csproj 177 <Compile Include="Antlr.Runtime\Lexer.cs" />

Completed in 1772 milliseconds

<<31323334353637383940>>