HomeSort by relevance Sort by last modified time
    Searched refs:Eof (Results 1 - 17 of 17) 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 25 Eof, Error,
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 228 // Store an artificial EOF token to ensure that we don't run off the end of
230 Token Eof;
231 Eof.startToken();
232 Eof.setKind(tok::eof);
233 Eof.setLocation(Tok.getLocation());
234 Toks.push_back(Eof);
365 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
433 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
444 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
    [all...]
ParseDecl.cpp 158 Token Eof;
159 Eof.startToken();
160 Eof.setLocation(Tok.getLocation());
161 LA->Toks.push_back(Eof);
    [all...]
  /external/llvm/lib/AsmParser/
LLToken.h 21 Eof, Error,
LLLexer.cpp 181 --CurPtr; // Another call to lex will return EOF again.
182 return EOF;
198 case EOF: return lltok::Eof;
254 if (CurPtr[0] == '\n' || CurPtr[0] == '\r' || getNextChar() == EOF)
271 if (CurChar == EOF) {
308 if (CurChar == EOF) {
373 if (kind == lltok::Error || kind == lltok::Eof)
LLParser.cpp 224 case lltok::Eof: return false;
    [all...]
  /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));
315 if (CurChar == EOF)
354 if (CurChar == EOF)
417 // If we're missing a newline at EOF, make sure we still get an
418 // EndOfStatement token before the Eof token
    [all...]
AsmParser.cpp 289 /// is initially unknown, set it to AsmToken::Eof. It will be set to the
320 /// will be either the EndOfStatement or EOF.
584 if (tok->is(AsmToken::Eof)) {
624 while (Lexer.isNot(AsmToken::Eof)) {
688 Lexer.isNot(AsmToken::Eof))
700 Lexer.isNot(AsmToken::Eof))
712 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/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/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 248 while (Lexer.Lex().isNot(AsmToken::Eof)) {
282 case AsmToken::Eof: Out->os() << "Eof"; break;

Completed in 1015 milliseconds