Home | History | Annotate | Download | only in gtest

Lines Matching defs:Range

7644   // Generates a random number from [0, range).  Crashes if 'range' is
7646 UInt32 Generate(UInt32 range);
7869 // Finds the first element in the iterator range [begin, end) that
8815 // Range(begin, end [, step]) - Yields values {begin, begin+step,
8820 // ValuesIn(begin,end) container, or an iterator range [begin, end).
10177 // Generates values from a range of two comparable values. Can be used to
10180 // This class is used in the Range() function.
10263 // ValuesIn() function. The elements are copied from the source range
10305 // can advance iterator_ beyond the end of the range, and we cannot
10307 // responsible for not calling Current() on an out-of-range iterator.
13810 // Advance should not be called on beyond-of-range iterators
13811 // so no component iterators must be beyond end of range, either.
13859 // We must report iterator past the end of the range when either of the
13860 // component iterators has reached the end of its range.
13870 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
13929 // Advance should not be called on beyond-of-range iterators
13930 // so no component iterators must be beyond end of range, either.
13986 // We must report iterator past the end of the range when either of the
13987 // component iterators has reached the end of its range.
13998 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
14066 // Advance should not be called on beyond-of-range iterators
14067 // so no component iterators must be beyond end of range, either.
14132 // We must report iterator past the end of the range when either of the
14133 // component iterators has reached the end of its range.
14145 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
14220 // Advance should not be called on beyond-of-range iterators
14221 // so no component iterators must be beyond end of range, either.
14294 // We must report iterator past the end of the range when either of the
14295 // component iterators has reached the end of its range.
14308 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
14393 // Advance should not be called on beyond-of-range iterators
14394 // so no component iterators must be beyond end of range, either.
14475 // We must report iterator past the end of the range when either of the
14476 // component iterators has reached the end of its range.
14490 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
14583 // Advance should not be called on beyond-of-range iterators
14584 // so no component iterators must be beyond end of range, either.
14673 // We must report iterator past the end of the range when either of the
14674 // component iterators has reached the end of its range.
14689 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
14792 // Advance should not be called on beyond-of-range iterators
14793 // so no component iterators must be beyond end of range, either.
14890 // We must report iterator past the end of the range when either of the
14891 // component iterators has reached the end of its range.
14907 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
15017 // Advance should not be called on beyond-of-range iterators
15018 // so no component iterators must be beyond end of range, either.
15124 // We must report iterator past the end of the range when either of the
15125 // component iterators has reached the end of its range.
15142 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
15260 // Advance should not be called on beyond-of-range iterators
15261 // so no component iterators must be beyond end of range, either.
15375 // We must report iterator past the end of the range when either of the
15376 // component iterators has reached the end of its range.
15394 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
15784 // Range() returns generators providing sequences of values in a range.
15787 // Range(start, end)
15790 // Range(start, end, step)
15794 // * The generated sequences never include end. For example, Range(1, 5)
15795 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
15808 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
15814 internal::ParamGenerator<T> Range(T start, T end) {
15815 return Range(start, end, 1);
15830 // a range [begin, end) defined by a pair of STL-style iterators. These
17943 // Returns the i-th test part result among all the results. i can range
17944 // from 0 to test_property_count() - 1. If i is not in that range, aborts
17948 // Returns the i-th test property. i can range from 0 to
17949 // test_property_count() - 1. If i is not in that range, aborts the
18224 // Returns the i-th test among all the tests. i can range from 0 to
18225 // total_test_count() - 1. If i is not in that range, returns NULL.
18244 // Returns the i-th test among all the tests. i can range from 0 to
18245 // total_test_count() - 1. If i is not in that range, returns NULL.
18621 // Gets the i-th test case among all the test cases. i can range from 0 to
18622 // total_test_case_count() - 1. If i is not in that range, returns NULL.
18663 // Gets the i-th test case among all the test cases. i can range from 0 to
18664 // total_test_case_count() - 1. If i is not in that range, returns NULL.
19187 // Use it with one of the parameter generator defining functions, like Range(),
19210 // INSTANTIATE_TEST_CASE_P(OneToTenRange, FooTest, ::testing::Range(1, 10));