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

  /external/lzma/CPP/Common/
StdInStream.h 26 bool Eof();
StdInStream.cpp 56 if (intChar == EOF)
90 while ((c = GetChar()) != EOF)
94 bool CStdInStream::Eof()
102 if (c == EOF && !Eof())
  /external/llvm/lib/TableGen/
TGLexer.h 32 Eof, Error,
TGLexer.cpp 69 --CurPtr; // Another call to lex will return EOF again.
70 return EOF;
101 case EOF: return tgtok::Eof;
354 case EOF:
441 if (Char == EOF) break;
446 if (Char == EOF) break;
TGParser.cpp     [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 26 Eof, Error,
  /external/llvm/lib/AsmParser/
LLToken.h 21 Eof, Error,
LLLexer.cpp 185 --CurPtr; // Another call to lex will return EOF again.
186 return EOF;
202 case EOF: return lltok::Eof;
252 if (CurPtr[0] == '\n' || CurPtr[0] == '\r' || getNextChar() == EOF)
269 if (CurChar == EOF) {
318 if (CurChar == EOF) {
347 if (CurChar == EOF) {
412 if (kind == lltok::Error || kind == lltok::Eof)
LLParser.cpp 236 case lltok::Eof: return false;
    [all...]
  /external/chromium_org/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/clang/lib/Parse/
ParseCXXInlineMethods.cpp 215 // Store an artificial EOF token to ensure that we don't run off the end of
217 Token Eof;
218 Eof.startToken();
219 Eof.setKind(tok::eof);
220 Eof.setLocation(Tok.getLocation());
221 Toks.push_back(Eof);
360 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
428 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
439 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
    [all...]
ParseDecl.cpp 178 Token Eof;
179 Eof.startToken();
180 Eof.setLocation(Tok.getLocation());
181 LA->Toks.push_back(Eof);
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 64 --CurPtr; // Another call to lex will return EOF again.
65 return EOF;
181 case EOF:
199 while (CurChar != '\n' && CurChar != '\r' && CurChar != EOF)
202 if (CurChar == EOF)
203 return AsmToken(AsmToken::Eof, StringRef(TokStart, 0));
369 if (CurChar == EOF)
408 if (CurChar == EOF)
491 // If we're missing a newline at EOF, make sure we still get an
492 // EndOfStatement token before the Eof token
    [all...]
AsmParser.cpp 319 /// will be either the EndOfStatement or EOF.
603 if (tok->is(AsmToken::Eof)) {
644 while (Lexer.isNot(AsmToken::Eof)) {
711 while (Lexer.isNot(AsmToken::EndOfStatement) && Lexer.isNot(AsmToken::Eof))
722 while (Lexer.isNot(AsmToken::EndOfStatement) && Lexer.isNot(AsmToken::Eof))
733 Lexer.isNot(AsmToken::Comma) && Lexer.isNot(AsmToken::Eof))
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 248 while (Lexer.Lex().isNot(AsmToken::Eof)) {
282 case AsmToken::Eof: Out->os() << "Eof"; break;

Completed in 344 milliseconds