Searched refs:vformat (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | format_functions.h | 454 [[nodiscard]] _LIBCPP_ALWAYS_INLINE inline _LIBCPP_HIDE_FROM_ABI string vformat(string_view __fmt, … in vformat() function 465 vformat(wstring_view __fmt, wformat_args __args) { in vformat() function 475 return std::vformat(__fmt.get(), std::make_format_args(__args...)); in format() 482 return std::vformat(__fmt.get(), std::make_wformat_args(__args...)); in format() 587 vformat(locale __loc, string_view __fmt, format_args __args) { in vformat() function 598 vformat(locale __loc, wstring_view __fmt, wformat_args __args) { in vformat() function 608 return std::vformat(std::move(__loc), __fmt.get(), std::make_format_args(__args...)); in format() 615 return std::vformat(std::move(__loc), __fmt.get(), std::make_wformat_args(__args...)); in format()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | format | 73 string vformat(string_view fmt, format_args args); 74 wstring vformat(wstring_view fmt, wformat_args args); 75 string vformat(const locale& loc, string_view fmt, format_args args); 76 wstring vformat(const locale& loc, wstring_view fmt, wformat_args args);
|
H A D | print | 217 string __str = std::vformat(__fmt, __args); 256 string __str = std::vformat(__fmt, __args); 302 // 8 - Throws: Any exception thrown by the call to vformat
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | format.cppm |
|
/freebsd/contrib/llvm-project/libcxx/include/__ostream/ |
H A D | print.h | 45 string __o = std::vformat(__os.getloc(), __fmt, __args); in __vprint_nonunicode()
|
/freebsd/sys/compat/linux/ |
H A D | linux_ioctl.c | 3123 struct v4l2_format vformat; in linux_ioctl_v4l2() local 3216 if (linux_to_bsd_v4l2_format(&l_vformat, &vformat) != 0) in linux_ioctl_v4l2() 3219 error = fo_ioctl(fp, VIDIOC_G_FMT, &vformat, in linux_ioctl_v4l2() 3222 error = fo_ioctl(fp, VIDIOC_S_FMT, &vformat, in linux_ioctl_v4l2() 3225 error = fo_ioctl(fp, VIDIOC_TRY_FMT, &vformat, in linux_ioctl_v4l2() 3227 bsd_to_linux_v4l2_format(&vformat, &l_vformat); in linux_ioctl_v4l2()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 3073 SYMBOL(vformat, std::, <format>)
|