Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformat_functions.h456 vformat(string_view __fmt, format_args __args) { in vformat() function
467 vformat(wstring_view __fmt, wformat_args __args) { in vformat() function
477 return std::vformat(__fmt.get(), std::make_format_args(__args...)); in format()
484 return std::vformat(__fmt.get(), std::make_wformat_args(__args...)); in format()
589 vformat(locale __loc, string_view __fmt, format_args __args) { in vformat() function
600 vformat(locale __loc, wstring_view __fmt, wformat_args __args) { in vformat() function
610 return std::vformat(std::move(__loc), __fmt.get(), std::make_format_args(__args...)); in format()
617 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 Dprint216 string __str = std::vformat(__fmt, __args);
255 string __str = std::vformat(__fmt, __args);
301 // 8 - Throws: Any exception thrown by the call to vformat
H A Dostream1033 // - any exception thrown by the call to vformat is propagated without regard
1038 // string out = vformat(os.getloc(), fmt, args);
1042 string __o = std::vformat(__os.getloc(), __fmt, __args);
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dformat.inc38 using std::vformat;
/freebsd/sys/compat/linux/
H A Dlinux_ioctl.c3119 struct v4l2_format vformat; in linux_ioctl_v4l2() local
3212 if (linux_to_bsd_v4l2_format(&l_vformat, &vformat) != 0) in linux_ioctl_v4l2()
3215 error = fo_ioctl(fp, VIDIOC_G_FMT, &vformat, in linux_ioctl_v4l2()
3218 error = fo_ioctl(fp, VIDIOC_S_FMT, &vformat, in linux_ioctl_v4l2()
3221 error = fo_ioctl(fp, VIDIOC_TRY_FMT, &vformat, in linux_ioctl_v4l2()
3223 bsd_to_linux_v4l2_format(&vformat, &l_vformat); in linux_ioctl_v4l2()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc3073 SYMBOL(vformat, std::, <format>)