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
4416 // Our solution is to combine the best part of the two approaches: a
6124 // Our solution is to combine the best part of the two approaches: a
8823 // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product
10659 // and at most 10 arguments in Combine. Please contact
10661 // Please note that the number of arguments to Combine is limited
15448 // Helper classes providing Combine() with polymorphic features. They allow
16775 // Combine() function.
16792 // Combine() allows the user to combine two or more sequences to produce
16796 // Combine(gen1, gen2, ..., genN)
16803 // Combine can have up to 10 arguments. This number is currently limited
16820 // Combine(Values("cat", "dog"),
16838 // Combine(Bool(), Bool()));
16841 internal::CartesianProductHolder2<Generator1, Generator2> Combine(
16848 internal::CartesianProductHolder3<Generator1, Generator2, Generator3> Combine(
16857 Generator4> Combine(
16868 Generator4, Generator5> Combine(
16879 Generator4, Generator5, Generator6> Combine(
16891 Generator4, Generator5, Generator6, Generator7> Combine(
16904 Generator4, Generator5, Generator6, Generator7, Generator8> Combine(
16918 Generator9> Combine(
16933 Generator10> Combine(
19189 // Values(), ValuesIn(), Bool(), and Combine().