HomeSort by relevance Sort by last modified time
    Searched defs:Lexer (Results 51 - 75 of 124) sorted by null

1 23 4 5

  /prebuilts/clang/host/linux-x86/clang-4691093/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 &) = delete;
224 void operator=(const Lexer &) = delete
    [all...]
  /development/vndk/tools/sourcedr/sourcedr/blueprint/
blueprint.py 90 # Lexer
118 """Lexer error exception class."""
121 """Create a lexer error exception object."""
124 self.line, self.column = Lexer.compute_line_column(buf, pos)
128 """Convert lexer error to string representation."""
133 class Lexer(object):
134 """Lexer to tokenize the input string."""
558 def __init__(self, lexer, message):
563 Lexer.compute_line_column(lexer.buf, lexer.start
    [all...]
  /development/vndk/tools/sourcedr/sourcedr/
ninja.py 279 class Lexer(object):
529 def _push_context(self, lexer, env):
533 lexer: Lexer for the associated file.
538 self._lexer = lexer
570 self._push_context(Lexer(fp, path, encoding), env)
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 77 holds newly constructed tokens for lexer rules
180 For all effective purposes, the class and its immediate subclasses Lexer,
682 # If you change what tokens must be created by the lexer,
911 =begin rdoc ANTLR3::Lexer
913 = Lexer
915 Lexer is the default superclass of all lexers generated by ANTLR. The class
921 A lexer's job is to take input text and break it up into _tokens_ -- objects
923 position of the text with respect to the input. Thus, a lexer is essentially a
927 the lexer converts text into tokens for use by a parser, which recognizes larger
938 == ANTLR Lexers and the Lexer AP
    [all...]
  /external/libmojo/third_party/jinja2/
lexer.py 3 jinja2.lexer
6 This module implements a Jinja / Python combination lexer. The
7 `Lexer` class provided by this module is used to do some preprocessing
28 # environments with the same lexer
214 Used by the `Lexer` to specify known errors.
362 argument as :meth:`jinja2.lexer.Token.test`.
382 """Return a lexer which is probably cached."""
395 lexer = _lexer_cache.get(key)
396 if lexer is None:
397 lexer = Lexer(environment
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssTokens.java 86 Lexer lexer = new Lexer(css); local
87 lexer.lex();
88 return lexer.build();
293 private static final class Lexer {
329 Lexer(String css) {
    [all...]
  /external/skia/src/sksl/
SkSLLexer.h 225 class Lexer {
  /external/skqp/src/sksl/
SkSLLexer.h 225 class Lexer {
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java 592 Lexer lexer = new Lexer(selection, allowedColumns); local
593 parseExpression(lexer);
594 if (lexer.currentToken() != Lexer.TOKEN_END) {
610 private static void parseExpression(Lexer lexer) {
613 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/llvm/lib/Target/Lanai/AsmParser/
LanaiAsmParser.cpp 71 Lexer(Parser.getLexer()), SubtargetInfo(STI) {
78 MCAsmLexer &Lexer;
677 if (Lexer.getKind() == AsmToken::Percent)
679 if (Lexer.getKind() == AsmToken::Identifier) {
680 RegNum = MatchRegisterName(Lexer.getTok().getIdentifier());
703 if (Lexer.getKind() != AsmToken::Identifier)
719 if (Lexer.getKind() != AsmToken::LParen) {
720 Error(Lexer.getLoc(), "Expected '('");
723 Lexer.Lex(); // lex '('
731 if (Lexer.getKind() == AsmToken::Plus && Parser.parseExpression(RHS)
    [all...]
  /external/clang/lib/Lex/
Lexer.cpp 1 //===--- Lexer.cpp - C Language Family Lexer ------------------------------===//
10 // This file implements the Lexer and Token interfaces.
14 #include "clang/Lex/Lexer.h"
50 // Lexer Class Implementation
53 void Lexer::anchor() { }
55 void Lexer::InitLexer(const char *BufStart, const char *BufPtr,
105 /// Lexer constructor - Create a new lexer object for the specified buffer
106 /// with the specified preprocessor managing the lexing process. This lexer
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
AsmParser.cpp 85 AsmLexer Lexer;
143 virtual MCAsmLexer &getLexer() { return Lexer; }
183 /// \brief Reset the current lexer position to that given by \arg Loc. The
353 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), MAI(_MAI), SrcMgr(_SM),
361 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
419 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
425 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
432 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
436 const AsmToken *tok = &Lexer.Lex();
444 tok = &Lexer.Lex()
    [all...]
  /external/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp     [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 117 AsmLexer Lexer;
206 MCAsmLexer &getLexer() override { return Lexer; }
262 Lexer.Lex();
263 Lexer.UnLex(AsmToken(AsmToken::EndOfStatement, CommentStr));
355 /// \brief Reset the current lexer position to that given by \p Loc. The
561 : Lexer(MAI), Ctx(Ctx), Out(Out), MAI(MAI), SrcMgr(SM),
570 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer)->getBuffer());
632 SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
637 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer)->getBuffer());
647 SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile)
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp     [all...]
  /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/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/
qdox-1.12.jar 
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/
nashorn.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/
nashorn.jar 
  /frameworks/opt/setupwizard/tools/docs/
jsilver.jar 

Completed in 568 milliseconds

1 23 4 5