HomeSort by relevance Sort by last modified time
    Searched full:ios_base (Results 101 - 125 of 879) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/
pubseekoff.pass.cpp 15 // pos_type pubseekoff(off_type off, ios_base::seekdir way,
16 // ios_base::openmode which = ios_base::in | ios_base::out);
32 assert(t.pubseekoff(0, std::ios_base::beg) == -1);
33 assert(t.pubseekoff(0, std::ios_base::beg, std::ios_base::app) == -1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/
pubseekoff.pass.cpp 15 // pos_type pubseekoff(off_type off, ios_base::seekdir way,
16 // ios_base::openmode which = ios_base::in | ios_base::out);
32 assert(t.pubseekoff(0, std::ios_base::beg) == -1);
33 assert(t.pubseekoff(0, std::ios_base::beg, std::ios_base::app) == -1);
  /external/libcxx/test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/
get_monthname.pass.cpp 15 // get_monthname(iter_type s, iter_type end, ios_base& str,
16 // ios_base::iostate& err, tm* t) const;
38 std::ios_base::iostate err;
42 err = std::ios_base::goodbit;
47 assert(err == std::ios_base::eofbit);
51 err = std::ios_base::goodbit;
56 assert(err == std::ios_base::eofbit);
60 err = std::ios_base::goodbit;
65 assert(err == std::ios_base::eofbit);
69 err = std::ios_base::goodbit
    [all...]
get_monthname_wide.pass.cpp 15 // get_monthname(iter_type s, iter_type end, ios_base& str,
16 // ios_base::iostate& err, tm* t) const;
38 std::ios_base::iostate err;
42 err = std::ios_base::goodbit;
47 assert(err == std::ios_base::eofbit);
51 err = std::ios_base::goodbit;
56 assert(err == std::ios_base::eofbit);
60 err = std::ios_base::goodbit;
65 assert(err == std::ios_base::eofbit);
69 err = std::ios_base::goodbit
    [all...]
get_year.pass.cpp 14 // iter_type get_year(iter_type s, iter_type end, ios_base& str,
15 // ios_base::iostate& err, tm* t) const;
37 std::ios_base::iostate err;
41 err = std::ios_base::goodbit;
46 assert(err == std::ios_base::eofbit);
50 err = std::ios_base::goodbit;
55 assert(err == std::ios_base::eofbit);
59 err = std::ios_base::goodbit;
64 assert(err == std::ios_base::eofbit);
68 err = std::ios_base::goodbit
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/
get_monthname.pass.cpp 15 // get_monthname(iter_type s, iter_type end, ios_base& str,
16 // ios_base::iostate& err, tm* t) const;
38 std::ios_base::iostate err;
42 err = std::ios_base::goodbit;
47 assert(err == std::ios_base::eofbit);
51 err = std::ios_base::goodbit;
56 assert(err == std::ios_base::eofbit);
60 err = std::ios_base::goodbit;
65 assert(err == std::ios_base::eofbit);
69 err = std::ios_base::goodbit
    [all...]
get_monthname_wide.pass.cpp 15 // get_monthname(iter_type s, iter_type end, ios_base& str,
16 // ios_base::iostate& err, tm* t) const;
38 std::ios_base::iostate err;
42 err = std::ios_base::goodbit;
47 assert(err == std::ios_base::eofbit);
51 err = std::ios_base::goodbit;
56 assert(err == std::ios_base::eofbit);
60 err = std::ios_base::goodbit;
65 assert(err == std::ios_base::eofbit);
69 err = std::ios_base::goodbit
    [all...]
get_year.pass.cpp 14 // iter_type get_year(iter_type s, iter_type end, ios_base& str,
15 // ios_base::iostate& err, tm* t) const;
37 std::ios_base::iostate err;
41 err = std::ios_base::goodbit;
46 assert(err == std::ios_base::eofbit);
50 err = std::ios_base::goodbit;
55 assert(err == std::ios_base::eofbit);
59 err = std::ios_base::goodbit;
64 assert(err == std::ios_base::eofbit);
68 err = std::ios_base::goodbit
    [all...]
  /external/libcxx/test/libcxx/input.output/file.streams/fstreams/fstream.members/
open_wchar_pointer.pass.cpp 15 // void open(const wchar_t* s, ios_base::openmode mode = ios_base::in|ios_base::out);
28 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
29 | std::ios_base::trunc);
41 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
42 | std::ios_base::trunc);
  /external/libcxx/test/std/input.output/file.streams/fstreams/fstream.members/
open_pointer.pass.cpp 15 // void open(const char* s, ios_base::openmode mode = ios_base::in|ios_base::out);
27 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
28 | std::ios_base::trunc);
40 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
41 | std::ios_base::trunc);
open_string.pass.cpp 15 // void open(const string& s, ios_base::openmode mode = ios_base::in|ios_base::out);
27 fs.open(temp, std::ios_base::in | std::ios_base::out
28 | std::ios_base::trunc);
40 fs.open(temp, std::ios_base::in | std::ios_base::out
41 | std::ios_base::trunc);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/fstream.members/
open_pointer.pass.cpp 15 // void open(const char* s, ios_base::openmode mode = ios_base::in|ios_base::out);
27 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
28 | std::ios_base::trunc);
40 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
41 | std::ios_base::trunc);
open_string.pass.cpp 15 // void open(const string& s, ios_base::openmode mode = ios_base::in|ios_base::out);
27 fs.open(temp, std::ios_base::in | std::ios_base::out
28 | std::ios_base::trunc);
40 fs.open(temp, std::ios_base::in | std::ios_base::out
41 | std::ios_base::trunc);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr2/
bool_set.tcc 86 * If ios_base::boolalpha is set, attempts to read
89 * ios_base::failbit if reading the string fails. Sets err to
90 * ios_base::eofbit if the stream is emptied.
92 * If ios_base::boolalpha is not set, proceeds as with reading a long,
94 * @a v to false, and otherwise set err to ios_base::failbit.
103 get(iter_type __in, iter_type __end, ios_base& __io,
104 ios_base::iostate& __err, bool& __v) const
111 do_get(iter_type __beg, iter_type __end, ios_base& __io,
112 ios_base::iostate& __err, bool_set& __v) const
114 if (!(__io.flags() & ios_base::boolalpha)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr2/
bool_set.tcc 86 * If ios_base::boolalpha is set, attempts to read
89 * ios_base::failbit if reading the string fails. Sets err to
90 * ios_base::eofbit if the stream is emptied.
92 * If ios_base::boolalpha is not set, proceeds as with reading a long,
94 * @a v to false, and otherwise set err to ios_base::failbit.
103 get(iter_type __in, iter_type __end, ios_base& __io,
104 ios_base::iostate& __err, bool& __v) const
111 do_get(iter_type __beg, iter_type __end, ios_base& __io,
112 ios_base::iostate& __err, bool_set& __v) const
114 if (!(__io.flags() & ios_base::boolalpha)
    [all...]
  /external/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/
member_swap.pass.cpp 46 std::fstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out
47 | std::ios_base::trunc);
48 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
49 | std::ios_base::trunc);
69 std::wfstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out
70 | std::ios_base::trunc);
71 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::ou
    [all...]
nonmember_swap.pass.cpp 48 std::fstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out
49 | std::ios_base::trunc);
50 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
51 | std::ios_base::trunc);
71 std::wfstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out
72 | std::ios_base::trunc);
73 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::ou
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/fstream.assign/
member_swap.pass.cpp 46 std::fstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out
47 | std::ios_base::trunc);
48 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
49 | std::ios_base::trunc);
69 std::wfstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out
70 | std::ios_base::trunc);
71 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::ou
    [all...]
nonmember_swap.pass.cpp 48 std::fstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out
49 | std::ios_base::trunc);
50 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
51 | std::ios_base::trunc);
71 std::wfstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out
72 | std::ios_base::trunc);
73 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::ou
    [all...]
  /external/libcxx/include/
sstream 30 explicit basic_stringbuf(ios_base::openmode which = ios_base::in | ios_base::out);
32 ios_base::openmode which = ios_base::in | ios_base::out);
49 virtual pos_type seekoff(off_type off, ios_base::seekdir way,
50 ios_base::openmode which = ios_base::in | ios_base::out)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
sstream 30 explicit basic_stringbuf(ios_base::openmode which = ios_base::in | ios_base::out);
32 ios_base::openmode which = ios_base::in | ios_base::out);
49 virtual pos_type seekoff(off_type off, ios_base::seekdir way,
50 ios_base::openmode which = ios_base::in | ios_base::out)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/
sstream 30 explicit basic_stringbuf(ios_base::openmode which = ios_base::in | ios_base::out);
32 ios_base::openmode which = ios_base::in | ios_base::out);
49 virtual pos_type seekoff(off_type off, ios_base::seekdir way,
50 ios_base::openmode which = ios_base::in | ios_base::out)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/
sstream 30 explicit basic_stringbuf(ios_base::openmode which = ios_base::in | ios_base::out);
32 ios_base::openmode which = ios_base::in | ios_base::out);
49 virtual pos_type seekoff(off_type off, ios_base::seekdir way,
50 ios_base::openmode which = ios_base::in | ios_base::out)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/
sstream 30 explicit basic_stringbuf(ios_base::openmode which = ios_base::in | ios_base::out);
32 ios_base::openmode which = ios_base::in | ios_base::out);
49 virtual pos_type seekoff(off_type off, ios_base::seekdir way,
50 ios_base::openmode which = ios_base::in | ios_base::out)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/c++/v1/
sstream 30 explicit basic_stringbuf(ios_base::openmode which = ios_base::in | ios_base::out);
32 ios_base::openmode which = ios_base::in | ios_base::out);
49 virtual pos_type seekoff(off_type off, ios_base::seekdir way,
50 ios_base::openmode which = ios_base::in | ios_base::out)
    [all...]

Completed in 881 milliseconds

1 2 3 45 6 7 8 91011>>