Home
last modified time | relevance | path

Searched refs:remove_prefix (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/strings/string.view/string.view.modifiers/
H A Dremove_prefix.pass.cpp29 sv1.remove_prefix ( 1 ); in test()
32 sv1.remove_prefix ( len - 1 ); in test()
36 sv1.remove_prefix ( 0 ); in test()
45 sv1.remove_prefix ( k ); in test_ce()
/llvm-project-15.0.7/llvm/utils/
H A Dupdate_test_prefix.py8 def remove_prefix(i, d=0): function
40 return remove_prefix(i, d+1)
46 t = { e.submit(remove_prefix, i): i for i in sys.argv[1:] }
/llvm-project-15.0.7/libc/src/stdlib/
H A Dgetenv.cpp36 cur.remove_prefix(env_var_name.size() + 1);
/llvm-project-15.0.7/libc/test/src/__support/CPP/
H A Dstringview_test.cpp82 a.remove_prefix(0); in TEST()
87 b.remove_prefix(4); in TEST()
92 c.remove_prefix(9); in TEST()
/llvm-project-15.0.7/libc/src/__support/CPP/
H A DStringView.h110 void remove_prefix(size_t N) { in remove_prefix() function
/llvm-project-15.0.7/libcxx/include/
H A Dstring_view118 constexpr void remove_prefix(size_type n);
415 void remove_prefix(size_type __n) _NOEXCEPT
417 _LIBCPP_ASSERT(__n <= size(), "remove_prefix() can't remove more than size()");