Home
last modified time | relevance | path

Searched refs:__stream (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/src/
H A Dprint.cpp31 _LIBCPP_EXPORTED_FROM_ABI bool __is_windows_terminal(FILE* __stream) { in __is_windows_terminal() argument
37 intptr_t __handle = _get_osfhandle(fileno(__stream)); in __is_windows_terminal()
47 __write_to_windows_console([[maybe_unused]] FILE* __stream, [[maybe_unused]] wstring_view __view) { in __write_to_windows_console() argument
49 if (WriteConsoleW(reinterpret_cast<void*>(_get_osfhandle(fileno(__stream))), // clang-format aid in __write_to_windows_console()
61 _LIBCPP_EXPORTED_FROM_ABI bool __is_posix_terminal(FILE* __stream) { return isatty(fileno(__stream)…
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dprint204 return std::__is_windows_terminal(__stream);
206 return std::__is_posix_terminal(__stream);
215 _LIBCPP_ASSERT_NON_NULL(__stream, "__stream must be a valid pointer to an output C stream");
222 if (std::feof(__stream))
240 std::fflush(__stream);
253 std::fflush(__stream);
277 std::__write_to_windows_console(__stream, __view);
287 __vprint_unicode([[maybe_unused]] FILE* __stream,
291 _LIBCPP_ASSERT_NON_NULL(__stream, "__stream must be a valid pointer to an output C stream");
315 …__print::__vprint_unicode_posix(__stream, __fmt, __args, __write_nl, __print::__is_terminal(__stre…
[all …]
H A Diosfwd183 _LIBCPP_HIDE_FROM_ABI explicit __save_flags(__stream_type& __stream)
184 : __stream_(__stream), __fmtflags_(__stream.flags()), __fill_(__stream.fill()) {}
/freebsd-14.2/contrib/llvm-project/libcxx/include/__ranges/
H A Distream_view.h46 …IBCPP_HIDE_FROM_ABI constexpr explicit basic_istream_view(basic_istream<_CharT, _Traits>& __stream) in basic_istream_view() argument
47 : __stream_(std::addressof(__stream)) {} in basic_istream_view()