/aosp_15_r20/external/cronet/url/ |
H A D | url_canon_stdstring.h | 71 using StringViewT = std::basic_string_view<CharT>; variable 75 void SetImpl(SetterFun fun, StringViewT str) { in SetImpl() 81 void SetSchemeStr(StringViewT str) { SetImpl(&ParentT::SetScheme, str); } in SetSchemeStr() 85 void SetUsernameStr(StringViewT str) { SetImpl(&ParentT::SetUsername, str); } in SetUsernameStr() 90 void SetPasswordStr(StringViewT str) { SetImpl(&ParentT::SetPassword, str); } in SetPasswordStr() 95 void SetHostStr(StringViewT str) { SetImpl(&ParentT::SetHost, str); } in SetHostStr() 100 void SetPortStr(StringViewT str) { SetImpl(&ParentT::SetPort, str); } in SetPortStr() 105 void SetPathStr(StringViewT str) { SetImpl(&ParentT::SetPath, str); } in SetPathStr() 110 void SetQueryStr(StringViewT str) { SetImpl(&ParentT::SetQuery, str); } in SetQueryStr() 115 void SetRefStr(StringViewT str) { SetImpl(&ParentT::SetRef, str); } in SetRefStr()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.fmtstr/ |
H A D | parse.pass.cpp | 31 template <class FormatterT, class StringViewT> 32 constexpr void test_parse(StringViewT fmt, std::size_t offset) { in test_parse() 33 using CharT = typename StringViewT::value_type; in test_parse() 38 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test_parse() 43 template <class StringViewT> 44 constexpr void test_formatters(StringViewT fmt, std::size_t offset) { in test_formatters() 45 using CharT = typename StringViewT::value_type; in test_formatters()
|
H A D | format.pass.cpp | 31 template <class StringViewT, class ArgT> 32 void test_format(StringViewT expected, ArgT arg) { in test_format() 33 using CharT = typename StringViewT::value_type; in test_format()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/containers/container.adaptors/container.adaptors.format/ |
H A D | parse.pass.cpp | 39 template <class Arg, class StringViewT> 40 constexpr void test_parse(StringViewT fmt, std::size_t offset) { in test_parse() 41 using CharT = typename StringViewT::value_type; in test_parse() 46 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test_parse() 51 template <class StringViewT> 52 constexpr void test_parse(StringViewT fmt, std::size_t offset) { in test_parse()
|
H A D | format.pass.cpp | 40 template <class StringViewT, class Arg> 41 void test_format(StringViewT expected, Arg arg) { in test_format() 42 using CharT = typename StringViewT::value_type; in test_format()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.formatter/ |
H A D | parse.pass.cpp | 35 template <class StringViewT> 36 constexpr void test_parse(StringViewT fmt, std::size_t offset) { in test_parse() 37 using CharT = typename StringViewT::value_type; in test_parse() 42 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test_parse()
|
H A D | format.pass.cpp | 39 template <class StringViewT> 40 void test_format(StringViewT expected, std::vector<int> arg) { in test_format() 41 using CharT = typename StringViewT::value_type; in test_format()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.fmtmap/ |
H A D | parse.pass.cpp | 35 template <class StringViewT> 36 constexpr void test_parse(StringViewT fmt, std::size_t offset) { in test_parse() 37 using CharT = typename StringViewT::value_type; in test_parse() 42 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test_parse()
|
H A D | format.pass.cpp | 38 template <class StringViewT> 39 void test_format(StringViewT expected, std::map<int, int> arg) { in test_format() 40 using CharT = typename StringViewT::value_type; in test_format()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.fmtdef/ |
H A D | parse.pass.cpp | 32 template <class StringViewT> 33 constexpr void test_parse(StringViewT fmt, std::size_t offset) { in test_parse() 34 using CharT = typename StringViewT::value_type; in test_parse() 39 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test_parse()
|
H A D | format.pass.cpp | 35 template <class StringViewT> 36 void test_format(StringViewT expected, std::array<int, 2> arg) { in test_format() 37 using CharT = typename StringViewT::value_type; in test_format()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.fmtset/ |
H A D | parse.pass.cpp | 35 template <class StringViewT> 36 constexpr void test_parse(StringViewT fmt, std::size_t offset) { in test_parse() 37 using CharT = typename StringViewT::value_type; in test_parse() 42 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test_parse()
|
H A D | format.pass.cpp | 38 template <class StringViewT> 39 void test_format(StringViewT expected, std::set<int> arg) { in test_format() 40 using CharT = typename StringViewT::value_type; in test_format()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/thread/thread.threads/thread.thread.class/thread.thread.id/ |
H A D | parse.pass.cpp | 35 template <class StringViewT> 36 constexpr void test_parse(StringViewT fmt, std::size_t offset) { in test_parse() 37 using CharT = typename StringViewT::value_type; in test_parse() 42 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test_parse()
|
H A D | format.pass.cpp | 36 template <class StringViewT> 37 void test_format(StringViewT expected, std::thread::id arg) { in test_format() 38 using CharT = typename StringViewT::value_type; in test_format()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/containers/sequences/vector.bool/vector.bool.fmt/ |
H A D | parse.pass.cpp | 36 template <class StringViewT> 37 constexpr void test_parse(StringViewT fmt, std::size_t offset) { in test_parse() 38 using CharT = typename StringViewT::value_type; in test_parse() 43 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test_parse()
|
H A D | format.pass.cpp | 37 template <class StringViewT> 38 void test_format(StringViewT expected, std::vector<bool>::reference arg) { in test_format() 39 using CharT = typename StringViewT::value_type; in test_format()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.tuple/ |
H A D | parse.pass.cpp | 36 template <class Arg, class StringViewT> 37 constexpr void test(StringViewT fmt, std::size_t offset) { in test() 38 using CharT = typename StringViewT::value_type; in test() 43 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test()
|
H A D | format.pass.cpp | 39 template <class StringViewT, class Arg> 40 void test(StringViewT expected, Arg arg) { in test() 41 using CharT = typename StringViewT::value_type; in test()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.formatter/format.formatter.spec/ |
H A D | formatter.bool.pass.cpp | 34 template <class StringT, class StringViewT> 35 void test(StringT expected, StringViewT fmt, bool arg, std::size_t offset) { in test() 41 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test()
|
H A D | formatter.unsigned_integral.pass.cpp | 42 template <class StringT, class StringViewT, class ArithmeticT> 43 void test(StringT expected, StringViewT fmt, ArithmeticT arg, std::size_t offset) { in test() 49 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test()
|
H A D | formatter.pointer.pass.cpp | 40 template <class StringT, class StringViewT, class PointerT> 41 void test(StringT expected, StringViewT fmt, PointerT arg, std::size_t offset) { in test() 47 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test()
|
H A D | formatter.signed_integral.pass.cpp | 42 template <class StringT, class StringViewT, class ArithmeticT> 43 void test(StringT expected, StringViewT fmt, ArithmeticT arg, std::size_t offset) { in test() 49 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test()
|
H A D | formatter.char.pass.cpp | 35 template <class StringT, class StringViewT, class ArgumentT> 36 void test(StringT expected, StringViewT fmt, ArgumentT arg, std::size_t offset) { in test() 42 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test()
|
H A D | formatter.c_string.pass.cpp | 35 template <class T, class StringT, class StringViewT, class CharT> 36 void test(StringT expected, StringViewT fmt, const CharT* a, std::size_t offset) { in test() 41 std::same_as<typename StringViewT::iterator> auto it = formatter.parse(parse_ctx); in test()
|