Home
last modified time | relevance | path

Searched refs:Output2 (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/
H A Dranges_partition_copy.pass.cpp47 template <class InIter = int*, class Sent = int*, class Output1 = int*, class Output2 = int*, class…
49 requires(InIter&& input, Sent&& sent, Output1&& output1, Output2&& output2, Pred&& pred) {
51 std::forward<Output1>(output1), std::forward<Output2>(output2), std::forward<Pred>(pred));
87 template <class InputRange, class Output1 = int*, class Output2 = int*, class Pred = UnaryPred>
89 requires(InputRange&& input, Output1&& output1, Output2&& output2, Pred&& pred) {
91 std::forward<Output1>(output1), std::forward<Output2>(output2), std::forward<Pred>(pred));
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp123 StringRef Output2(""); in TEST() local
146 EXPECT_EQ(Output2, Commands[1].Output) << ErrorMessage; in TEST()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DCommandLineTest.cpp268 const char *const Output2[] = {"a\\b", "c\"d", nullptr, in TEST() local
270 testCommandLineTokenizer(cl::TokenizeWindowsCommandLineFull, Input2, Output2, in TEST()