Home
last modified time | relevance | path

Searched refs:vformat (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformat_functions.h490 [[nodiscard]] _LIBCPP_ALWAYS_INLINE inline _LIBCPP_HIDE_FROM_ABI string vformat(string_view __fmt, … in vformat() function
504 vformat(wstring_view __fmt, wformat_args __args) { in vformat() function
517 return std::vformat(__fmt.get(), std::make_format_args(__args...)); in format()
524 return std::vformat(__fmt.get(), std::make_wformat_args(__args...)); in format()
629 vformat(locale __loc, string_view __fmt, format_args __args) { in vformat() function
640 vformat(locale __loc, wstring_view __fmt, wformat_args __args) { in vformat() function
650 return std::vformat(std::move(__loc), __fmt.get(), std::make_format_args(__args...)); in format()
657 return std::vformat(std::move(__loc), __fmt.get(), std::make_wformat_args(__args...)); in format()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dformat73 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 Dprint220 string __str = std::vformat(__fmt, __args);
259 string __str = std::vformat(__fmt, __args);
305 // 8 - Throws: Any exception thrown by the call to vformat
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dformat.cppm
H A Dformat.inc38 using std::vformat;
/freebsd/contrib/llvm-project/libcxx/include/__ostream/
H A Dprint.h48 string __o = std::vformat(__os.getloc(), __fmt, __args); in __vprint_nonunicode()
/freebsd/sys/compat/linux/
H A Dlinux_ioctl.c3207 struct v4l2_format vformat; in linux_ioctl_v4l2() local
3300 if (linux_to_bsd_v4l2_format(&l_vformat, &vformat) != 0) in linux_ioctl_v4l2()
3303 error = fo_ioctl(fp, VIDIOC_G_FMT, &vformat, in linux_ioctl_v4l2()
3306 error = fo_ioctl(fp, VIDIOC_S_FMT, &vformat, in linux_ioctl_v4l2()
3309 error = fo_ioctl(fp, VIDIOC_TRY_FMT, &vformat, in linux_ioctl_v4l2()
3311 bsd_to_linux_v4l2_format(&vformat, &l_vformat); in linux_ioctl_v4l2()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc3145 SYMBOL(vformat, std::, <format>)