Searched refs:format_char (Results 1 – 8 of 8) sorted by relevance
| /freebsd-12.1/sbin/ifconfig/ |
| H A D | af_link.c | 64 char *ether_format, *format_char; in link_status() local 77 for (format_char = strchr(ether_format, ':'); in link_status() 78 format_char != NULL; in link_status() 79 format_char = strchr(ether_format, ':')) in link_status() 80 *format_char = '-'; in link_status() 124 for (format_char = strchr(ether_format, ':'); in link_status() 125 format_char != NULL; in link_status() 126 format_char = strchr(ether_format, ':')) in link_status() 127 *format_char = '-'; in link_status()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/ |
| H A D | OptionArgParser.cpp | 87 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()
|
| H A D | CommandObject.cpp | 670 char format_char = FormatManager::GetFormatAsFormatChar(f); in FormatHelpTextCallback() local 671 if (format_char) in FormatHelpTextCallback() 672 sstr.Printf("'%c' or ", format_char); in FormatHelpTextCallback()
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | c-format.c | 1492 int format_char; in check_format_info_main() local 1853 format_char = *format_chars; in check_format_info_main() 1854 if (format_char == 0 in check_format_info_main() 1856 && format_char == '%')) in check_format_info_main() 1876 if (ISGRAPH (format_char)) in check_format_info_main() 1878 format_char); in check_format_info_main() 1881 format_char); in check_format_info_main() 1924 format_char, fki->name); in check_format_info_main() 1994 "year", format_char); in check_format_info_main() 2025 length_chars, format_char); in check_format_info_main() [all …]
|
| /freebsd-12.1/contrib/diff/lib/ |
| H A D | strftime.c | 476 int format_char; variable 626 format_char = *f; 627 switch (format_char) 758 *u++ = format_char; 999 format_char = L_('p');
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/ |
| H A D | FormatManager.cpp | 28 const char format_char; // One or more format characters that can be used for member 77 static bool GetFormatFromFormatChar(char format_char, Format &format) { in GetFormatFromFormatChar() argument 79 if (g_format_infos[i].format_char == format_char) { in GetFormatFromFormatChar() 142 return g_format_infos[i].format_char; in GetFormatAsFormatChar()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 948 const char format_char = in DumpValue() local 950 if (format_char != '\0') in DumpValue() 951 special_directions_stream.Printf("%%%c", format_char); in DumpValue()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 3192 const char format_char = m_options.m_format_array[i].first; in PrintModule() local 3194 switch (format_char) { in PrintModule() 3237 if (format_char == 'o') { in PrintModule() 3278 if (format_char == 'S') { in PrintModule()
|