Home
last modified time | relevance | path

Searched refs:basic_ofstream (Results 1 – 11 of 11) sorted by relevance

/third_party/boost/boost/filesystem/
Dfstream.hpp108 class basic_ofstream : public std::basic_ofstream<charT,traits> class
111 basic_ofstream(const basic_ofstream&);
112 const basic_ofstream& operator=(const basic_ofstream&);
115 basic_ofstream() {} in basic_ofstream() function in boost::filesystem::basic_ofstream
120 explicit basic_ofstream(const path& p) in basic_ofstream() function in boost::filesystem::basic_ofstream
121 : std::basic_ofstream<charT,traits>(p.BOOST_FILESYSTEM_C_STR, std::ios_base::out) {} in basic_ofstream()
123 basic_ofstream(const path& p, std::ios_base::openmode mode) in basic_ofstream() function in boost::filesystem::basic_ofstream
124 : std::basic_ofstream<charT,traits>(p.BOOST_FILESYSTEM_C_STR, mode) {} in basic_ofstream()
127 { std::basic_ofstream<charT,traits>::open(p.BOOST_FILESYSTEM_C_STR, std::ios_base::out); } in open()
130 { std::basic_ofstream<charT,traits>::open(p.BOOST_FILESYSTEM_C_STR, mode); } in open()
[all …]
/third_party/boost/boost/nowide/
Dfstream.hpp124 class basic_ofstream : public detail::fstream_impl<CharType, Traits, detail::StreamTypeOut> class
129 basic_ofstream() in basic_ofstream() function in boost::nowide::basic_ofstream
131 … explicit basic_ofstream(const char* file_name, std::ios_base::openmode mode = std::ios_base::out) in basic_ofstream() function in boost::nowide::basic_ofstream
136 …explicit basic_ofstream(const wchar_t* file_name, std::ios_base::openmode mode = std::ios_base::ou… in basic_ofstream() function in boost::nowide::basic_ofstream
141 …explicit basic_ofstream(const std::string& file_name, std::ios_base::openmode mode = std::ios_base… in basic_ofstream() function in boost::nowide::basic_ofstream
146 explicit basic_ofstream( in basic_ofstream() function in boost::nowide::basic_ofstream
158 basic_ofstream(const basic_ofstream&) = delete;
159 basic_ofstream& operator=(const basic_ofstream&) = delete;
160 basic_ofstream(basic_ofstream&& other) noexcept : fstream_impl(std::move(other)) in basic_ofstream() function in boost::nowide::basic_ofstream
162 basic_ofstream& operator=(basic_ofstream&& rhs) in operator =()
[all …]
/third_party/boost/boost/typeof/std/
Dfstream.hpp18 BOOST_TYPEOF_REGISTER_TEMPLATE(std::basic_ofstream, 1)
19 BOOST_TYPEOF_REGISTER_TEMPLATE(std::basic_ofstream, 2)
/third_party/boost/libs/spirit/test/lex/
Dregression_static_wide_6253.cpp38 basic_ofstream<wchar_t> output_dfa("test_dfa.hpp"); in main()
41 basic_ofstream<wchar_t> output_switch("test_switch.hpp"); in main()
/third_party/boost/boost/iostreams/detail/
Dfstream.hpp24 # define BOOST_IOSTREAMS_BASIC_OFSTREAM(Ch, Tr) std::basic_ofstream<Ch, Tr>
/third_party/boost/boost/property_tree/
Djson_parser.hpp122 std::basic_ofstream<typename Ptree::key_type::value_type> in write_json()
Dxml_parser.hpp131 std::basic_ofstream<typename Ptree::key_type::value_type> in write_xml()
Dinfo_parser.hpp130 std::basic_ofstream<typename Ptree::key_type::value_type> in write_info()
Dini_parser.hpp310 std::basic_ofstream<typename Ptree::key_type::value_type> in write_ini()
/third_party/boost/boost/iostreams/
Dtraits.hpp57 BOOST_IOSTREAMS_BOOL_TRAIT_DEF(is_ofstream, std::basic_ofstream, 2)
/third_party/boost/libs/dynamic_bitset/test/
Ddyn_bitset_unit_tests4.cpp291 std::basic_ofstream<wchar_t> of(stf.path().string().c_str()); in run_test_cases()