Home
last modified time | relevance | path

Searched refs:test_function_call (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.lazy.split/
H A Dgeneral.pass.cpp163 assert(test_function_call(input, separator, expected)); in test_one()
191 assert(test_function_call("abc def", short_sep, expected)); in test_string_literals()
193 assert(test_function_call("abc12def", long_sep, expected)); in test_string_literals()
202 assert(test_function_call("", short_sep, expected)); in test_string_literals()
204 assert(test_function_call("", long_sep, expected)); in test_string_literals()
215 assert(test_function_call(input, " ", expected_unsplit)); in test_string_literals()
216 assert(test_function_call("abc \0def", " ", expected_split)); in test_string_literals()
225 assert(test_function_call("abc", empty_sep, expected)); in test_string_literals()
385 test_function_call("abc def", ' ', std::array{"abc", "def"}); in main_test()
388 test_function_call(L"abc def", L' ', std::array{L"abc", L"def"}); in main_test()
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-nullptr-basic.cpp155 void test_function_call() { in test_function_call() function