Searched refs:delim (Results 1 - 25 of 65) sorted by relevance

123

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dinquire_7.f906 character(len=10) delim variable in program:main
8 open(10,delim='quote',status='SCRATCH')
9 inquire(10,delim=delim)
11 if (delim .ne. 'QUOTE') call abort
13 open(10,delim='apostrophe',status='SCRATCH')
14 inquire(10,delim=delim)
16 if (delim .ne. 'APOSTROPHE') call abort
19 inquire(10,delim
[all...]
H A Dnamelist_38.f9011 open(10, status="scratch", delim="quote")
20 open(10, status="scratch", delim="apostrophe")
29 open(10, status="scratch", delim="none")
H A Dfmt_cache_2.f6 character(1) delim variable
14 delim=" "
29 & delim,dat(4),":",dat(5),
30 & (delim,bufarr(pindx),pindx=1,j)
H A Dnamelist_88.f9014 open(unit=23,status='scratch',delim='none')
H A Dnamelist_18.f9021 open (10, status = "scratch", delim ="quote")
30 open (10, status = "scratch", delim ="apostrophe")
H A Dpr66725.f9011 open(unit=1,delim = 999) ! { dg-error "DELIM requires" }
23 write (unit=1, delim=257) ! { dg-error "DELIM requires" }
H A Dio_constraints_3.f9029 open(10, iostat=u,delim="apostrophe")
30 open(10, iostat=u,delim="quote")
31 open(10, iostat=u,delim="none")
32 open(10, iostat=u,delim="") ! { dg-warning "DELIM specifier in OPEN statement" }
60 open(10, iostat=u,form="unformatted",delim="none") ! { dg-warning "not allowed in OPEN statement for unformatted I/O" }
91 open(10, err=99,delim="apostrophe")
92 open(10, err=99,delim="quote")
93 open(10, err=99,delim="none")
94 open(10, err=99,delim="") ! { dg-warning "DELIM specifier in OPEN statement" }
122 open(10, err=99,form="unformatted",delim
[all...]
H A Dnamelist_84.f9016 open(unit=10,status='scratch',delim='none')
H A Dnamelist_15.f9023 open (10, status = "scratch", delim='apostrophe')
42 open (10, status = "scratch", delim='apostrophe')
H A Dnamelist_13.f9028 open(10,status="scratch", delim="apostrophe")
H A Dnamelist_21.f9017 open (12, status="scratch", delim="apostrophe")
H A Dnamelist_22.f9018 open (12, status="scratch", delim="apostrophe")
/haiku-buildtools/legacy/gcc/libio/
H A Dsbgetline.cc28 long streambuf::sgetline(char* buf, _IO_size_t n, char delim, int extract_delim) argument
30 return _IO_getline_info(this, buf, n, delim, extract_delim, (int *) 0);
H A Diogetline.c32 _IO_getline (fp, buf, n, delim, extract_delim)
36 int delim;
39 return _IO_getline_info (fp, buf, n, delim, extract_delim, (int *) 0);
44 Read chars into buf (of size n), until delim is seen.
48 If extract_delim > 0, insert delim in output. */
51 _IO_getline_info (fp, buf, n, delim, extract_delim, eof)
55 int delim;
72 if (c == delim)
88 t = (char *) memchr ((void *) fp->_IO_read_ptr, delim, len);
H A Disgetline.cc29 istream& istream::getline(char* buf, int len, char delim) argument
43 _gcount = _IO_getline_info(sb, buf, len - 1, delim, -1, &ch);
48 else if (ch != (unsigned char) delim)
59 if (ch == (unsigned char)delim)
64 istream& istream::get(char* buf, int len, char delim) argument
78 _gcount = _IO_getline_info(sbuf, buf, len - 1, delim, -1, &ch);
131 istream& istream::gets(char **s, char delim /* = '\n' */)
138 *s = _sb_readline (sb, size, delim);
H A Disgetsb.cc29 istream& istream::get(streambuf& sb, char delim /* = '\n' */)
45 char *delimp = (char*)memchr((void*)isb->_IO_read_ptr, delim, len);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/ipa/
H A Diinline-1.C18 int funcOne (int delim) const;
19 int printStuffTwice (int delim) const;
23 int String::funcOne (int delim) const
26 for (i = 0; i < delim; i++)
32 int docalling (int (String::* f)(int delim) const)
H A Diinline-2.C18 int funcOne (int delim) const;
19 int printStuffTwice (int delim) const;
23 int String::funcOne (int delim) const
26 for (i = 0; i < delim; i++)
34 int docalling (int c, int (String::* f)(int delim) const)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/inserters_extractors/char/
H A D10.cc30 string prepare(string::size_type len, unsigned nchunks, char delim) argument
38 ret.push_back(delim);
43 void check(istream& stream, const string& str, unsigned nchunks, char delim) argument
51 while (getline(stream, chunk, delim))
53 index_new = str.find(delim, index);
67 const char delim = '|'; local
69 const string data = prepare(777, nchunks, delim);
78 check(ifstrm, data, nchunks, delim);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/inserters_extractors/wchar_t/
H A D10.cc34 wstring prepare(wstring::size_type len, unsigned nchunks, wchar_t delim) argument
42 ret.push_back(delim);
47 void check(wistream& stream, const wstring& str, unsigned nchunks, wchar_t delim) argument
55 while (getline(stream, chunk, delim))
57 index_new = str.find(delim, index);
71 const wchar_t delim = L'|'; local
73 const wstring data = prepare(MAX_SIZE, nchunks, delim);
82 check(ifstrm, data, nchunks, delim);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/getline/char/
H A D5.cc30 string prepare(string::size_type len, unsigned nchunks, char delim) argument
38 ret.push_back(delim);
43 void check(istream& stream, const string& str, unsigned nchunks, char delim) argument
51 while (stream.getline(buf, sizeof(buf), delim))
53 index_new = str.find(delim, index);
69 const char delim = '|'; local
71 const string data = prepare(777, nchunks, delim);
80 check(ifstrm, data, nchunks, delim);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/getline/wchar_t/
H A D5.cc35 prepare(wstring::size_type len, unsigned nchunks, wchar_t delim) argument
43 ret.push_back(delim);
49 check(wistream& stream, const wstring& str, unsigned nchunks, wchar_t delim) argument
57 while (stream.getline(buf, sizeof(buf) / sizeof(wchar_t), delim))
59 index_new = str.find(delim, index);
75 const wchar_t delim = L'|'; local
77 const wstring data = prepare(MAX_LENGTH, nchunks, delim);
86 check(ifstrm, data, nchunks, delim);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/ignore/char/
H A D2.cc31 string prepare(string::size_type len, unsigned nchunks, char delim) argument
39 ret.push_back(delim);
44 void check(istream& stream, const string& str, unsigned nchunks, char delim) argument
51 while (stream.ignore(numeric_limits<streamsize>::max(), delim).good())
53 index_new = str.find(delim, index);
68 const char delim = '|'; local
70 const string data = prepare(555, nchunks, delim);
79 check(ifstrm, data, nchunks, delim);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/ignore/wchar_t/
H A D2.cc36 prepare(wstring::size_type len, unsigned nchunks, wchar_t delim) argument
44 ret.push_back(delim);
50 check(wistream& stream, const wstring& str, unsigned nchunks, wchar_t delim) argument
57 while (stream.ignore(numeric_limits<streamsize>::max(), delim).good())
59 index_new = str.find(delim, index);
74 const wchar_t delim = L'|'; local
76 const wstring data = prepare(MAX_SIZE, nchunks, delim);
85 check(ifstrm, data, nchunks, delim);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr40323.C17 int funcOne (int delim) const;
40 int Parent::funcOne (int delim) const
43 for (i = 0; i < delim; i++)
49 int docalling (int (Child::* f)(int delim) const)
56 typedef int (Parent::* my_mp_type)(int delim);

Completed in 176 milliseconds

123