Home | History | Annotate | Download | only in gtest

Lines Matching defs:Combine

219 //   GTEST_HAS_COMBINE      - the Combine() function (for value-parameterized
1776 // Determines whether to support Combine(). This only makes sense when
4415 // Our solution is to combine the best part of the two approaches: a
6123 // Our solution is to combine the best part of the two approaches: a
8822 // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product
10658 // and at most 10 arguments in Combine. Please contact
10660 // Please note that the number of arguments to Combine is limited
15447 // Helper classes providing Combine() with polymorphic features. They allow
16774 // Combine() function.
16791 // Combine() allows the user to combine two or more sequences to produce
16795 // Combine(gen1, gen2, ..., genN)
16802 // Combine can have up to 10 arguments. This number is currently limited
16819 // Combine(Values("cat", "dog"),
16837 // Combine(Bool(), Bool()));
16840 internal::CartesianProductHolder2<Generator1, Generator2> Combine(
16847 internal::CartesianProductHolder3<Generator1, Generator2, Generator3> Combine(
16856 Generator4> Combine(
16867 Generator4, Generator5> Combine(
16878 Generator4, Generator5, Generator6> Combine(
16890 Generator4, Generator5, Generator6, Generator7> Combine(
16903 Generator4, Generator5, Generator6, Generator7, Generator8> Combine(
16917 Generator9> Combine(
16932 Generator10> Combine(
19188 // Values(), ValuesIn(), Bool(), and Combine().