HomeSort by relevance Sort by last modified time
    Searched refs:Lex (Results 1 - 25 of 166) sorted by null

1 2 3 4 5 6 7

  /external/swiftshader/third_party/LLVM/lib/TableGen/
TGParser.cpp 310 if (Lex.getCode() != tgtok::Id)
313 std::string Ret = Lex.getCurStrVal();
314 Lex.Lex();
325 if (Lex.getCode() != tgtok::Id) {
330 Record *Result = Records.getClass(Lex.getCurStrVal());
332 TokError("Couldn't find class '" + Lex.getCurStrVal() + "'");
334 Lex.Lex();
344 if (Lex.getCode() != tgtok::Id)
    [all...]
  /external/javassist/src/main/javassist/compiler/
SyntaxError.java 19 public SyntaxError(Lex lexer) {
CompileError.java 22 private Lex lex; field in class:CompileError
25 public CompileError(String s, Lex l) {
27 lex = l;
32 lex = null;
43 public Lex getLex() { return lex; }
  /external/llvm/lib/TableGen/
TGParser.cpp 378 switch (Lex.getCode()) {
413 if (Lex.getCode() != tgtok::Id) {
418 Record *Result = Records.getClass(Lex.getCurStrVal());
420 TokError("Couldn't find class '" + Lex.getCurStrVal() + "'");
422 Lex.Lex();
432 if (Lex.getCode() != tgtok::Id) {
437 MultiClass *Result = MultiClasses[Lex.getCurStrVal()].get();
439 TokError("Couldn't find multiclass '" + Lex.getCurStrVal() + "'");
441 Lex.Lex()
    [all...]
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLParser.cpp 39 Lex.Lex();
169 switch (Lex.getKind()) {
235 assert(Lex.getKind() == lltok::kw_module);
236 Lex.Lex();
250 assert(Lex.getKind() == lltok::kw_target);
252 switch (Lex.Lex()) {
255 Lex.Lex()
    [all...]
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/llvm/lib/AsmParser/
LLParser.cpp 50 Lex.Lex();
54 Lex.getLoc(),
64 Lex.Lex();
69 if (Lex.getKind() != lltok::Eof)
70 return Error(Lex.getLoc(), "expected end of string");
77 Lex.Lex();
80 SMLoc Start = Lex.getLoc()
    [all...]
LLParser.h 92 LLLexer Lex;
145 : Context(M->getContext()), Lex(F, SM, Err, M->getContext()), M(M),
159 return Lex.Error(L, Msg);
162 return Error(Lex.getLoc(), Msg);
182 if (Lex.getKind() != T) return false;
183 Lex.Lex();
190 switch (Lex.getKind()) {
191 case lltok::kw_fast: FMF.setUnsafeAlgebra(); Lex.Lex(); continue
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
COFFAsmParser.cpp 153 Lex();
157 Lex();
166 Lex();
184 Lex();
196 Lex();
209 Lex();
215 Lex();
230 Lex();
236 Lex();
242 Lex();
    [all...]
ELFAsmParser.cpp 180 Lex();
184 Lex();
192 Lex();
208 Lex();
229 Lex();
240 Lex(); // Consume the "-".
243 Lex();
246 Lex();
349 Lex();
355 Lex();
    [all...]
AsmParser.cpp 150 const AsmToken &Lex();
184 /// current token is not set; clients should ensure Lex() is called
435 const AsmToken &AsmParser::Lex() {
436 const AsmToken *tok = &Lexer.Lex();
444 tok = &Lexer.Lex();
460 Lex();
532 Lex();
536 Lex();
544 Lex();
560 Lex();
    [all...]
  /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);
153 MarkupLexer Lex(InputSource);
154 MarkupParser Parser(Lex, SrcMgr)
    [all...]
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 285 Lex();
289 Lex();
306 Lex();
319 Lex();
348 Lex();
354 Lex();
364 Lex();
377 Lex();
406 Lex();
418 Lex();
    [all...]
ELFAsmParser.cpp 176 Lex();
180 Lex();
191 Lex();
207 Lex();
228 Lex();
242 Lex();
245 Lex();
248 Lex();
312 Lex(); // Eat the #.
329 Lex(); // Eat the flag
    [all...]
AsmParser.cpp 226 const AsmToken &Lex() override;
262 Lexer.Lex();
267 Lex();
278 Lex();
286 Lex();
356 /// current token is not set; clients should ensure Lex() is called
662 const AsmToken &AsmParser::Lex() {
674 const AsmToken *tok = &Lexer.Lex();
680 tok = &Lexer.Lex();
689 return Lex();
    [all...]
  /external/clang/include/clang/Lex/
PTHLexer.h 17 #include "clang/Lex/PreprocessorLexer.h"
69 /// Lex - Return the next token.
70 bool Lex(Token &Tok);
90 /// IndirectLex - An indirect call to 'Lex' that can be invoked via
92 void IndirectLex(Token &Result) override { Lex(Result); }
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 17 #include "clang/Lex/PreprocessorLexer.h"
69 /// Lex - Return the next token.
70 bool Lex(Token &Tok);
90 /// IndirectLex - An indirect call to 'Lex' that can be invoked via
92 void IndirectLex(Token &Result) override { Lex(Result); }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 17 #include "clang/Lex/PreprocessorLexer.h"
69 /// Lex - Return the next token.
70 bool Lex(Token &Tok);
90 /// IndirectLex - An indirect call to 'Lex' that can be invoked via
92 void IndirectLex(Token &Result) override { Lex(Result); }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 17 #include "clang/Lex/PreprocessorLexer.h"
69 /// Lex - Return the next token.
70 bool Lex(Token &Tok);
90 /// IndirectLex - An indirect call to 'Lex' that can be invoked via
92 void IndirectLex(Token &Result) override { Lex(Result); }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 17 #include "clang/Lex/PreprocessorLexer.h"
69 /// Lex - Return the next token.
70 bool Lex(Token &Tok);
90 /// IndirectLex - An indirect call to 'Lex' that can be invoked via
92 void IndirectLex(Token &Result) override { Lex(Result); }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 17 #include "clang/Lex/PreprocessorLexer.h"
69 /// Lex - Return the next token.
70 bool Lex(Token &Tok);
90 /// IndirectLex - An indirect call to 'Lex' that can be invoked via
92 void IndirectLex(Token &Result) override { Lex(Result); }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 17 #include "clang/Lex/PreprocessorLexer.h"
69 /// Lex - Return the next token.
70 bool Lex(Token &Tok);
90 /// IndirectLex - An indirect call to 'Lex' that can be invoked via
92 void IndirectLex(Token &Result) override { Lex(Result); }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 17 #include "clang/Lex/PreprocessorLexer.h"
69 /// Lex - Return the next token.
70 bool Lex(Token &Tok);
90 /// IndirectLex - An indirect call to 'Lex' that can be invoked via
92 void IndirectLex(Token &Result) override { Lex(Result); }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 17 #include "clang/Lex/PreprocessorLexer.h"
69 /// Lex - Return the next token.
70 bool Lex(Token &Tok);
90 /// IndirectLex - An indirect call to 'Lex' that can be invoked via
92 void IndirectLex(Token &Result) override { Lex(Result); }
  /external/clang/lib/Lex/
PreprocessorLexer.cpp 14 #include "clang/Lex/PreprocessorLexer.h"
16 #include "clang/Lex/LexDiagnostic.h"
17 #include "clang/Lex/Preprocessor.h"
30 /// \brief After the preprocessor has parsed a \#include, lex and
40 // Lex the filename.
44 PP->Lex(FilenameTok);

Completed in 458 milliseconds

1 2 3 4 5 6 7