HomeSort by: relevance | last modified time | path
    Searched defs:Eof (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Object/
COFFModuleDefinition.cpp 35 Eof,
95 return Token(Eof);
99 return Token(Eof);
155 } while (Tok.K != Eof);
188 case Eof:
  /src/external/bsd/openldap/dist/libraries/liblmdb/
mdb_load.c 37 static int Eof;
188 if (c == EOF) {
189 Eof = 1;
190 return EOF;
196 Eof = 1;
198 return EOF;
201 return EOF;
206 Eof = 1;
207 return EOF;
219 Eof = 1
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseCXXInlineMethods.cpp 211 // Store an artificial EOF token to ensure that we don't run off the end of
213 Token Eof;
214 Eof.startToken();
215 Eof.setKind(tok::eof);
216 Eof.setLocation(Tok.getLocation());
217 Eof.setEofData(VarD);
218 Toks.push_back(Eof);
354 DefArgEnd.setKind(tok::eof);
386 if (Tok.isNot(tok::eof) || Tok.getEofData() != Param)
    [all...]
ParseObjc.cpp 328 if (Tok.is(tok::eof))
781 // EOF. In the former case, eat the @end. In the later case, emit an error.
798 // This passes in an invalid SourceLocation for AtEndLoc when EOF is hit.
1795 if (Tok.is(tok::eof)) // Nothing else to do here...
1845 if (Tok.is(tok::eof))
3650 // Store an artificial EOF token to ensure that we don't run off the end of
3652 Token Eof;
3653 Eof.startToken();
3654 Eof.setKind(tok::eof);
    [all...]
ParseDecl.cpp 234 Token Eof;
235 Eof.startToken();
236 Eof.setLocation(Tok.getLocation());
237 LA->Toks.push_back(Eof);
1937 case tok::eof:
4271 Tok.isNot(tok::eof)) {
6703 && (!Tok.is(tok::eof) &&
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAsmMacro.h 25 Eof, Error,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MILexer.h 29 Eof,
189 bool isNewlineOrEOF() const { return Kind == Newline || Kind == Eof; }
191 bool isErrorOrEOF() const { return Kind == Error || Kind == Eof; }
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGLexer.h 34 Eof, Error,
88 tgtok::TokKind CurCode = tgtok::TokKind::Eof;
153 // Process EOF encountered in LexToken().
154 // If EOF is met in an include file, then the method will update
156 // If EOF is met in the top-level file, then the method will
207 // EOF
210 // EOF
339 // or EOF, CurPtr is set to point to this symbol. The method returns false,
373 // Report an error, if we reach EOF with non-empty preprocessing control
  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLToken.h 20 Eof,

Completed in 83 milliseconds