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 94 /// is safe to store across calls to Lex().
98 // also not generally what we want (it is nicer for recovery etc. to lex 123br
134 /// Lex - Consume the next token from the input stream and return it.
138 const AsmToken &Lex() {
  /external/llvm/lib/AsmParser/
LLLexer.h 50 lltok::Kind Lex() {
LLParser.h 91 LLLexer Lex;
134 Context(m->getContext()), Lex(F, SM, Err, m->getContext()),
143 return Lex.Error(L, Msg);
146 return Error(Lex.getLoc(), Msg);
158 if (Lex.getKind() != T) return false;
159 Lex.Lex();
166 switch (Lex.getKind()) {
167 case lltok::kw_fast: FMF.setUnsafeAlgebra(); Lex.Lex(); continue
    [all...]
  /external/clang/include/clang/Lex/
Lexer.h 18 #include "clang/Lex/PreprocessorLexer.h"
63 /// whitespace preservation can be useful for some clients that want to lex
130 /// Lex - Return the next token in the file. If this is the end of file, it
132 void Lex(Token &Result) {
148 /// isPragmaLexer - Returns true if this Lexer is being used to lex a pragma.
151 /// IndirectLex - An indirect call to 'Lex' that can be invoked via
153 void IndirectLex(Token &Result) { Lex(Result); }
155 /// LexFromRawLexer - Lex a token from a designated raw lexer (one with no
160 Lex(Result);
446 /// LexTokenInternal - Internal interface to lex a preprocessing token. Calle
    [all...]
Preprocessor.h 21 #include "clang/Lex/Lexer.h"
22 #include "clang/Lex/MacroInfo.h"
23 #include "clang/Lex/ModuleMap.h"
24 #include "clang/Lex/PPCallbacks.h"
25 #include "clang/Lex/PTHLexer.h"
26 #include "clang/Lex/PTHManager.h"
27 #include "clang/Lex/TokenLexer.h"
357 /// going to lex in the cache and when it finishes the tokens are removed
377 /// "lex" next. If it points beyond the CachedTokens vector, it means that
378 /// a normal Lex() should be invoked
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 56 TGLexer Lex;
86 Lex(SrcMgr), CurMultiClass(0), Records(records) {}
97 return Error(Lex.getLoc(), Msg);
100 return Lex.getDependencies();
TGLexer.h 88 tgtok::TokKind Lex() {
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 71 MarkupLexer &Lex;
74 MarkupParser(MarkupLexer &lex, SourceMgr &SrcMgr) : Lex(lex), SM(SrcMgr) {}
126 StringRef::const_iterator Start = Lex.getPosition();
128 while(Lex.getNextChar() != ':') {
130 if (Lex.isEOF())
133 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"
15 #include "clang/Lex/MacroArgs.h"
17 #include "clang/Lex/LexDiagnostic.h"
18 #include "clang/Lex/MacroInfo.h"
19 #include "clang/Lex/Preprocessor.h"
419 /// Lex - Lex and return a token from this macro stream.
421 void TokenLexer::Lex(Token &Tok) {
434 // HandleEndOfTokenLexer may not return a token. If it doesn't, lex
    [all...]
PTHLexer.cpp 1 //===--- PTHLexer.cpp - Lex from a token stream ---------------------------===//
14 #include "clang/Lex/PTHLexer.h"
20 #include "clang/Lex/LexDiagnostic.h"
21 #include "clang/Lex/PTHManager.h"
22 #include "clang/Lex/Preprocessor.h"
23 #include "clang/Lex/Token.h"
46 void PTHLexer::Lex(Token& Tok) {
113 return PPCache->Lex(Tok);
124 return PP->Lex(Tok);
  /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 26 #include "clang/Lex/Lexer.h"
1340 ArrayRef<FormatToken *> lex() { function in class:clang::format::__anon17648::FormatTokenLexer
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 218 virtual const AsmToken &Lex();
311 /// current token is not set; clients should ensure Lex() is called
581 const AsmToken &AsmParser::Lex() {
582 const AsmToken *tok = &Lexer.Lex();
590 tok = &Lexer.Lex();
606 Lex();
689 Lex();
693 Lex();
701 Lex();
713 Lex();
    [all...]
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 

Completed in 1314 milliseconds