Home
last modified time | relevance | path

Searched refs:FormatSection (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/libc/test/src/stdio/printf_core/
H A Dparser_test.cpp46 __llvm_libc::printf_core::FormatSection format_arr[10]; in TEST()
50 __llvm_libc::printf_core::FormatSection expected; in TEST()
91 __llvm_libc::printf_core::FormatSection expected; in TEST()
107 __llvm_libc::printf_core::FormatSection expected; in TEST()
129 __llvm_libc::printf_core::FormatSection expected; in TEST()
146 __llvm_libc::printf_core::FormatSection expected; in TEST()
163 __llvm_libc::printf_core::FormatSection expected; in TEST()
180 __llvm_libc::printf_core::FormatSection expected; in TEST()
197 __llvm_libc::printf_core::FormatSection expected; in TEST()
214 __llvm_libc::printf_core::FormatSection expected; in TEST()
[all …]
H A Dconverter_test.cpp30 __llvm_libc::printf_core::FormatSection raw_section; in TEST_F()
44 __llvm_libc::printf_core::FormatSection simple_conv; in TEST_F()
58 __llvm_libc::printf_core::FormatSection simple_conv; in TEST_F()
76 __llvm_libc::printf_core::FormatSection right_justified_conv; in TEST_F()
91 __llvm_libc::printf_core::FormatSection left_justified_conv; in TEST_F()
109 __llvm_libc::printf_core::FormatSection simple_conv; in TEST_F()
139 __llvm_libc::printf_core::FormatSection low_precision_conv; in TEST_F()
186 __llvm_libc::printf_core::FormatSection section; in TEST_F()
206 __llvm_libc::printf_core::FormatSection section; in TEST()
230 __llvm_libc::printf_core::FormatSection section; in TEST()
[all …]
/llvm-project-15.0.7/libc/utils/UnitTest/
H A DPrintfMatcher.h22 : public __llvm_libc::testing::Matcher<FormatSection> {
23 FormatSection expected;
24 FormatSection actual;
27 FormatSectionMatcher(FormatSection expectedValue) : expected(expectedValue) {} in FormatSectionMatcher()
29 bool match(FormatSection actualValue);
H A DPrintfMatcher.cpp22 bool FormatSectionMatcher::match(FormatSection actualValue) { in match()
39 void display(testutils::StreamWrapper &stream, FormatSection form) { in display()
/llvm-project-15.0.7/libc/src/stdio/printf_core/
H A Dptr_converter.h20 int inline convert_pointer(Writer *writer, const FormatSection &to_conv) { in convert_pointer()
26 FormatSection hex_conv; in convert_pointer()
H A Dcore_structs.h37 struct FormatSection { struct
57 bool operator==(const FormatSection &other) { argument
H A Dconverter.h23 int convert(Writer *writer, const FormatSection &to_conv);
H A Dprintf_main.cpp26 for (FormatSection cur_section = parser.get_next_section(); in printf_main()
H A Dchar_converter.h19 int inline convert_char(Writer *writer, const FormatSection &to_conv) { in convert_char()
H A Dconverter.cpp27 int convert(Writer *writer, const FormatSection &to_conv) { in convert()
H A Dstring_converter.h21 int inline convert_string(Writer *writer, const FormatSection &to_conv) { in convert_string()
H A Dwrite_int_converter.h22 int inline convert_write_int(Writer *writer, const FormatSection &to_conv) { in convert_write_int()
H A Dfloat_inf_nan_converter.h25 int inline convert_inf_nan(Writer *writer, const FormatSection &to_conv) { in convert_inf_nan()
H A Dparser.cpp29 FormatSection Parser::get_next_section() { in get_next_section()
30 FormatSection section; in get_next_section()
H A Doct_converter.h22 int inline convert_oct(Writer *writer, const FormatSection &to_conv) { in convert_oct()
H A Dhex_converter.h22 int convert_hex(Writer *writer, const FormatSection &to_conv) { in convert_hex()
H A Dparser.h74 FormatSection get_next_section();
H A Dint_converter.h23 int inline convert_int(Writer *writer, const FormatSection &to_conv) { in convert_int()
H A Dfloat_hex_converter.h27 int inline convert_float_hex_exp(Writer *writer, const FormatSection &to_conv) { in convert_float_hex_exp()