HomeSort by relevance Sort by last modified time
    Searched refs:Eof (Results 1 - 16 of 16) sorted by null

  /external/llvm/lib/TableGen/
TGLexer.h 31 Eof, Error,
TGLexer.cpp 68 --CurPtr; // Another call to lex will return EOF again.
69 return EOF;
100 case EOF: return tgtok::Eof;
344 case EOF:
431 if (Char == EOF) break;
436 if (Char == EOF) break;
TGParser.cpp     [all...]
  /external/valgrind/tsan/
suppressions.cc 74 bool Eof() { return next_ >= end_; }
120 while (!Eof() && *next_ != '\n') {
138 while (!Eof()) {
ts_race_verifier.cc 336 bool Eof() {
365 while (!ss.Eof()) {
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 26 Eof, Error,
  /external/llvm/lib/AsmParser/
LLToken.h 21 Eof, Error,
LLLexer.cpp 209 --CurPtr; // Another call to lex will return EOF again.
210 return EOF;
226 case EOF: return lltok::Eof;
281 if (CurPtr[0] == '\n' || CurPtr[0] == '\r' || getNextChar() == EOF)
298 if (CurChar == EOF) {
335 if (CurChar == EOF) {
398 if (kind == lltok::Error || kind == lltok::Eof)
LLParser.cpp 171 case lltok::Eof: return false;
    [all...]
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 209 // Store an artificial EOF token to ensure that we don't run off the end of
211 Token Eof;
212 Eof.startToken();
213 Eof.setKind(tok::eof);
214 Eof.setLocation(Tok.getLocation());
215 Toks.push_back(Eof);
334 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
397 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
408 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
    [all...]
ParseDecl.cpp 146 Token Eof;
147 Eof.startToken();
148 Eof.setLocation(Tok.getLocation());
149 LA->Toks.push_back(Eof);
777 while (Tok.getLocation() != OrigLoc && Tok.isNot(tok::eof))
    [all...]
  /external/llvm/lib/MC/MCDisassembler/
EDDisassembler.cpp 387 if (NextToken.isNot(AsmToken::Eof) &&
400 SpecificAsmLexer->isNot(AsmToken::Eof) &&
  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 64 --CurPtr; // Another call to lex will return EOF again.
65 return EOF;
132 case EOF:
150 while (CurChar != '\n' && CurChar != '\r' && CurChar != EOF)
153 if (CurChar == EOF)
154 return AsmToken(AsmToken::Eof, StringRef(CurPtr, 0));
277 if (CurChar == EOF)
316 if (CurChar == EOF)
379 // If we're missing a newline at EOF, make sure we still get an
380 // EndOfStatement token before the Eof token
    [all...]
AsmParser.cpp 194 /// will be either the EndOfStatement or EOF.
440 if (tok->is(AsmToken::Eof)) {
468 while (Lexer.isNot(AsmToken::Eof)) {
534 Lexer.isNot(AsmToken::Eof))
546 Lexer.isNot(AsmToken::Eof))
    [all...]
  /external/chromium/testing/gtest/scripts/
pump.py 114 if self == Eof():
115 return 'EOF'
132 def Eof():
142 self.start = Eof()
146 self.end = Eof()
211 if end == Eof():
314 yield MakeToken(lines, pos, Eof(), 'code')
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 265 while (Lexer.Lex().isNot(AsmToken::Eof)) {
302 case AsmToken::Eof: Out->os() << "Eof"; break;

Completed in 208 milliseconds