Searched refs:eof (Results 51 - 75 of 200) sorted by relevance

12345678

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DToken.h185 if (is(tok::eof)) return nullptr;
193 assert(is(tok::eof));
197 assert(is(tok::eof));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.cpp86 FakeEOF.Tok.setKind(tok::eof);
101 // \c getNextToken() after it has encountered the first eof token.
102 assert(!eof());
105 if (eof())
119 bool eof() { function in class:clang::format::__anon492::ScopedMacroState
274 // Create line with eof token.
388 } while (!eof());
393 // a closing brace or eof - note that getNextToken() will
507 } while (Tok->Tok.isNot(tok::eof) && !LBraceStack.empty());
562 if (eof())
2492 bool UnwrappedLineParser::eof() const { return FormatTok->Tok.is(tok::eof); } function in class:clang::format::UnwrappedLineParser
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_xz.c60 char eof; /* True = found end of compressed data. */ member in struct:private_data
648 state->eof = 0;
671 while (state->stream.avail_out > 0 && !state->eof) {
696 state->eof = 1;
720 if (state->eof) {
H A Darchive_read_support_filter_gzip.c66 char eof; /* True = found end of compressed data. */ member in struct:private_data
438 while (state->stream.avail_out > 0 && !state->eof) {
444 state->eof = 1;
H A Darchive_read_support_filter_lz4.c84 char eof; /* True = found end of compressed data. */ member in struct:private_data
303 if (state->eof) {
344 state->eof = 1;
369 state->eof = 1;
374 state->eof = 1;
/freebsd-11-stable/lib/libc/rpc/
H A Dgetnetconfig.c102 int eof; /* all entries has been read */ member in struct:netconfig_info
289 if (ni.eof == 1) {
320 ni.eof = 1;
412 ni.eof = ni.ref = 0;
474 if (ni.eof == 1) { /* that's all the entries */
501 if (stringp == NULL) { /* eof */
/freebsd-11-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DHTMLRewrite.cpp461 while (Tok.isNot(tok::eof)) {
512 while (!Tok.isAtStartOfLine() && Tok.isNot(tok::eof)) {
567 if (Tok.is(tok::eof)) break;
600 while (Tok.isNot(tok::eof)) {
632 while (!Tok.is(tok::eof) &&
/freebsd-11-stable/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-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dindex.c505 svn_boolean_t *eof,
514 &bytes_read, eof, scratch_pool));
515 SVN_ERR_ASSERT((eof && *eof) || bytes_read == sizeof(buffer));
518 if (!eof || !*eof)
541 svn_boolean_t *eof,
545 SVN_ERR(read_uint64_from_proto_index(proto_index, &value, eof,
547 if (!eof || !*eof)
503 read_uint64_from_proto_index(apr_file_t *proto_index, apr_uint64_t *value_p, svn_boolean_t *eof, apr_pool_t *scratch_pool) argument
539 read_uint32_from_proto_index(apr_file_t *proto_index, apr_uint32_t *value_p, svn_boolean_t *eof, apr_pool_t *scratch_pool) argument
571 read_off_t_from_proto_index(apr_file_t *proto_index, apr_off_t *value_p, svn_boolean_t *eof, apr_pool_t *scratch_pool) argument
639 read_l2p_entry_from_proto_index(apr_file_t *proto_index, l2p_proto_entry_t *entry, svn_boolean_t *eof, apr_pool_t *scratch_pool) argument
908 svn_boolean_t eof = FALSE; local
1874 svn_boolean_t eof = FALSE; local
2069 read_p2l_entry_from_proto_index(apr_file_t *proto_index, svn_fs_x__p2l_entry_t *entry, svn_boolean_t *eof, apr_pool_t *scratch_pool) argument
2089 read_p2l_sub_items_from_proto_index(apr_file_t *proto_index, svn_fs_x__p2l_entry_t *entry, svn_boolean_t *eof, apr_pool_t *scratch_pool) argument
2180 svn_boolean_t eof = FALSE; local
[all...]
H A Dlow_level.c224 svn_boolean_t eof; local
226 SVN_ERR(svn_stream_readline(stream, &header_str, "\n", &eof,
229 if (eof || header_str->len == 0)
816 svn_boolean_t eof = TRUE; local
823 SVN_ERR(svn_stream_readline(stream, &line, "\n", &eof, scratch_pool));
826 if (eof || (line->len == 0))
950 SVN_ERR(svn_stream_readline(stream, &line, "\n", &eof, result_pool));
952 if (eof || line->len == 0)
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dhash.c107 svn_boolean_t eof;
115 SVN_ERR(svn_stream_readline(stream, &buf, "\n", &eof, pool));
118 if ((!terminator && eof && buf->len == 0)
130 if (eof)
157 SVN_ERR(svn_stream_readline(stream, &buf, "\n", &eof, pool));
104 svn_boolean_t eof; local
H A Dstream.c336 svn_boolean_t *eof,
361 *eof = TRUE;
374 *eof = FALSE;
385 svn_boolean_t *eof,
391 SVN_ERR(stream->readline_fn(stream->baton, stringbuf, eol, eof, pool));
396 SVN_ERR(stream_readline_bytewise(stringbuf, eof, eol, stream, pool));
656 svn_boolean_t *eof,
660 eof, pool));
731 svn_boolean_t eof;
748 &eof, bt
333 stream_readline_bytewise(svn_stringbuf_t **stringbuf, svn_boolean_t *eof, const char *eol, svn_stream_t *stream, apr_pool_t *pool) argument
380 svn_stream_readline(svn_stream_t *stream, svn_stringbuf_t **stringbuf, const char *eol, svn_boolean_t *eof, apr_pool_t *pool) argument
647 readline_handler_disown(void *baton, svn_stringbuf_t **stringbuf, const char *eol, svn_boolean_t *eof, apr_pool_t *pool) argument
724 svn_boolean_t eof; local
871 readline_apr_lf(apr_file_t *file, svn_stringbuf_t **stringbuf, svn_boolean_t *eof, apr_pool_t *pool) argument
930 readline_apr_generic(apr_file_t *file, svn_stringbuf_t **stringbuf, const char *eol, svn_boolean_t *eof, apr_pool_t *pool) argument
990 readline_handler_apr(void *baton, svn_stringbuf_t **stringbuf, const char *eol, svn_boolean_t *eof, apr_pool_t *pool) argument
1698 readline_handler_stringbuf(void *baton, svn_stringbuf_t **stringbuf, const char *eol, svn_boolean_t *eof, apr_pool_t *pool) argument
1828 readline_handler_string(void *baton, svn_stringbuf_t **stringbuf, const char *eol, svn_boolean_t *eof, apr_pool_t *pool) argument
2128 readline_handler_lazyopen(void *baton, svn_stringbuf_t **stringbuf, const char *eol, svn_boolean_t *eof, apr_pool_t *pool) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_delta/
H A Dbranch.c1385 svn_boolean_t eof; local
1389 SVN_ERR(svn_stream_readline(stream, &line, "\n", &eof, scratch_pool));
1390 SVN_ERR_ASSERT(!eof);
1410 svn_boolean_t eof; local
1416 SVN_ERR(svn_stream_readline(stream, &line, "\n", &eof, scratch_pool));
1417 SVN_ERR_ASSERT(!eof);
1428 SVN_ERR(svn_stream_readline(stream, &line, "\n", &eof, scratch_pool));
1429 SVN_ERR_ASSERT(!eof);
1457 svn_boolean_t eof; local
1463 SVN_ERR(svn_stream_readline(stream, &line, "\n", &eof, scratch_poo
1591 svn_boolean_t eof; local
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dtrees.c867 void _tr_stored_block(s, buf, stored_len, eof)
871 int eof; /* true if this is the last block for a file */
873 send_bits(s, (STORED_BLOCK<<1)+eof, 3); /* send block type */
921 void _tr_flush_block(s, buf, stored_len, eof)
925 int eof; /* true if this is the last block for a file */
981 _tr_stored_block(s, buf, stored_len, eof);
988 send_bits(s, (STATIC_TREES<<1)+eof, 3);
994 send_bits(s, (DYN_TREES<<1)+eof, 3);
1008 if (eof) {
1015 s->compressed_len-7*eof));
[all...]
H A Ddeflate.h285 int eof));
288 int eof));
/freebsd-11-stable/contrib/binutils/bfd/
H A Dtekhex.c457 bfd_boolean eof = FALSE; local
462 while (! eof)
468 eof = (bfd_boolean) (bfd_bread (src, (bfd_size_type) 1, abfd) != 1);
469 while (*src != '%' && !eof)
470 eof = (bfd_boolean) (bfd_bread (src, (bfd_size_type) 1, abfd) != 1);
472 if (eof)
/freebsd-11-stable/sys/contrib/zlib/
H A Dgzread.c21 state->fd, and update state->eof, state->err, and state->msg as appropriate.
48 state->eof = 1;
52 /* Load up input buffer and set eof flag if last data loaded -- return -1 on
53 error, 0 otherwise. Note that the eof flag is set when the end of the input
67 if (state->eof == 0) {
154 state->eof = 1;
257 } while (state->x.have == 0 && (!state->eof || strm->avail_in));
281 else if (state->eof && state->strm.avail_in == 0)
334 else if (state->eof && state->strm.avail_in == 0) {
H A Dgzguts.h188 int eof; /* true if end of input file reached */ member in struct:__anon4336
/freebsd-11-stable/contrib/libstdc++/config/locale/generic/
H A Dc_locale.cc123 if (__p && static_cast<int_type>(__p) != char_traits<char>::eof()
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dostream_insert.h68 if (_Traits::eq_int_type(__put, _Traits::eof()))
/freebsd-11-stable/contrib/amd/conf/nfs_prot/
H A Dnfs_prot_freebsd3.h90 #define dl_eof eof
/freebsd-11-stable/lib/libutil/
H A Dgr_util.c171 int eof, readlen; local
194 eof = 0;
205 if (eof)
234 eof = 1;
/freebsd-11-stable/usr.sbin/cron/crontab/
H A Dcrontab.c508 int ch, eof; local
557 CheckErrorCount = 0; eof = FALSE;
558 while (!CheckErrorCount && !eof) {
561 eof = TRUE;
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DCommentBriefParser.cpp69 while (Tok.isNot(tok::eof)) {
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dlow_level.c304 svn_boolean_t eof = TRUE; local
312 SVN_ERR(svn_stream_readline(stream, &line, "\n", &eof, scratch_pool));
315 if (eof || (line->len == 0))
458 SVN_ERR(svn_stream_readline(stream, &line, "\n", &eof, scratch_pool));
460 if (eof || line->len == 0)
697 svn_boolean_t eof; local
699 SVN_ERR(svn_stream_readline(stream, &header_str, "\n", &eof,
702 if (eof || header_str->len == 0)

Completed in 394 milliseconds

12345678