| /llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/ |
| H A D | operator_string.pass.cpp | 29 using string_type = path::string_type; in main() typedef 32 fs::path::string_type pathstr_value(value_str.begin(), value_str.end()); in main() 35 static_assert(std::is_convertible<path, string_type>::value, ""); in main() 36 static_assert(std::is_constructible<string_type, path>::value, ""); in main() 37 ASSERT_SAME_TYPE(string_type, decltype(p.operator string_type())); in main() 38 ASSERT_NOT_NOEXCEPT(p.operator string_type()); in main() 43 string_type s = p; in main()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.relative/ |
| H A D | relative.pass.cpp | 34 TEST_CHECK(output == fs::path::string_type(fs::current_path())); in TEST_CASE() 40 TEST_CHECK(output == fs::path::string_type(fs::current_path())); in TEST_CASE() 47 TEST_CHECK(output == fs::path::string_type(static_env.File)); in TEST_CASE() 54 TEST_CHECK(output == fs::path::string_type(static_env.Dir)); in TEST_CASE() 61 TEST_CHECK(output == fs::path::string_type(static_env.Dir)); in TEST_CASE() 68 TEST_CHECK(output == fs::path::string_type(static_env.Dir / "dir2")); in TEST_CASE() 91 TEST_CHECK(output == fs::path::string_type(static_env.Dir2)); in TEST_CASE() 105 TEST_CHECK(output == fs::path::string_type(static_env.Dir2)); in TEST_CASE() 107 TEST_CHECK(output == fs::path::string_type(static_env.Dir2 / "")); in TEST_CASE() 122 TEST_CHECK(output == fs::path::string_type(static_env.Dir)); in TEST_CASE() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/ |
| H A D | sync.pass.cpp | 24 typedef std::basic_string<CharT> string_type; typedef 27 string_type str_; 31 testbuf(const string_type& str) in testbuf() 58 typedef std::basic_string<CharT> string_type; typedef 61 string_type str_; 65 throwing_testbuf(const string_type& str) in throwing_testbuf()
|
| H A D | tellg.pass.cpp | 22 typedef std::basic_string<CharT> string_type; typedef 25 string_type str_; 29 testbuf(const string_type& str) in testbuf()
|
| H A D | seekg.pass.cpp | 22 typedef std::basic_string<CharT> string_type; typedef 25 string_type str_; 29 testbuf(const string_type& str) in testbuf()
|
| H A D | seekg_off.pass.cpp | 26 typedef std::basic_string<CharT> string_type; typedef 29 string_type str_; 33 testbuf(const string_type& str) in testbuf()
|
| H A D | peek.pass.cpp | 23 typedef std::basic_string<CharT> string_type; typedef 26 string_type str_; 30 testbuf(const string_type& str) in testbuf()
|
| H A D | readsome.pass.cpp | 22 typedef std::basic_string<CharT> string_type; typedef 25 string_type str_; 29 testbuf(const string_type& str) in testbuf()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/ |
| H A D | swap.pass.cpp | 32 fs::path::string_type ps1 = p1.native(); in main() 33 fs::path::string_type ps2 = p2.native(); in main() 50 fs::path::string_type ps1 = p1.native(); in main() 51 fs::path::string_type ps2 = p2.native(); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/iostream.format/input.streams/istream.rvalue/ |
| H A D | rvalue.pass.cpp | 24 typedef std::basic_string<CharT> string_type; typedef 27 string_type str_; 31 testbuf(const string_type& str) in testbuf()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/iostream.format/ext.manip/ |
| H A D | get_money.pass.cpp | 26 typedef std::basic_string<CharT> string_type; typedef 29 string_type str_; 33 testbuf(const string_type& str) in testbuf()
|
| H A D | get_time.pass.cpp | 26 typedef std::basic_string<CharT> string_type; typedef 29 string_type str_; 33 testbuf(const string_type& str) in testbuf()
|
| /llvm-project-15.0.7/libcxx/include/__filesystem/ |
| H A D | path.h | 527 path& assign(string_type&& __s) noexcept { 654 path& operator+=(const string_type& __x) { 908 return string_type(__root_name()); 911 return string_type(__root_directory()); 915 return string_type(__root_path_raw()); 921 return string_type(__relative_path()); 924 return string_type(__parent_path()); 927 return string_type(__filename()); 931 return string_type(__extension()); 1065 __pn_ = string_type(__s); [all …]
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | sstream | 219 string_type __str_; 234 explicit basic_stringbuf(const string_type& __s, 248 string_type str() const; 249 void str(const string_type& __s); 452 return string_type(__str_.get_allocator()); 684 string_type str() const { 688 void str(const string_type& __s) { 765 string_type str() const { 769 void str(const string_type& __s) { 845 string_type str() const { [all …]
|
| H A D | locale | 902 typedef typename numpunct<_CharT>::string_type string_type; 1469 typedef typename numpunct<char_type>::string_type string_type; 2364 string_type __c_; 2365 string_type __r_; 2366 string_type __x_; 2367 string_type __X_; 2630 virtual string_type do_curr_symbol() const {return string_type();} 2631 virtual string_type do_positive_sign() const {return string_type();} 2728 string_type& __sym, string_type& __psn, 3156 string_type& __sym, string_type& __sn, [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/ |
| H A D | signed_char.pass.cpp | 22 typedef std::basic_string<CharT> string_type; typedef 25 string_type str_; 29 testbuf(const string_type& str) in testbuf()
|
| H A D | unsigned_char.pass.cpp | 22 typedef std::basic_string<CharT> string_type; typedef 25 string_type str_; 29 testbuf(const string_type& str) in testbuf()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/ |
| H A D | long_double.pass.cpp | 26 typedef std::basic_string<CharT> string_type; typedef 29 string_type str_; 33 testbuf(const string_type& str) in testbuf()
|
| H A D | short.pass.cpp | 27 typedef std::basic_string<CharT> string_type; typedef 30 string_type str_; 34 testbuf(const string_type& str) in testbuf()
|
| H A D | int.pass.cpp | 27 typedef std::basic_string<CharT> string_type; typedef 30 string_type str_; 34 testbuf(const string_type& str) in testbuf()
|
| H A D | float.pass.cpp | 26 typedef std::basic_string<CharT> string_type; typedef 29 string_type str_; 33 testbuf(const string_type& str) in testbuf()
|
| H A D | long_long.pass.cpp | 26 typedef std::basic_string<CharT> string_type; typedef 29 string_type str_; 33 testbuf(const string_type& str) in testbuf()
|
| H A D | unsigned_int.pass.cpp | 26 typedef std::basic_string<CharT> string_type; typedef 29 string_type str_; 33 testbuf(const string_type& str) in testbuf()
|
| H A D | long.pass.cpp | 26 typedef std::basic_string<CharT> string_type; typedef 29 string_type str_; 33 testbuf(const string_type& str) in testbuf()
|
| H A D | double.pass.cpp | 26 typedef std::basic_string<CharT> string_type; typedef 29 string_type str_; 33 testbuf(const string_type& str) in testbuf()
|