Searched refs:eof (Results 76 - 100 of 176) sorted by relevance

12345678

/freebsd-current/sys/contrib/zstd/zlibWrapper/
H A Dgzlib.c83 state.state->eof = 0; /* not at end of file */
407 state.state->eof = 0;
570 state.state->eof = 0;
/freebsd-current/usr.bin/tip/tip/
H A Dcmds.c132 int ct, eof; local
165 eof = read(FD, &c, 1) <= 0;
169 if (eof || any(c, eofchars))
/freebsd-current/usr.sbin/config/
H A Dmain.cc339 return (configword().eof(true));
363 return (configword().eof(true));
385 return (configword().eof(true));
430 return (configword().eof(true));
/freebsd-current/contrib/llvm-project/clang/lib/Lex/
H A DPPLexerChange.cpp451 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
549 CurLexer->FormTokenWithChars(Result, EndPos, tok::eof);
675 while (Tok.isNot(tok::eod) && Tok.isNot(tok::eof))
H A DPreprocessor.cpp647 if (Tok.is(tok::eof) && !InPredefines) {
973 if (Tok.isOneOf(tok::unknown, tok::eof, tok::eod,
1018 if (FilenameTok.isOneOf(tok::eod, tok::eof)) {
1106 case tok::eof:
1232 Result.setKind(tok::eof);
1268 if (NamedModuleImportPath.empty() || Result.is(tok::eof))
/freebsd-current/contrib/kyua/utils/fs/
H A Doperations.cpp343 if (input.good() || input.eof())
346 if (!input.good() && !input.eof())
/freebsd-current/usr.bin/gzip/
H A Dzuncompress.c232 goto eof;
322 eof: return (num - count);
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp412 // Returns false when eof is reached and true otherwise.
418 if (Tok.is(comments::tok::eof))
460 for (L.lex(Tok); Tok.isNot(comments::tok::eof); L.lex(Tok)) {
/freebsd-current/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DSourceCode.cpp238 case tok::eof:
356 case tok::eof:
/freebsd-current/contrib/llvm-project/clang/lib/Parse/
H A DParsePragma.cpp1051 // until eof (really end of line) to prevent follow-on errors.
1052 while (Tok.isNot(tok::eof))
1129 if (Tok.isNot(tok::eof)) {
1134 PP.Lex(Tok); // eof
1211 if (Tok.isNot(tok::eof)) {
1216 PP.Lex(Tok); // eof
1276 ExpectAndConsume(tok::eof, diag::warn_pragma_extra_tokens_at_eol,
1329 if (ExpectAndConsume(tok::eof, diag::warn_pragma_extra_tokens_at_eol,
1388 ExpectAndConsume(tok::eof, diag::warn_pragma_extra_tokens_at_eol,
1440 // The constant expression is always followed by an eof toke
[all...]
H A DParseHLSL.cpp78 while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
/freebsd-current/contrib/kyua/utils/
H A Dunits_test.cpp187 ATF_REQUIRE(input.eof());
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DDataExtractor.h655 /// error state of the cursor. The only way both eof and error states can be
658 bool eof(const Cursor &C) const { return size() == C.Offset; } function in class:llvm::DataExtractor
/freebsd-current/contrib/bc/src/
H A Dbc_lex.c127 if (BC_ERR(c == '\0') && !vm->eof && l->mode != BC_MODE_FILE)
H A Dlex.c97 if (!vm->eof && l->mode != BC_MODE_FILE)
/freebsd-current/lib/libfetch/
H A Dftp.c482 int eof; /* EOF reached */ member in struct:ftpio
510 if (io->eof)
516 io->eof = 1;
607 io->eof = io->err = 0;
/freebsd-current/sys/dev/ocs_fc/
H A Docs_ioctl.h333 uint8_t eof; /*<< EOF Value */ member in struct:__anon4017
/freebsd-current/contrib/bmake/unit-tests/
H A Descape.mk212 all: cmd-1bsnl-eof
213 cmd-1bsnl-eof:
/freebsd-current/contrib/llvm-project/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp677 if (Tok.is(tok::eof) ||
925 if (Tok.is(tok::eof)) break;
946 while (Tok.isNot(tok::eof));
1031 if (Tok.is(tok::eof) || !Tok.getLocation().isFileID())
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DELFAttributeParser.cpp210 while (!de.eof(cursor)) {
/freebsd-current/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.h219 bool eof() const;
H A DDefinitionBlockSeparator.cpp93 if (TargetToken->is(tok::eof))
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DRawMemProfReader.h67 return make_error<InstrProfError>(instrprof_error::eof);
/freebsd-current/tests/sys/fs/fusefs/
H A Dbmap.cc185 TEST_P(BmapEof, eof)
/freebsd-current/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp282 return error(instrprof_error::eof);
289 return error(instrprof_error::eof);
296 return error(instrprof_error::eof);
303 return error(instrprof_error::eof);
393 return error(instrprof_error::eof);
514 return make_error<InstrProfError>(instrprof_error::eof);
954 return make_error<InstrProfError>(instrprof_error::eof);

Completed in 165 milliseconds

12345678