Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionArgParser.cpp87 char *format_char = nullptr; in ToFormat() local
88 unsigned long byte_size = ::strtoul(s, &format_char, 0); in ToFormat()
91 s = format_char; in ToFormat()
102 char format_char = FormatManager::GetFormatAsFormatChar(f); in ToFormat() local
103 if (format_char) in ToFormat()
104 error_strm.Printf("'%c' or ", format_char); in ToFormat()
/freebsd/contrib/llvm-project/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.cpp3388 const char format_char = m_options.m_format_array[i].first; in PrintModule() local
3390 switch (format_char) { in PrintModule()
3432 if (format_char == 'o') { in PrintModule()
3473 if (format_char == 'S') { in PrintModule()
/freebsd/sbin/ifconfig/
H A Daf_link.c62 char *format_char; in print_ether() local
64 while ((format_char = strchr(ether_format, ':')) != NULL) { in print_ether()
65 *format_char = '-'; in print_ether()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormatManager.cpp27 const char format_char; // One or more format characters that can be used for member
82 static bool GetFormatFromFormatChar(char format_char, Format &format) { in GetFormatFromFormatChar() argument
84 if (g_format_infos[i].format_char == format_char) { in GetFormatFromFormatChar()
147 return g_format_infos[i].format_char; in GetFormatAsFormatChar()
/freebsd/contrib/diff/lib/
H A Dstrftime.c476 int format_char; variable
626 format_char = *f;
627 switch (format_char)
758 *u++ = format_char;
999 format_char = L_('p');
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp905 const char format_char = in DumpValue() local
907 if (format_char != '\0') in DumpValue()
908 special_directions_stream.Printf("%%%c", format_char); in DumpValue()