Searched refs:BOOST_FILESYSTEM_C_STR (Results 1 – 4 of 4) sorted by relevance
/third_party/boost/boost/filesystem/ |
D | fstream.hpp | 32 # define BOOST_FILESYSTEM_C_STR string().c_str() // use narrow, since wide not available macro 34 # define BOOST_FILESYSTEM_C_STR c_str() macro 66 return std::basic_filebuf<charT,traits>::open(p.BOOST_FILESYSTEM_C_STR, mode) in open() 89 : std::basic_ifstream<charT,traits>(p.BOOST_FILESYSTEM_C_STR, std::ios_base::in) {} in basic_ifstream() 92 : std::basic_ifstream<charT,traits>(p.BOOST_FILESYSTEM_C_STR, mode) {} in basic_ifstream() 95 { std::basic_ifstream<charT,traits>::open(p.BOOST_FILESYSTEM_C_STR, std::ios_base::in); } in open() 98 { std::basic_ifstream<charT,traits>::open(p.BOOST_FILESYSTEM_C_STR, mode); } in open() 121 : std::basic_ofstream<charT,traits>(p.BOOST_FILESYSTEM_C_STR, std::ios_base::out) {} in 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() [all …]
|
/third_party/boost/libs/filesystem/test/ |
D | copy_test.cpp | 30 # define BOOST_FILESYSTEM_C_STR string().c_str() // use narrow, since wide not available macro 32 # define BOOST_FILESYSTEM_C_STR c_str() macro 41 std::ofstream f(ph.BOOST_FILESYSTEM_C_STR, std::ios_base::out | std::ios_base::trunc); in create_file() 50 std::ifstream f(ph.BOOST_FILESYSTEM_C_STR); in verify_file()
|
D | fstream_test.cpp | 146 << BOOST_STRINGIZE(BOOST_FILESYSTEM_C_STR) << "\"\n"; in cpp_main()
|
D | operations_test.cpp | 105 # define BOOST_FILESYSTEM_C_STR string().c_str() // use narrow, since wide not available macro 107 # define BOOST_FILESYSTEM_C_STR c_str() macro 138 std::ofstream f(ph.BOOST_FILESYSTEM_C_STR); in create_file() 147 std::ifstream f(ph.BOOST_FILESYSTEM_C_STR); in verify_file() 2103 std::ofstream f(ph.BOOST_FILESYSTEM_C_STR); in temp_directory_path_tests() 2108 std::ifstream f(ph.BOOST_FILESYSTEM_C_STR); in temp_directory_path_tests()
|