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

1 2 3

  /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; }
Lex.java 27 public class Lex implements TokenId {
39 public Lex(String s) {
  /external/llvm/lib/TableGen/
TGParser.cpp 395 switch (Lex.getCode()) {
430 if (Lex.getCode() != tgtok::Id) {
435 Record *Result = Records.getClass(Lex.getCurStrVal());
437 TokError("Couldn't find class '" + Lex.getCurStrVal() + "'");
439 Lex.Lex();
449 if (Lex.getCode() != tgtok::Id) {
454 MultiClass *Result = MultiClasses[Lex.getCurStrVal()];
456 TokError("Couldn't find multiclass '" + Lex.getCurStrVal() + "'");
458 Lex.Lex()
    [all...]
TGParser.h 56 TGLexer Lex;
86 Lex(SrcMgr), CurMultiClass(0), Records(records) {}
97 return Error(Lex.getLoc(), Msg);
100 return Lex.getDependencies();
  /external/clang/unittests/Lex/
Makefile 1 ##===- unittests/Lex/Makefile ------------------------------*- Makefile -*-===##
11 TESTNAME = 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/llvm/lib/AsmParser/
LLParser.cpp 39 Lex.Lex();
222 switch (Lex.getKind()) {
291 assert(Lex.getKind() == lltok::kw_module);
292 Lex.Lex();
306 assert(Lex.getKind() == lltok::kw_target);
308 switch (Lex.Lex()) {
311 Lex.Lex()
    [all...]
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/
PTHLexer.h 17 #include "clang/Lex/PreprocessorLexer.h"
70 /// Lex - Return the next token.
71 void Lex(Token &Tok);
91 /// IndirectLex - An indirect call to 'Lex' that can be invoked via
93 void IndirectLex(Token &Result) { Lex(Result); }
TokenLexer.h 1 //===--- TokenLexer.h - Lex from a token buffer -----------------*- C++ -*-===//
58 /// CurToken - This is the next token that Lex will return.
138 /// Lex - Lex and return a token from this macro stream.
139 void Lex(Token &Tok);
148 /// isAtEnd - Return true if the next lex call will pop this macro off the
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 276 Lex();
280 Lex();
289 Lex();
302 Lex();
331 Lex();
337 Lex();
361 Lex();
373 Lex();
386 Lex();
392 Lex();
    [all...]
DarwinAsmParser.cpp 366 Lex();
401 Lex();
410 Lex();
426 Lex();
431 Lex();
455 Lex();
461 Lex();
480 Lex();
489 Lex();
519 Lex();
    [all...]
ELFAsmParser.cpp 187 Lex();
191 Lex();
218 Lex();
239 Lex();
250 Lex(); // Consume the "-".
253 Lex();
256 Lex();
364 Lex();
371 Lex();
378 Lex();
    [all...]
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/clang/lib/
Makefile 12 PARALLEL_DIRS = Headers Basic Lex Parse AST Sema CodeGen Analysis Frontend \
  /external/clang/unittests/
Makefile 17 PARALLEL_DIRS = Basic Lex
  /external/clang/lib/Parse/
ParsePragma.cpp 15 #include "clang/Lex/Preprocessor.h"
253 PP.Lex(Tok);
264 PP.Lex(Tok);
268 PP.Lex(Tok);
279 PP.Lex(Tok);
289 PP.Lex(Tok);
292 PP.Lex(Tok);
297 PP.Lex(Tok);
300 PP.Lex(Tok);
303 PP.Lex(Tok)
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 933 Parser.Lex(); // Eat register token.
957 Parser.Lex(); // Eat dollar token.
963 Parser.Lex(); // Eat the parenthesis.
967 Parser.Lex(); // Eat the dollar
976 Parser.Lex();
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 69 const AsmToken &Lex() { return getParser().Lex(); }
  /external/clang/lib/Rewrite/Frontend/
RewriteMacros.cpp 17 #include "clang/Lex/Preprocessor.h"
66 // Create a lexer to lex all the tokens of the main file in raw mode. Even
106 PP.Lex(PPTok);
119 PP.Lex(PPTok);
160 PP.Lex(PPTok);
199 PP.Lex(PPTok);
  /external/clang/
Android.mk 17 lib/Lex \
  /external/clang/lib/Lex/
PPCaching.cpp 15 #include "clang/Lex/Preprocessor.h"
21 /// make the Preprocessor re-lex the same tokens.
38 /// Backtrack - Make Preprocessor re-lex the tokens that were lexed since
58 Lex(Result);
91 Lex(CachedTokens.back());
Pragma.cpp 15 #include "clang/Lex/Pragma.h"
18 #include "clang/Lex/HeaderSearch.h"
19 #include "clang/Lex/LexDiagnostic.h"
20 #include "clang/Lex/LiteralSupport.h"
21 #include "clang/Lex/MacroInfo.h"
22 #include "clang/Lex/Preprocessor.h"
102 /// HandlePragmaDirective - The "\#pragma" directive has been parsed. Lex the
167 // In that case we don't actually "activate" the pragma now, we only lex it
183 Lex(Tok);
190 Lex(Tok)
    [all...]
  /external/clang/include/clang/
Makefile 2 DIRS := AST Basic Driver Lex Parse Sema Serialization

Completed in 450 milliseconds

1 2 3