Searched defs:Lex (Results 1 - 15 of 15) sorted by last modified time

/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/llvm/tools/llvm-mcmarkup/
H A Dllvm-mcmarkup.cpp70 MarkupLexer &Lex; member in class:MarkupParser
73 MarkupParser(MarkupLexer &lex, SourceMgr &SrcMgr) : Lex(lex), SM(SrcMgr) {}
125 StringRef::const_iterator Start = Lex.getPosition();
127 while(Lex.getNextChar() != ':') {
129 if (Lex.isEOF())
132 StringRef RawTag(Start, Lex.getPosition() - Start - 1);
152 MarkupLexer Lex(InputSource);
153 MarkupParser Parser(Lex, SrcMgr);
157 for (int CurChar = Lex.getNextChar();
159 CurChar = Lex
[all...]
/external/llvm/include/llvm/MC/MCParser/
H A DMCAsmLexer.h98 /// is safe to store across calls to Lex().
145 /// Lex - Consume the next token from the input stream and return it.
149 const AsmToken &Lex() { function in class:llvm::MCAsmLexer
H A DMCAsmParserExtension.h69 const AsmToken &Lex() { return getParser().Lex(); } function in class:llvm::MCAsmParserExtension
/external/llvm/lib/AsmParser/
H A DLLLexer.h50 lltok::Kind Lex() { function in class:llvm::LLLexer
H A DLLParser.h92 LLLexer Lex; member in class:llvm::LLParser
140 Context(m->getContext()), Lex(F, SM, Err, m->getContext()),
149 return Lex.Error(L, Msg);
152 return Error(Lex.getLoc(), Msg);
168 if (Lex.getKind() != T) return false;
169 Lex.Lex();
176 switch (Lex.getKind()) {
177 case lltok::kw_fast: FMF.setUnsafeAlgebra(); Lex.Lex(); continu
[all...]
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp220 const AsmToken &Lex() override;
310 /// current token is not set; clients should ensure Lex() is called
600 const AsmToken &AsmParser::Lex() { function in class:AsmParser
601 const AsmToken *tok = &Lexer.Lex();
609 tok = &Lexer.Lex();
625 Lex();
712 Lex();
716 Lex();
723 Lex();
734 Lex();
[all...]
/external/llvm/lib/TableGen/
H A DTGLexer.h88 tgtok::TokKind Lex() { function in class:llvm::TGLexer
H A DTGParser.h56 TGLexer Lex; member in class:llvm::TGParser
88 : Lex(SrcMgr), CurMultiClass(nullptr), Records(records), AnonCounter(0) {}
99 return Error(Lex.getLoc(), Msg);
102 return Lex.getDependencies();
/external/javassist/src/main/javassist/compiler/
H A DLex.java27 public class Lex implements TokenId { class in inherits:TokenId
39 public Lex(String s) { method in class:Lex
/external/clang/lib/Format/
H A DFormat.cpp24 #include "clang/Lex/Lexer.h"
1268 FormatTokenLexer(Lexer &Lex, SourceManager &SourceMgr, FormatStyle &Style, argument
1271 Column(0), TrailingWhitespace(0), Lex(Lex), SourceMgr(SourceMgr),
1274 Lex.SetKeepWhitespaceMode(true);
1636 Lexer &Lex; member in class:clang::format::__anon17898::FormatTokenLexer
1648 Lex.LexFromRawLexer(Tok.Tok);
1680 Formatter(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr, argument
1682 : Style(Style), Lex(Lex), SourceMg
1950 Lexer &Lex; member in class:clang::format::__anon17898::Formatter
1962 reformat(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr, std::vector<CharSourceRange> Ranges) argument
[all...]
/external/clang/lib/Lex/
H A DLexer.cpp14 #include "clang/Lex/Lexer.h"
18 #include "clang/Lex/CodeCompletionHandler.h"
19 #include "clang/Lex/LexDiagnostic.h"
20 #include "clang/Lex/LiteralSupport.h"
21 #include "clang/Lex/Preprocessor.h"
166 /// Preprocessor::Lex virtual. Given that, we could just dump in a magic lexer
309 // Lex from the start of the given location.
493 // Lex tokens until we find the token that contains the source location.
1184 // Lex from the start of the given location.
1562 /// LexNumericConstant - Lex th
2867 bool Lexer::Lex(Token &Result) { function in class:Lexer
[all...]
H A DPTHLexer.cpp1 //===--- PTHLexer.cpp - Lex from a token stream ---------------------------===//
14 #include "clang/Lex/PTHLexer.h"
19 #include "clang/Lex/LexDiagnostic.h"
20 #include "clang/Lex/PTHManager.h"
21 #include "clang/Lex/Preprocessor.h"
22 #include "clang/Lex/Token.h"
46 bool PTHLexer::Lex(Token& Tok) { function in class:PTHLexer
H A DPreprocessor.cpp28 #include "clang/Lex/Preprocessor.h"
32 #include "clang/Lex/CodeCompletionHandler.h"
33 #include "clang/Lex/ExternalPreprocessorSource.h"
34 #include "clang/Lex/HeaderSearch.h"
35 #include "clang/Lex/LexDiagnostic.h"
36 #include "clang/Lex/LiteralSupport.h"
37 #include "clang/Lex/MacroArgs.h"
38 #include "clang/Lex/MacroInfo.h"
39 #include "clang/Lex/ModuleLoader.h"
40 #include "clang/Lex/Pragm
662 void Preprocessor::Lex(Token &Result) { function in class:Preprocessor
[all...]
H A DTokenLexer.cpp1 //===--- TokenLexer.cpp - Lex from a token stream -------------------------===//
14 #include "clang/Lex/TokenLexer.h"
16 #include "clang/Lex/LexDiagnostic.h"
17 #include "clang/Lex/MacroArgs.h"
18 #include "clang/Lex/MacroInfo.h"
19 #include "clang/Lex/Preprocessor.h"
408 /// Lex - Lex and return a token from this macro stream.
410 bool TokenLexer::Lex(Token &Tok) { function in class:TokenLexer
557 // Lex th
[all...]

Completed in 223 milliseconds