Home
last modified time | relevance | path

Searched refs:Output1 (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.cpp119 StringRef Output1("file1.o"); in TEST() local
131 Output1 + "\"}," in TEST()
141 EXPECT_EQ(Output1, Commands[0].Output) << ErrorMessage; in TEST()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DCommandLineTest.cpp247 const char *const Output1[] = {"a", "b", "c", "d", ""}; in TEST() local
248 testCommandLineTokenizer(cl::TokenizeWindowsCommandLine, Input1, Output1); in TEST()
263 const char *const Output1[] = {"C:\\Program Files\\Whatever\\clang.exe", in TEST() local
265 testCommandLineTokenizer(cl::TokenizeWindowsCommandLineFull, Input1, Output1); in TEST()