Home
last modified time | relevance | path

Searched refs:StringStream (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/libc/src/__support/CPP/
H A Dstringstream.h25 class StringStream {
45 constexpr StringStream(const span<char> &buf) : data(buf) {} in StringStream() function
54 StringStream &operator<<(string_view str) {
61 StringStream &operator<<(T val) {
67 StringStream &operator<<(T) {
77 StringStream &operator<<(const char *str) {
82 StringStream &operator<<(char a) {
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp74 raw_string_ostream StringStream; member in __anona5df02bb0111::SubSectionWriter
77 SubSectionWriter(raw_ostream &OS) : OS(OS), StringStream(OutString) {} in SubSectionWriter()
80 StringStream.flush(); in done()
86 raw_ostream &getStream() { return StringStream; } in getStream()
532 raw_string_ostream StringStream(OutString); in writeSectionContent() local
539 encodeULEB128(Func.Locals.size(), StringStream); in writeSectionContent()
541 encodeULEB128(LocalDecl.Count, StringStream); in writeSectionContent()
542 writeUint8(StringStream, LocalDecl.Type); in writeSectionContent()
545 Func.Body.writeAsBinary(StringStream); in writeSectionContent()
548 StringStream.flush(); in writeSectionContent()
[all …]
/freebsd/contrib/llvm-project/libc/src/__support/threads/linux/
H A Dthread.cpp394 static void construct_thread_name_file_path(cpp::StringStream &stream, in construct_thread_name_file_path()
397 << cpp::StringStream::ENDS; in construct_thread_name_file_path()
416 cpp::StringStream path_stream(path_name_buffer); in set_name()
440 int Thread::get_name(cpp::StringStream &name) const { in get_name()
453 name << name_buffer << cpp::StringStream::ENDS; in get_name()
458 cpp::StringStream path_stream(path_name_buffer); in get_name()
481 name << name_buffer << cpp::StringStream::ENDS; in get_name()
/freebsd/contrib/llvm-project/libc/src/__support/StringUtil/
H A Dsignal_to_string.cpp60 cpp::StringStream buffer_stream( in build_signal_string()
H A Derror_to_string.cpp60 cpp::StringStream buffer_stream( in build_error_string()
/freebsd/contrib/llvm-project/libc/src/__support/threads/
H A Dthread.h231 int get_name(cpp::StringStream &name) const;