Searched refs:eof (Results 151 - 175 of 246) sorted by relevance

12345678910

/macosx-10.10/vim-55/runtime/syntax/
H A Dtcsh.vim89 \ delete-char-or-eof delete-char-or-list
90 \ delete-char-or-list-or-eof delete-word digit digit-argument
98 \ list-or-eof load-average magic-space newline normalize-path
H A Dopl.vim33 syn keyword OPLStatement eof erase err err$ errx$ escape eval exist exp ext
/macosx-10.10/vim-55/src/
H A Dex_cmds.c2057 int eof = FALSE; local
2070 eof = read_viminfo_up_to_marks(&vir,
2074 while (!(eof = viminfo_readline(&vir))
2103 copy_viminfo_marks(&vir, fp_out, count, eof, flags);
2123 int eof; local
2129 eof = viminfo_readline(virp);
2130 while (!eof && virp->vir_line[0] != '>')
2144 eof = viminfo_readline(virp);
2147 eof = viminfo_encoding(virp);
2151 eof
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.1/
H A DtclIO.c3185 char *dst, *dstEnd, *eol, *eof;
3240 eof = NULL;
3260 eof = eol;
3377 if (eof != NULL) {
3384 dstEnd = eof;
4264 char *eof;
4266 eof = Tcl_UtfAtIndex(dst, toRead);
4270 dst, eof - dst + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
4321 CONST char *eof;
4325 eof
3149 char *dst, *dstEnd, *eol, *eof; local
4223 char *eof; local
4279 CONST char *eof; local
[all...]
H A DtclIO.c.orig2861 char *dst, *dstEnd, *eol, *eof;
2916 eof = NULL;
2936 eof = eol;
3053 if (eof != NULL) {
3060 dstEnd = eof;
3940 char *eof;
3942 eof = Tcl_UtfAtIndex(dst, toRead);
3946 dst, eof - dst + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3997 CONST char *eof;
4001 eof
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.1b3/
H A DtclIO.c3185 char *dst, *dstEnd, *eol, *eof;
3240 eof = NULL;
3260 eof = eol;
3377 if (eof != NULL) {
3384 dstEnd = eof;
4264 char *eof;
4266 eof = Tcl_UtfAtIndex(dst, toRead);
4270 dst, eof - dst + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
4321 CONST char *eof;
4325 eof
3149 char *dst, *dstEnd, *eol, *eof; local
4223 char *eof; local
4279 CONST char *eof; local
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/perf/ubrkperf/
H A Dubrkperfold.cpp473 UBool eof() {return fEof;}; function in class:UCharFile
574 int ch = fgetc(fFile); // Note: c and ch are separate cause eof test doesn't work on UChar type.
709 if(f.eof()) {
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dtest.c123 int eof; local
151 eof = feof( fp );
/macosx-10.10/file_cmds-242/compress/
H A Dzopen.c475 goto eof;
564 eof: return (num - count);
/macosx-10.10/ruby-106/ruby/lib/irb/
H A Druby-lex.rb133 def eof?
134 @io.eof?
/macosx-10.10/ruby-106/ruby/lib/rdoc/
H A Druby_lex.rb199 def eof?
200 @io.eof?
/macosx-10.10/swig-12/Lib/std/
H A Dstd_iostream.i237 ignore(streamsize __n = 1, int_type __delim = _Traits::eof());
/macosx-10.10/tcl-105/tcl_ext/expect/expect/example/
H A Dtkterm465 } eof {
H A Dxpstat24 expect_before eof {wait;return 0}
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A DASTFactory.cpp398 if( infile.eof() )
/macosx-10.10/groff-38/groff/src/roff/troff/
H A Dreg.cpp406 else if (tok.newline() || tok.eof())
/macosx-10.10/llvmCore-3425.0.34/examples/BrainF/
H A DBrainF.cpp321 if (in->eof()) {
/macosx-10.10/ntp-92/libntp/
H A Daudio.c492 "audio: samples %d, eof %d, pause %d, error %d, waiting %d, balance %d\n",
493 info.record.samples, info.record.eof,
/macosx-10.10/BerkeleyDB-21/db/btree/
H A Dbt_recno.c1218 goto eof;
1227 goto eof;
1262 eof: t->re_eof = 1;
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c/detail/
H A Dprocess_test.c884 bool eof; local
887 eof = read_line(fd, &line);
888 ATF_CHECK(!eof);
/macosx-10.10/ppp-786.1.1/Helpers/pppdump/
H A Dzlib.c436 int eof));
2246 local void ct_stored_block(s, buf, stored_len, eof)
2250 int eof; /* true if this is the last block for a file */
2252 send_bits(s, (STORED_BLOCK<<1)+eof, 3); /* send block type */
2311 int eof = flush == Z_FINISH; local
2351 if (eof && compressed_len == 0L) /* force stored file */
2353 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable())
2389 ct_stored_block(s, buf, stored_len, eof);
2398 send_bits(s, (STATIC_TREES<<1)+eof, 3);
2402 send_bits(s, (DYN_TREES<<1)+eof,
[all...]
/macosx-10.10/rsync-45/rsync/zlib/
H A Ddeflate.c1366 #define FLUSH_BLOCK_ONLY(s, eof) { \
1371 (eof)); \
1378 #define FLUSH_BLOCK(s, eof) { \
1379 FLUSH_BLOCK_ONLY(s, eof); \
1380 if (s->strm->avail_out == 0) return (eof) ? finish_started : need_more; \
/macosx-10.10/xnu-2782.1.97/libkern/zlib/
H A Ddeflate.c1393 #define FLUSH_BLOCK_ONLY(s, eof) { \
1398 (eof)); \
1405 #define FLUSH_BLOCK(s, eof) { \
1406 FLUSH_BLOCK_ONLY(s, eof); \
1407 if (s->strm->avail_out == 0) return (eof) ? finish_started : need_more; \
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.1a2/
H A DtclIO.c.orig2857 char *dst, *dstEnd, *eol, *eof;
2911 eof = NULL;
2931 eof = eol;
3048 if (eof != NULL) {
3055 dstEnd = eof;
3914 char *eof;
3916 eof = Tcl_UtfAtIndex(dst, toRead);
3920 dst, eof - dst + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3971 CONST char *eof;
3975 eof
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.1b1/
H A DtclIO.c.orig2861 char *dst, *dstEnd, *eol, *eof;
2916 eof = NULL;
2936 eof = eol;
3053 if (eof != NULL) {
3060 dstEnd = eof;
3940 char *eof;
3942 eof = Tcl_UtfAtIndex(dst, toRead);
3946 dst, eof - dst + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3997 CONST char *eof;
4001 eof
[all...]

Completed in 297 milliseconds

12345678910