| /llvm-project-15.0.7/libc/test/src/stdio/printf_core/ |
| H A D | converter_test.cpp | 22 __llvm_libc::printf_core::StringWriter str_writer = 23 __llvm_libc::printf_core::StringWriter(str); 24 __llvm_libc::printf_core::Writer writer = __llvm_libc::printf_core::Writer( 26 __llvm_libc::printf_core::write_to_string); 30 __llvm_libc::printf_core::FormatSection raw_section; in TEST_F() 202 __llvm_libc::printf_core::Writer writer( in TEST() 204 __llvm_libc::printf_core::write_to_string); in TEST() 226 __llvm_libc::printf_core::Writer writer( in TEST() 228 __llvm_libc::printf_core::write_to_string); in TEST() 246 __llvm_libc::printf_core::Writer writer( in TEST() [all …]
|
| H A D | string_writer_test.cpp | 17 __llvm_libc::printf_core::Writer writer( in TEST() 25 __llvm_libc::printf_core::Writer writer( in TEST() 45 __llvm_libc::printf_core::Writer writer( in TEST() 61 __llvm_libc::printf_core::Writer writer( in TEST() 76 __llvm_libc::printf_core::Writer writer( in TEST() 92 __llvm_libc::printf_core::Writer writer( in TEST() 116 __llvm_libc::printf_core::Writer writer( in TEST() 133 __llvm_libc::printf_core::Writer writer( in TEST() 147 __llvm_libc::printf_core::Writer writer( in TEST() 162 __llvm_libc::printf_core::Writer writer( in TEST() [all …]
|
| H A D | parser_test.cpp | 24 __llvm_libc::printf_core::Parser parser(str, v); in init() 34 __llvm_libc::printf_core::Parser parser(str, v); in evaluate() 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() [all …]
|
| H A D | CMakeLists.txt | 10 libc.src.stdio.printf_core.parser 11 libc.src.stdio.printf_core.core_structs 22 libc.src.stdio.printf_core.writer 23 libc.src.stdio.printf_core.string_writer 33 libc.src.stdio.printf_core.converter 34 libc.src.stdio.printf_core.writer 35 libc.src.stdio.printf_core.string_writer 36 libc.src.stdio.printf_core.core_structs
|
| /llvm-project-15.0.7/libc/src/stdio/printf_core/ |
| H A D | vfprintf_internal.cpp | 19 namespace printf_core { namespace 24 printf_core::Writer writer(reinterpret_cast<void *>(&file_writer), in vfprintf_internal() 25 printf_core::write_to_file); in vfprintf_internal() 26 return printf_core::printf_main(&writer, format, args); in vfprintf_internal()
|
| H A D | CMakeLists.txt | 106 libc.src.stdio.printf_core.printf_main 107 libc.src.stdio.printf_core.file_writer 108 libc.src.stdio.printf_core.writer
|
| H A D | converter.h | 18 namespace printf_core {
|
| H A D | printf_main.h | 18 namespace printf_core {
|
| H A D | vfprintf_internal.h | 17 namespace printf_core {
|
| H A D | string_writer.h | 16 namespace printf_core {
|
| H A D | writer.h | 15 namespace printf_core {
|
| H A D | string_writer.cpp | 15 namespace printf_core { namespace
|
| H A D | file_writer.cpp | 15 namespace printf_core { namespace
|
| H A D | file_writer.h | 18 namespace printf_core {
|
| H A D | writer.cpp | 14 namespace printf_core { namespace
|
| H A D | ptr_converter.h | 18 namespace printf_core {
|
| H A D | printf_main.cpp | 20 namespace printf_core { namespace
|
| H A D | char_converter.h | 17 namespace printf_core {
|
| H A D | converter.cpp | 25 namespace printf_core { namespace
|
| /llvm-project-15.0.7/libc/src/stdio/ |
| H A D | sprintf.cpp | 29 printf_core::StringWriter str_writer(buffer); 30 printf_core::Writer writer(reinterpret_cast<void *>(&str_writer), 31 printf_core::write_to_string); 33 int ret_val = printf_core::printf_main(&writer, format, args);
|
| H A D | snprintf.cpp | 30 printf_core::StringWriter str_writer(buffer, (buffsz > 0 ? buffsz - 1 : 0)); 31 printf_core::Writer writer(reinterpret_cast<void *>(&str_writer), 32 printf_core::write_to_string); 34 int ret_val = printf_core::printf_main(&writer, format, args);
|
| H A D | CMakeLists.txt | 1 add_subdirectory(printf_core) 237 libc.src.stdio.printf_core.printf_main 238 libc.src.stdio.printf_core.string_writer 239 libc.src.stdio.printf_core.writer 249 libc.src.stdio.printf_core.printf_main 250 libc.src.stdio.printf_core.string_writer 251 libc.src.stdio.printf_core.writer 262 libc.src.stdio.printf_core.vfprintf_internal 276 libc.src.stdio.printf_core.vfprintf_internal
|
| H A D | printf.cpp | 26 int ret_val = printf_core::vfprintf_internal(
|
| H A D | fprintf.cpp | 28 int ret_val = printf_core::vfprintf_internal(stream, format, args);
|
| /llvm-project-15.0.7/libc/utils/UnitTest/ |
| H A D | PrintfMatcher.h | 18 namespace printf_core { 39 EXPECT_THAT(actual, __llvm_libc::printf_core::testing::FormatSectionMatcher( \ 43 ASSERT_THAT(actual, __llvm_libc::printf_core::testing::FormatSectionMatcher( \
|