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

  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 69 const AsmToken &Lex() { return getParser().Lex(); }
MCAsmLexer.h 96 /// is safe to store across calls to Lex().
100 // also not generally what we want (it is nicer for recovery etc. to lex 123br
142 /// Lex - Consume the next token from the input stream and return it.
146 const AsmToken &Lex() {
  /external/llvm/include/llvm/MC/
MCTargetAsmLexer.h 57 /// Lex - Consume the next token from the input stream and return it.
58 const AsmToken &Lex() {
  /external/llvm/lib/TableGen/
TGParser.h 46 TGLexer Lex;
69 Lex(SrcMgr), CurMultiClass(0), Records(records) {}
80 return Error(Lex.getLoc(), Msg);
83 return Lex.getDependencies();
TGLexer.h 83 tgtok::TokKind Lex() {
  /external/llvm/lib/AsmParser/
LLLexer.h 51 lltok::Kind Lex() {
LLParser.h 89 LLLexer Lex;
128 Context(m->getContext()), Lex(F, SM, Err, m->getContext()),
137 return Lex.Error(L, Msg);
140 return Error(Lex.getLoc(), Msg);
152 if (Lex.getKind() != T) return false;
153 Lex.Lex();
157 if (Lex.getKind() != T) {
161 *Loc = Lex.getLoc();
162 Lex.Lex()
    [all...]
  /external/clang/include/clang/Lex/
Lexer.h 17 #include "clang/Lex/PreprocessorLexer.h"
61 /// whitespace preservation can be useful for some clients that want to lex
128 /// 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);
347 /// LexTokenInternal - Internal interface to lex a preprocessing token. Calle
    [all...]
Preprocessor.h 17 #include "clang/Lex/MacroInfo.h"
18 #include "clang/Lex/Lexer.h"
19 #include "clang/Lex/PTHLexer.h"
20 #include "clang/Lex/PPCallbacks.h"
21 #include "clang/Lex/TokenLexer.h"
22 #include "clang/Lex/PTHManager.h"
283 /// going to lex in the cache and when it finishes the tokens are removed
303 /// "lex" next. If it points beyond the CachedTokens vector, it means that
304 /// a normal Lex() should be invoked.
555 /// make the Preprocessor re-lex the same tokens
    [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/MacroInfo.h"
17 #include "clang/Lex/Preprocessor.h"
19 #include "clang/Lex/LexDiagnostic.h"
357 /// Lex - Lex and return a token from this macro stream.
359 void TokenLexer::Lex(Token &Tok) {
372 // HandleEndOfTokenLexer may not return a token. If it doesn't, lex
374 return PPCache.Lex(Tok)
    [all...]
PTHLexer.cpp 1 //===--- PTHLexer.cpp - Lex from a token stream ---------------------------===//
19 #include "clang/Lex/LexDiagnostic.h"
20 #include "clang/Lex/PTHLexer.h"
21 #include "clang/Lex/Preprocessor.h"
22 #include "clang/Lex/PTHManager.h"
23 #include "clang/Lex/Token.h"
24 #include "clang/Lex/Preprocessor.h"
47 void PTHLexer::Lex(Token& Tok) {
114 return PPCache->Lex(Tok);
125 return PP->Lex(Tok)
    [all...]
  /external/javassist/src/main/javassist/compiler/
Lex.java 27 public class Lex implements TokenId {
39 public Lex(String s) {
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 152 const AsmToken &Lex();
186 /// current token is not set; clients should ensure Lex() is called
437 const AsmToken &AsmParser::Lex() {
438 const AsmToken *tok = &Lexer.Lex();
446 tok = &Lexer.Lex();
462 Lex();
535 Lex();
539 Lex();
547 Lex();
563 Lex();
    [all...]

Completed in 4341 milliseconds