Home
last modified time | relevance | path

Searched refs:format_char (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptionArgParser.cpp86 char *format_char = nullptr; in ToFormat() local
87 unsigned long byte_size = ::strtoul(s, &format_char, 0); in ToFormat()
90 s = format_char; in ToFormat()
101 char format_char = FormatManager::GetFormatAsFormatChar(f); in ToFormat() local
102 if (format_char) in ToFormat()
103 error_strm.Printf("'%c' or ", format_char); in ToFormat()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandOptionArgumentTable.cpp149 char format_char = FormatManager::GetFormatAsFormatChar(f); in FormatHelpTextCallback() local
150 if (format_char) in FormatHelpTextCallback()
151 sstr.Printf("'%c' or ", format_char); in FormatHelpTextCallback()
H A DCommandObjectTarget.cpp3087 const char format_char = m_options.m_format_array[i].first; in PrintModule() local
3089 switch (format_char) { in PrintModule()
3131 if (format_char == 'o') { in PrintModule()
3172 if (format_char == 'S') { in PrintModule()
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DFormatManager.cpp26 const char format_char; // One or more format characters that can be used for member
81 static bool GetFormatFromFormatChar(char format_char, Format &format) { in GetFormatFromFormatChar() argument
83 if (g_format_infos[i].format_char == format_char) { in GetFormatFromFormatChar()
146 return g_format_infos[i].format_char; in GetFormatAsFormatChar()
/llvm-project-15.0.7/lldb/source/Core/
H A DFormatEntity.cpp919 const char format_char = in DumpValue() local
921 if (format_char != '\0') in DumpValue()
922 special_directions_stream.Printf("%%%c", format_char); in DumpValue()