Home
last modified time | relevance | path

Searched refs:printf_format (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp288 : string(s ? s : ""), printf_format(f ? f : ""), children_stack({{}}), in Entry()
295 : string(1, ch), printf_format(), children_stack({{}}), type(Type::String) { in Entry()
428 if (!printf_format.empty()) in Dump()
429 s.Printf("printf_format = \"%s\"", printf_format.c_str()); in Dump()
826 if (entry.printf_format.empty() && entry.fmt == eFormatDefault && in DumpValue()
983 entry.printf_format, target->GetTypeInfo()); in DumpValue()
1101 if (!entry.printf_format.empty()) in FormatThreadExtendedInfoRecurse()
1102 token_format = entry.printf_format.c_str(); in FormatThreadExtendedInfoRecurse()
1393 if (!entry.printf_format.empty()) in Format()
1394 format = entry.printf_format.c_str(); in Format()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h179 printf_format.clear(); in Clear()
196 if (printf_format != rhs.printf_format)
214 std::string printf_format; member