/netbsd-src/external/historical/nawk/dist/testdir/ |
H A D | T.getline | 1 echo T.getline: test getline function 8 while (getline) 13 cmp -s foo1 foo || echo 'BAD: T.getline (bare getline)' 18 while (getline xxx) 23 cmp -s foo1 foo || echo 'BAD: T.getline (getline xxx)' 27 while (getline <"/etc/passwd") 32 cmp -s /etc/passwd foo || echo 'BAD: T.getline (getline <file)' 36 while (getline <"-") # stdin 41 cmp -s /etc/passwd foo || echo 'BAD: T.getline (getline <"-")' 45 while (getline <ARGV[1]) [all …]
|
/netbsd-src/external/gpl2/xcvs/dist/m4/ |
H A D | getline.m4 | 1 # getline.m4 serial 13 12 dnl See if there's a working, system-supplied version of the getline function. 13 dnl We can't just do AC_REPLACE_FUNCS(getline) because some systems 18 AC_LIBSOURCES([getline.c, getline.h]) 20 dnl Persuade glibc <stdio.h> to declare getline(). 23 AC_CHECK_DECLS([getline]) 26 AC_CHECK_FUNC(getline, 31 AC_CACHE_CHECK([for working getline function], am_cv_func_working_getline, 45 len = getline (&line, &siz, in); 56 dnl a broken getline() in libc.so would override our getline() in [all …]
|
/netbsd-src/external/bsd/kyua-cli/dist/utils/logging/ |
H A D | operations_test.cpp | 112 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 115 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 118 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 121 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 141 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 195 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 198 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 201 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 204 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 207 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() [all …]
|
H A D | macros_test.cpp | 56 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 72 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 88 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 104 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY()
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-m4/ |
H A D | getline.m4 | 1 # getline.m4 serial 15 12 dnl See if there's a working, system-supplied version of the getline function. 13 dnl We can't just do AC_REPLACE_FUNCS(getline) because some systems 18 dnl Persuade glibc <stdio.h> to declare getline(). 21 AC_CHECK_DECLS([getline]) 24 AC_CHECK_FUNC(getline, 29 AC_CACHE_CHECK([for working getline function], am_cv_func_working_getline, 43 len = getline (&line, &siz, in); 65 dnl a broken getline() in libc.so would override our getline() in 67 AC_DEFINE([getline], [gnu_getline], definition [all …]
|
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/m4/ |
H A D | getline.m4 | 1 # getline.m4 serial 30 12 dnl See if there's a working, system-supplied version of the getline function. 13 dnl We can't just do AC_REPLACE_FUNCS([getline]) because some systems 21 dnl Persuade glibc <stdio.h> to declare getline(). 24 AC_CHECK_DECLS_ONCE([getline]) 27 AC_CHECK_FUNC([getline], 32 AC_CACHE_CHECK([for working getline function], 49 int len = getline (&line, &siz, in); 59 if (getline (&line, &siz, in) == -1) 98 dnl getline function among $LIBS, it may exist in libinet and the [all …]
|
/netbsd-src/etc/autofs/ |
H A D | include_nis_nullfs | 65 "hostname -s" | getline; 68 "hostname -f" | getline; 73 "hostname -f" | getline; 77 while ("ifconfig" | getline) { 92 while ("ypcat -k " ARGV[1] | getline) { 98 while ("ypmatch " ARGV[2] " " ARGV[1] | getline) {
|
/netbsd-src/share/man/man8/ |
H A D | MAKEDEV2manpage.awk | 66 getline r1l < MAKEDEV; 69 getline r1l < MAKEDEV; 78 getline r1ll < MAKEDEV; 82 getline r1ll < MAKEDEV; 98 while (getline l < MAKEDEV > 0 && l !~ /^#.*Device.*Valid.*argument/) 183 while(str | getline) {
|
/netbsd-src/etc/ |
H A D | MAKEDEV.awk | 76 while (getline < file) { 103 getline CONFRCSID < cfgfile # RCS Id 104 getline < cfgfile # blank line 106 while (getline < cfgfile) { 156 while (getline < inc) { 167 while (getline < inc) { 210 while (getline < idfile) { 224 while (getline < idfile) {
|
/netbsd-src/external/gpl3/autoconf/dist/bin/ |
H A D | autoheader.in | 214 while ($_ = $in->getline) 224 while ($_ = $in->getline) 243 while ($_ = $in->getline) 254 while ($_ = $in->getline) 266 while ($_ = $in->getline)
|
H A D | autoreconf.in | 335 while ($_ = $configure_ac_file->getline) 404 $_ = $aclocal_m4->getline; 414 while ($_ = $makefile->getline) 481 while ($_ = $traces->getline)
|
/netbsd-src/external/bsd/kyua-cli/dist/utils/process/ |
H A D | child_test.cpp | 313 ATF_REQUIRE(std::getline(output, line).good()); in child__fork_capture__ok() 319 ATF_REQUIRE(std::getline(output, line).good()); in child__fork_capture__ok() 638 ATF_REQUIRE(std::getline(child->output(), line).good()); in ATF_TEST_CASE_BODY() 640 ATF_REQUIRE(!std::getline(child->output(), line)); in ATF_TEST_CASE_BODY() 656 ATF_REQUIRE(std::getline(child->output(), line).good()); in ATF_TEST_CASE_BODY() 658 ATF_REQUIRE(!std::getline(child->output(), line)); in ATF_TEST_CASE_BODY() 677 ATF_REQUIRE(std::getline(child->output(), line).good()); in ATF_TEST_CASE_BODY() 679 ATF_REQUIRE(std::getline(child->output(), line).good()); in ATF_TEST_CASE_BODY() 681 ATF_REQUIRE(std::getline(child->output(), line)); in ATF_TEST_CASE_BODY() 683 ATF_REQUIRE(std::getline(child->output(), line)); in ATF_TEST_CASE_BODY() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/ |
H A D | stdio.d | 290 ssize_t getline(char**, size_t*, FILE*); in version() 318 ssize_t getline(char**, size_t*, FILE*); in version() 345 ssize_t getline(char**, size_t*, FILE*); in version() 372 ssize_t getline(char**, size_t*, FILE*); in version() 382 ssize_t getline(char**, size_t*, FILE*); in version() 396 ssize_t getline(char**, size_t*, FILE*); in version() 407 ssize_t getline(char**, size_t*, FILE*); in version() 417 ssize_t getline(char**, size_t*, FILE*); in version() 427 ssize_t getline(char**, size_t*, FILE*); in version() 455 ssize_t getline(char**, size_t*, FILE*); in version()
|
/netbsd-src/external/gpl3/autoconf/dist/lib/Autom4te/ |
H A D | XFile.pm | 180 sub getline subroutine 182 local $_ = $_[0]->SUPER::getline; 199 push @res, $line while $line = $_[0]->getline;
|
/netbsd-src/share/misc/ |
H A D | nanpa.awk | 14 while ((getline < postdb) > 0) { 50 while((ispipe?(file | getline):(getline < file)) > 0) {
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/ |
H A D | string-io-inst.cc | 47 getline(basic_istream<char>&, string&, char); 50 getline(basic_istream<char>&, string&);
|
H A D | wstring-io-inst.cc | 48 getline(basic_istream<wchar_t>&, wstring&, wchar_t); 51 getline(basic_istream<wchar_t>&, wstring&);
|
H A D | cow-string-io-inst.cc | 53 getline(basic_istream<char>&, string&, char); 56 getline(basic_istream<char>&, string&);
|
H A D | cow-wstring-io-inst.cc | 56 getline(basic_istream<wchar_t>&, wstring&, wchar_t); 59 getline(basic_istream<wchar_t>&, wstring&);
|
/netbsd-src/lib/libc/stdio/ |
H A D | getline.c | 38 __weak_alias(getline, _getline) in __weak_alias() argument 42 getline(char **__restrict buf, size_t *__restrict buflen, FILE *__restrict fp) in __weak_alias()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/ |
H A D | string-io-inst.cc | 47 getline(basic_istream<char>&, string&, char); 50 getline(basic_istream<char>&, string&);
|
H A D | wstring-io-inst.cc | 48 getline(basic_istream<wchar_t>&, wstring&, wchar_t); 51 getline(basic_istream<wchar_t>&, wstring&);
|
H A D | cow-string-io-inst.cc | 53 getline(basic_istream<char>&, string&, char); 56 getline(basic_istream<char>&, string&);
|
H A D | cow-wstring-io-inst.cc | 56 getline(basic_istream<wchar_t>&, wstring&, wchar_t); 59 getline(basic_istream<wchar_t>&, wstring&);
|
/netbsd-src/external/gpl3/gdb/dist/zlib/contrib/iostream3/ |
H A D | test.cc | 27 while (inf.getline(buf,80,'\n')) { in main() 43 while (inf.getline(buf,80,'\n')) { in main()
|