Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Interpreter/
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()
DCommandObject.cpp690 char format_char = FormatManager::GetFormatAsFormatChar(f); in FormatHelpTextCallback() local
691 if (format_char) in FormatHelpTextCallback()
692 sstr.Printf("'%c' or ", format_char); in FormatHelpTextCallback()
/external/python/cpython3/Python/
Dpystrtod.c721 char format_char; in _PyOS_ascii_formatd() local
729 format_char = format[format_len - 1]; in _PyOS_ascii_formatd()
746 if (!(format_char == 'e' || format_char == 'E' || in _PyOS_ascii_formatd()
747 format_char == 'f' || format_char == 'F' || in _PyOS_ascii_formatd()
748 format_char == 'g' || format_char == 'G' || in _PyOS_ascii_formatd()
749 format_char == 'Z')) in _PyOS_ascii_formatd()
754 if (format_char == 'Z') { in _PyOS_ascii_formatd()
788 if (format_char == 'Z') in _PyOS_ascii_formatd()
/external/python/cpython2/Python/
Dpystrtod.c646 char format_char; in _PyOS_ascii_formatd() local
654 format_char = format[format_len - 1]; in _PyOS_ascii_formatd()
671 if (!(format_char == 'e' || format_char == 'E' || in _PyOS_ascii_formatd()
672 format_char == 'f' || format_char == 'F' || in _PyOS_ascii_formatd()
673 format_char == 'g' || format_char == 'G' || in _PyOS_ascii_formatd()
674 format_char == 'Z')) in _PyOS_ascii_formatd()
679 if (format_char == 'Z') { in _PyOS_ascii_formatd()
713 if (format_char == 'Z') in _PyOS_ascii_formatd()
/external/llvm-project/lldb/source/DataFormatters/
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()
/external/mksh/src/
Dcheck.pl898 &format_char($ce) . ", got " . &format_char($cg);
902 format_char subroutine
/external/llvm-project/lldb/source/Core/
DFormatEntity.cpp928 const char format_char = in DumpValue() local
930 if (format_char != '\0') in DumpValue()
931 special_directions_stream.Printf("%%%c", format_char); in DumpValue()
/external/llvm-project/lldb/source/Commands/
DCommandObjectTarget.cpp3125 const char format_char = m_options.m_format_array[i].first; in PrintModule() local
3127 switch (format_char) { in PrintModule()
3169 if (format_char == 'o') { in PrintModule()
3210 if (format_char == 'S') { in PrintModule()