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

  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 69 const AsmToken &Lex() { return getParser().Lex(); }
MCAsmLexer.h 98 /// is safe to store across calls to Lex().
102 // also not generally what we want (it is nicer for recovery etc. to lex 123br
145 /// Lex - Consume the next token from the input stream and return it.
149 const AsmToken &Lex() {
  /external/llvm/lib/AsmParser/
LLLexer.h 50 lltok::Kind Lex() {
LLParser.h 92 LLLexer Lex;
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(); continue
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 56 TGLexer Lex;
88 : Lex(SrcMgr), CurMultiClass(nullptr), Records(records), AnonCounter(0) {}
99 return Error(Lex.getLoc(), Msg);
102 return Lex.getDependencies();
TGLexer.h 88 tgtok::TokKind Lex() {
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 70 MarkupLexer &Lex;
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)
    [all...]
  /external/clang/lib/Lex/
TokenLexer.cpp 1 //===--- 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) {
546 // scratch buffer where we can lex it
    [all...]
Preprocessor.cpp 28 #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/Pragma.h
    [all...]
PTHLexer.cpp 1 //===--- 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) {
Lexer.cpp 14 #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"
97 // to quickly lex the tokens of the buffer, e.g. when handling a "#if 0" block
166 /// Preprocessor::Lex virtual. Given that, we could just dump in a magic lexer
176 // Create the lexer as if we were going to lex the file normally.
182 // just lex the subsection of the file that we want. This is lexing from a
309 // Lex from the start of the given location
    [all...]
  /external/javassist/src/main/javassist/compiler/
Lex.java 27 public class Lex implements TokenId {
39 public Lex(String s) {
  /external/clang/lib/Format/
Format.cpp 24 #include "clang/Lex/Lexer.h"
1281 ArrayRef<FormatToken *> lex() { function in class:clang::format::__anon1603::FormatTokenLexer
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 220 const AsmToken &Lex() override;
310 /// current token is not set; clients should ensure Lex() is called
600 const AsmToken &AsmParser::Lex() {
601 const AsmToken *tok = &Lexer.Lex();
609 tok = &Lexer.Lex();
625 Lex();
712 Lex();
716 Lex();
723 Lex();
734 Lex();
    [all...]
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 

Completed in 1317 milliseconds