HomeSort by relevance Sort by last modified time
    Searched defs:Lexer (Results 1 - 20 of 20) sorted by null

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
lexer.ml 2 * Lexer
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
lexer.ml 2 * Lexer
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
lexer.ml 2 * Lexer
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
lexer.ml 2 * Lexer
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
lexer.ml 2 * Lexer
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
lexer.ml 2 * Lexer
  /external/llvm/include/llvm/MC/
MCTargetAsmLexer.h 1 //===-- llvm/MC/MCTargetAsmLexer.h - Target Assembly Lexer ------*- C++ -*-===//
41 MCAsmLexer *Lexer;
48 /// InstallLexer - Set the lexer to get tokens from lower-level lexer \arg L.
50 Lexer = &L;
54 return Lexer;
  /external/clang/include/clang/Lex/
Lexer.h 1 //===--- Lexer.h - C Language Family Lexer ----------------------*- C++ -*-===//
10 // This file defines the Lexer interface.
29 /// ConflictMarkerKind - Kinds of conflict marker which the lexer might be
42 /// Lexer - This provides a simple interface that turns a text buffer into a
46 class Lexer : public PreprocessorLexer {
48 // Constant configuration values for this lexer.
53 bool Is_PragmaLexer; // True if lexer for _Pragma handling.
59 /// ExtendedTokenMode - The lexer can optionally keep comments and whitespace
71 // in Lexer::isNextPPTokenLParen
    [all...]
  /external/nist-sip/java/gov/nist/core/
HostNameParser.java 37 //import gov.nist.javax.sdp.parser.Lexer;
52 private static LexerCore Lexer;
66 this.lexer = new LexerCore("charLexer", hname);
73 * The lexer is initialized with the buffer.
75 public HostNameParser(LexerCore lexer) {
76 this.lexer = lexer;
77 lexer.selectLexer("charLexer");
89 lexer.consumeValidChars(VALID_DOMAIN_LABEL_CHAR);
104 while (lexer.hasMoreChars())
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Lexer.cpp 25 #include "Lexer.h"
44 #include "Lexer.lut.h"
224 Lexer::Lexer(JSGlobalData* globalData)
231 Lexer::~Lexer()
236 ALWAYS_INLINE const UChar* Lexer::currentCharacter() const
242 ALWAYS_INLINE int Lexer::currentOffset() const
247 void Lexer::setCode(const SourceCode& source, ParserArena& arena)
274 ALWAYS_INLINE void Lexer::shift(
    [all...]
Lexer.h 40 class Lexer {
41 WTF_MAKE_NONCOPYABLE(Lexer); WTF_MAKE_FAST_ALLOCATED;
91 Lexer(JSGlobalData*);
92 ~Lexer();
150 inline bool Lexer::isWhiteSpace(int ch)
155 inline bool Lexer::isLineTerminator(int ch)
160 inline unsigned char Lexer::convertHex(int c1, int c2)
165 inline UChar Lexer::convertUnicode(int c1, int c2, int c3, int c4)
  /external/antlr/src/org/antlr/runtime/
Lexer.java 30 /** A lexer is recognizer that draws input symbols from a character stream.
31 * lexer grammars result in a subclass of this object. A Lexer object
35 public abstract class Lexer extends BaseRecognizer implements TokenSource {
36 /** Where is the lexer drawing characters from? */
39 public Lexer() {
42 public Lexer(CharStream input) {
46 public Lexer(CharStream input, RecognizerSharedState state) {
53 // wack Lexer state variables
109 /** Instruct the lexer to skip creating a token for current lexer rul
    [all...]
  /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/webkit/Source/JavaScriptCore/runtime/
LiteralParser.h 63 class Lexer {
72 Lexer(const UString& s, ParserMode mode)
105 LiteralParser::Lexer m_lexer;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java 393 Lexer lexer = new Lexer(selection, allowedColumns); local
394 parseExpression(lexer);
395 if (lexer.currentToken() != Lexer.TOKEN_END) {
411 private static void parseExpression(Lexer lexer) {
414 if (lexer.currentToken() == Lexer.TOKEN_OPEN_PAREN)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 3 package com.google.clearsilver.jsilver.syntax.lexer;
9 public class Lexer
27 public Lexer(@SuppressWarnings("hiding") PushbackReader in)
69 @SuppressWarnings("hiding") int[][][] gotoTable = Lexer.gotoTable[this.state.id()];
70 @SuppressWarnings("hiding") int[] accept = Lexer.accept[this.state.id()];
    [all...]
  /external/clang/lib/Lex/
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"
59 // Lexer Class Implementation
62 void Lexer::InitLexer(const char *BufStart, const char *BufPtr,
110 /// Lexer constructor - Create a new lexer object for the specified buffer
111 /// with the specified preprocessor managing the lexing process. This lexer
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 85 AsmLexer Lexer;
143 virtual MCAsmLexer &getLexer() { return Lexer; }
185 /// \brief Reset the current lexer position to that given by \arg Loc. The
355 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), MAI(_MAI), SrcMgr(_SM),
363 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
421 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
427 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
434 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
438 const AsmToken *tok = &Lexer.Lex();
446 tok = &Lexer.Lex()
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /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) {

Completed in 826 milliseconds