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

1234567

/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DMacroArgs.cpp105 for (; ArgPtr->isNot(tok::eof); ++ArgPtr)
121 if (Result->is(tok::eof))
135 for (; ArgTok->isNot(tok::eof); ++ArgTok)
176 } while (Result.back().isNot(tok::eof));
210 for (; ArgToks->isNot(tok::eof); ++ArgToks) {
/freebsd-10.0-release/contrib/groff/src/utils/tfmtodit/
H A Dtfmtodit.cpp429 goto eof;
431 goto eof;
435 goto eof;
449 goto eof;
454 goto eof;
459 goto eof;
465 goto eof;
472 goto eof;
479 goto eof;
486 goto eof;
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Format/
H A DUnwrappedLineParser.cpp68 // \c getNextToken() after it has encountered the first eof token.
69 assert(!eof());
71 if (eof())
77 bool eof() { return Token.HasUnescapedNewline; } function in class:clang::format::ScopedMacroState
82 FormatTok.Tok.setKind(tok::eof);
144 // Create line with eof token.
187 } while (!eof());
258 } while (!eof());
436 } while (!eof());
474 } while (!eof());
850 bool UnwrappedLineParser::eof() const { return FormatTok.Tok.is(tok::eof); } function in class:clang::format::UnwrappedLineParser
[all...]
H A DUnwrappedLineParser.h165 bool eof() const;
/freebsd-10.0-release/contrib/openpam/t/
H A Dt_openpam_readlinev.c54 orlv_expect(struct t_file *tf, const char **expectedv, int lines, int eof) argument
97 if (eof && !t_feof(tf)) {
101 if (!eof && t_feof(tf)) {
141 ret = orlv_expect(tf, NULL, 0 /*lines*/, 1 /*eof*/);
154 ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
167 ret = orlv_expect(tf, NULL, 0 /*lines*/, 1 /*eof*/);
180 ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
193 ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
206 ret = orlv_expect(tf, empty, 1 /*lines*/, 0 /*eof*/);
225 ret = orlv_expect(tf, hello, 1 /*lines*/, 0 /*eof*/);
[all...]
/freebsd-10.0-release/crypto/heimdal/appl/login/
H A Dlimits_conf.c130 int eof = 1; local
133 eof = 0;
137 if(!eof) {
/freebsd-10.0-release/crypto/heimdal/appl/rsh/
H A Dlimits_conf.c130 int eof = 1; local
133 eof = 0;
137 if(!eof) {
/freebsd-10.0-release/usr.bin/lam/
H A Dlam.c60 short eof; /* eof flag */ member in struct:openfile
199 if (ip->eof)
206 ip->eof = 1;
/freebsd-10.0-release/usr.sbin/pkg_install/
H A Dtkpkg94 while {![eof $f]} {
133 while {![eof $f]} {
144 while {![eof $f]} {
/freebsd-10.0-release/contrib/libstdc++/include/bits/
H A Dchar_traits.h76 * right, but the int_type and state_type typedefs, and the eof()
138 eof() function in struct:char_traits
143 { return !eq_int_type(__c, eof()) ? __c : to_int_type(char_type()); }
280 // To keep both the byte 0xff and the eof symbol 0xffffffff
291 eof() { return static_cast<int_type>(EOF); } function in struct:char_traits
295 { return (__c == eof()) ? 0 : __c; }
357 eof() { return static_cast<int_type>(WEOF); } function in struct:char_traits
361 { return eq_int_type(__c, eof()) ? 0 : __c; }
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_bzip2.c57 char eof; /* True = found end of compressed data. */ member in struct:private_data
232 if (state->eof) {
245 state->eof = 1;
300 state->eof = 1;
H A Darchive_read_support_filter_xz.c62 char eof; /* True = found end of compressed data. */ member in struct:private_data
92 char eof; /* True = found end of compressed data. */ member in struct:private_data
667 state->eof = 0;
690 while (state->stream.avail_out > 0 && !state->eof) {
715 state->eof = 1;
739 if (state->eof) {
862 while (state->stream.avail_out > 0 && !state->eof) {
877 state->eof = 1;
/freebsd-10.0-release/contrib/libstdc++/src/
H A Distream.cc51 const int_type __eof = traits_type::eof();
113 if (traits_type::eq_int_type(__delim, traits_type::eof()))
124 const int_type __eof = traits_type::eof();
211 const __int_type __eof = __traits_type::eof();
287 const __int_type __eof = __traits_type::eof();
361 const __int_type __eof = __traits_type::eof();
431 const int_type __eof = traits_type::eof();
493 if (traits_type::eq_int_type(__delim, traits_type::eof()))
504 const int_type __eof = traits_type::eof();
590 const __int_type __eof = __traits_type::eof();
[all...]
H A Dstrstream.cc144 if (c == traits_type::eof())
184 return traits_type::eof();
192 if (c == _Traits::eof())
209 return _Traits::eof();
221 return _Traits::eof();
/freebsd-10.0-release/contrib/libreadline/
H A Dreadline.c381 readline_internal_teardown (eof)
382 int eof;
410 return (eof ? (char *)NULL : savestring (the_line));
542 int eof = 1; local
545 eof = readline_internal_char ();
546 return (eof);
556 int eof; local
559 eof = readline_internal_charloop ();
560 return (readline_internal_teardown (eof));
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp233 Eof.setKind(tok::eof);
366 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
434 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
445 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
472 while (Tok.getLocation() != origLoc && Tok.isNot(tok::eof))
540 if (Tok.isNot(tok::eof)) {
548 while (Tok.isNot(tok::eof))
577 case tok::eof:
669 if (Tok.is(tok::eof) || Tok.is(tok::semi))
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_client/
H A Dpatch.c99 svn_boolean_t eof;
109 const char **eol_str, svn_boolean_t *eof,
534 svn_boolean_t *eof, apr_pool_t *result_pool,
545 *eof = TRUE;
589 if (eof)
590 *eof = found_eof;
710 svn_boolean_t *eof, apr_pool_t *result_pool,
775 if (eof)
776 *eof = found_eof;
850 svn_boolean_t *eof, apr_pool_
98 svn_boolean_t eof; member in struct:target_content_t
532 readline_prop(void *baton, svn_stringbuf_t **line, const char **eol_str, svn_boolean_t *eof, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
708 readline_file(void *baton, svn_stringbuf_t **line, const char **eol_str, svn_boolean_t *eof, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
848 readline_symlink(void *baton, svn_stringbuf_t **line, const char **eol_str, svn_boolean_t *eof, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1749 svn_boolean_t eof; local
1833 svn_boolean_t eof; local
[all...]
/freebsd-10.0-release/lib/libz/
H A Dgzread.c20 state->fd, and update state->eof, state->err, and state->msg as appropriate.
43 state->eof = 1;
47 /* Load up input buffer and set eof flag if last data loaded -- return -1 on
48 error, 0 otherwise. Note that the eof flag is set when the end of the input
62 if (state->eof == 0) {
151 state->eof = 1;
254 } while (state->x.have == 0 && (!state->eof || strm->avail_in));
278 else if (state->eof && state->strm.avail_in == 0)
341 else if (state->eof && strm->avail_in == 0) {
/freebsd-10.0-release/contrib/subversion/subversion/svn/
H A Dfile-merge.c101 svn_boolean_t eof; local
110 SVN_ERR(svn_io_file_readline(source_file, &line, NULL, &eof,
112 if (eof)
127 SVN_ERR(svn_io_file_readline(source_file, &line, &eol_str, &eof,
136 if (eof)
268 svn_boolean_t eof; local
278 SVN_ERR(svn_io_file_readline(file, &line, NULL, &eof, APR_SIZE_MAX,
280 if (eof)
289 SVN_ERR(svn_io_file_readline(file, &line, &eol_str, &eof, APR_SIZE_MAX,
294 if (eof)
472 svn_boolean_t eof; local
[all...]
/freebsd-10.0-release/contrib/groff/src/roff/troff/
H A Dtoken.h72 int eof();
192 inline int token::eof() function in class:token
/freebsd-10.0-release/contrib/less/
H A Dforwback.c129 int eof = 0; local
155 * to hit eof in the middle of this screen,
217 eof = 1;
/freebsd-10.0-release/contrib/libstdc++/include/ext/
H A Dpod_char_traits.h174 eof() function in struct:char_traits
182 { return eq_int_type(__c, eof()) ? int_type() : __c; }
/freebsd-10.0-release/contrib/amd/conf/nfs_prot/
H A Dnfs_prot_freebsd2.h59 #define dl_eof eof
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Rewrite/Core/
H A DTokenRewriter.cpp35 while (RawTok.isNot(tok::eof)) {
/freebsd-10.0-release/contrib/ngatm/sscop/
H A Dcommon.c131 goto eof;
156 eof:
193 goto eof;
219 eof:

Completed in 332 milliseconds

1234567