Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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.cpp3102 const char format_char = m_options.m_format_array[i].first; in PrintModule() local
3104 switch (format_char) { in PrintModule()
3146 if (format_char == 'o') { in PrintModule()
3187 if (format_char == 'S') { in PrintModule()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dc-format.c1634 int format_char; local
1984 format_char = *format_chars;
1985 if (format_char == 0
1987 && format_char == '%'))
1995 && strchr (fci->format_chars, format_char) == 0)
1999 if (ISGRAPH(format_char))
2001 format_char);
2004 format_char);
2011 C_STD_NAME (fci->std), format_char, fki->name);
2027 _(s->name), format_char, fki->name);
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dc-format.c1522 int format_char; in check_format_info_main() local
1884 format_char = *format_chars; in check_format_info_main()
1885 if (format_char == 0 in check_format_info_main()
1887 && format_char == '%')) in check_format_info_main()
1895 && strchr (fci->format_chars, format_char) == 0) in check_format_info_main()
1899 if (ISGRAPH (format_char)) in check_format_info_main()
1901 format_char); in check_format_info_main()
1904 format_char); in check_format_info_main()
1911 C_STD_NAME (fci->std), format_char, fki->name); in check_format_info_main()
1927 _(s->name), format_char, fki->name); in check_format_info_main()
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/regress/bin/ksh/
H A Dth788 . &format_char($ce) . "', got '"
789 . &format_char($cg) . "'";
793 format_char
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DFormatEntity.cpp912 const char format_char = in DumpValue() local
914 if (format_char != '\0') in DumpValue()
915 special_directions_stream.Printf("%%%c", format_char); in DumpValue()