Searched refs:eof (Results 26 - 50 of 176) sorted by relevance

12345678

/freebsd-current/contrib/llvm-project/libcxx/include/__string/
H A Dchar_traits.h71 static int_type eof();
160 return eq_int_type(__c, eof()) ? ~eof() : __c;
171 static inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR int_type eof() _NOEXCEPT { return int_type(EOF); }
257 return eq_int_type(__c, eof()) ? ~eof() : __c;
268 static inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR int_type eof() _NOEXCEPT { return int_type(EOF); }
334 return eq_int_type(__c, eof()) ? ~eof() : __c;
345 static inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR int_type eof() _NOEXCEP
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp231 Eof.setKind(tok::eof);
370 DefArgEnd.setKind(tok::eof);
403 if (Tok.isNot(tok::eof) || Tok.getEofData() != Param) {
418 while (Tok.isNot(tok::eof))
421 if (Tok.is(tok::eof) && Tok.getEofData() == Param)
451 ExceptionSpecEnd.setKind(tok::eof);
494 if (Tok.isNot(tok::eof) || Tok.getEofData() != LM.Method)
507 while (Tok.isNot(tok::eof))
511 if (Tok.is(tok::eof) && Tok.getEofData() == LM.Method)
544 BodyEnd.setKind(tok::eof);
[all...]
/freebsd-current/usr.sbin/config/
H A Dmkmakefile.cc408 if (wd.eof()) {
416 while (!(wd = get_word(fp)).eof() && !wd.eol())
422 if (wd.eof() || wd.eol())
427 while (!(wd = get_word(fp)).eof() && !wd.eol())
433 if (wd.eof())
460 if (wd.eof())
498 if (wd.eof() || wd.eol())
506 if (wd.eof() || wd.eol())
514 if (wd.eof() || wd.eol())
522 if (wd.eof() || w
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DTokenBufferTokenManager.h32 // Handle 'eof' separately, calling text() on it produces an empty string.
35 if (Token->kind() == tok::eof)
36 return "<eof>";
/freebsd-current/crypto/openssl/crypto/store/
H A Dstore_register.c119 loader->eof = eof_function;
187 if (loader->open == NULL || loader->load == NULL || loader->eof == NULL
222 template.eof = NULL;
253 template.eof = NULL;
H A Dstore_local.h93 OSSL_STORE_eof_fn eof; member in struct:ossl_store_loader_st
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_bzip2.c55 char eof; /* True = found end of compressed data. */ member in struct:private_data
224 if (state->eof) {
237 state->eof = 1;
292 state->eof = 1;
H A Darchive_read_support_filter_xz.c58 char eof; /* True = found end of compressed data. */ member in struct:private_data
643 state->eof = 0;
669 while (state->stream.avail_out > 0 && !state->eof) {
694 state->eof = 1;
714 state->eof) {
718 if (!state->eof)
727 if (state->eof) {
/freebsd-current/contrib/bmake/unit-tests/
H A Dcond-eof.mk1 # $NetBSD: cond-eof.mk,v 1.6 2023/11/19 21:47:52 rillig Exp $
/freebsd-current/contrib/kyua/utils/
H A Dstream.cpp143 if (input.good() || input.eof()) {
H A Dunits.cpp150 if (input.good() || input.eof()) {
/freebsd-current/contrib/llvm-project/clang/lib/Rewrite/
H A DTokenRewriter.cpp40 while (RawTok.isNot(tok::eof)) {
H A DHTMLRewrite.cpp462 while (Tok.isNot(tok::eof)) {
513 while (!Tok.isAtStartOfLine() && Tok.isNot(tok::eof)) {
568 if (Tok.is(tok::eof)) break;
601 while (Tok.isNot(tok::eof)) {
633 while (!Tok.is(tok::eof) &&
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DCommentBriefParser.cpp60 while (Tok.isNot(tok::eof)) {
/freebsd-current/contrib/llvm-project/libcxx/include/__iterator/
H A Dostreambuf_iterator.h56 if (__sbuf_ && traits_type::eq_int_type(__sbuf_->sputc(__c), traits_type::eof()))
/freebsd-current/contrib/openpam/t/
H A Dt_openpam_readlinev.c62 orlv_expect(struct t_file *tf, const char **expectedv, int lines, int eof) argument
102 if (eof && !t_feof(tf)) {
105 } else if (!eof && t_feof(tf)) {
162 ret = orlv_expect(tf, NULL, 0 /*lines*/, 1 /*eof*/);
175 ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
188 ret = orlv_expect(tf, NULL, 0 /*lines*/, 1 /*eof*/);
201 ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
214 ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
227 ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
240 ret = orlv_expect(tf, hello_world, 2 /*lines*/, 0 /*eof*/)
[all...]
/freebsd-current/contrib/nvi/vi/
H A Dv_paragraph.c107 goto eof;
126 goto eof;
170 eof: if (vp->m_start.lno == lno || vp->m_start.lno == lno - 1) {
/freebsd-current/contrib/llvm-project/clang/include/clang/Lex/
H A DToken.h192 if (is(tok::eof)) return nullptr;
200 assert(is(tok::eof));
204 assert(is(tok::eof));
/freebsd-current/contrib/llvm-project/clang/lib/Format/
H A DMacroExpander.cpp92 if (!Current->isOneOf(tok::equal, tok::eof))
101 while (Current->isNot(tok::eof)) {
231 assert(Result.size() >= 1 && Result.back()->is(tok::eof));
H A DUnwrappedLineParser.cpp214 // Create line with eof token.
215 assert(eof());
303 } while (!eof());
326 } while (!eof());
470 } while (!eof());
477 // a closing brace or eof - note that getNextToken() will
504 } while (NextTok->NewlinesBefore == 0 && NextTok->isNot(tok::eof));
603 !FormatTok->Previous && NextTok->is(tok::eof) &&
642 } while (Tok->isNot(tok::eof) && !LBraceStack.empty());
812 if (eof())
4494 bool UnwrappedLineParser::eof() const { return FormatTok->is(tok::eof); } function in class:clang::format::UnwrappedLineParser
[all...]
/freebsd-current/usr.bin/lam/
H A Dlam.c54 short eof; /* eof flag */ member in struct:openfile
208 if (ip->eof)
215 ip->eof = 1;
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A DextractExternal.cpp251 if (f.eof()) {
270 if (f.eof())
306 if (in.eof())
318 if (in.eof())
351 if (in.eof())
/freebsd-current/lib/libc/rpc/
H A Dgetnetconfig.c98 int eof; /* all entries has been read */ member in struct:netconfig_info
285 if (ni.eof == 1) {
316 ni.eof = 1;
408 ni.eof = ni.ref = 0;
470 if (ni.eof == 1) { /* that's all the entries */
497 if (stringp == NULL) { /* eof */
/freebsd-current/contrib/bearssl/tools/
H A Dtwrch.c135 int eof; local
138 eof = !ReadFile(GetStdHandle(STD_INPUT_HANDLE),
146 eof = 1;
148 eof = 0;
151 if (eof) {
178 int eof; local
181 eof = !WriteFile(GetStdHandle(STD_OUTPUT_HANDLE),
189 eof = 1;
191 eof = 0;
194 if (eof) {
[all...]
/freebsd-current/sys/contrib/zstd/zlibWrapper/
H A Dgzread.c29 state.state->fd, and update state.state->eof, state.state->err, and state.state->msg as appropriate.
56 state.state->eof = 1;
60 /* Load up input buffer and set eof flag if last data loaded -- return -1 on
61 error, 0 otherwise. Note that the eof flag is set when the end of the input
75 if (state.state->eof == 0) {
163 state.state->eof = 1;
266 } while (state.state->x.have == 0 && (!state.state->eof || strm->avail_in));
290 else if (state.state->eof && state.state->strm.avail_in == 0)
343 else if (state.state->eof && state.state->strm.avail_in == 0) {

Completed in 513 milliseconds

12345678