Home
last modified time | relevance | path

Searched refs:remove_suffix (Results 1 – 15 of 15) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/strings/string.view/string.view.modifiers/
H A Dremove_suffix.pass.cpp29 sv1.remove_suffix ( 1 ); in test()
32 sv1.remove_suffix ( len - 1 ); in test()
36 sv1.remove_suffix ( 0 ); in test()
46 sv1.remove_suffix ( k ); in test_ce()
/llvm-project-15.0.7/libc/test/src/__support/CPP/
H A Dstringview_test.cpp98 a.remove_suffix(0); in TEST()
103 b.remove_suffix(4); in TEST()
108 c.remove_suffix(9); in TEST()
/llvm-project-15.0.7/libcxx/test/std/utilities/format/format.formatter/format.formatter.spec/
H A Dformatter.handle.pass.cpp63 fmt.remove_suffix(1); in test_termination_condition()
H A Dformatter.bool.pass.cpp63 fmt.remove_suffix(1); in test_termination_condition()
H A Dformatter.char.pass.cpp62 fmt.remove_suffix(1); in test_termination_condition()
H A Dformatter.unsigned_integral.pass.cpp70 fmt.remove_suffix(1); in test_termination_condition()
H A Dformatter.pointer.pass.cpp75 fmt.remove_suffix(1); in test_termination_condition()
H A Dformatter.c_string.pass.cpp61 fmt.remove_suffix(1); in test_termination_condition()
H A Dformatter.signed_integral.pass.cpp70 fmt.remove_suffix(1); in test_termination_condition()
H A Dformatter.const_char_array.pass.cpp79 fmt.remove_suffix(1); in test_termination_condition()
H A Dformatter.char_array.pass.cpp75 fmt.remove_suffix(1); in test_termination_condition()
H A Dformatter.string.pass.cpp70 fmt.remove_suffix(1); in test_termination_condition()
H A Dformatter.floating_point.pass.cpp77 fmt.remove_suffix(1);
/llvm-project-15.0.7/libc/src/__support/CPP/
H A DStringView.h117 void remove_suffix(size_t N) { Len -= N; } in remove_suffix() function
/llvm-project-15.0.7/libcxx/include/
H A Dstring_view119 constexpr void remove_suffix(size_type n);
423 void remove_suffix(size_type __n) _NOEXCEPT
425 _LIBCPP_ASSERT(__n <= size(), "remove_suffix() can't remove more than size()");