Home | History | Annotate | Download | only in gtest

Lines Matching defs:Range

7645   // Generates a random number from [0, range).  Crashes if 'range' is
7647 UInt32 Generate(UInt32 range);
7870 // Finds the first element in the iterator range [begin, end) that
8816 // Range(begin, end [, step]) - Yields values {begin, begin+step,
8821 // ValuesIn(begin,end) container, or an iterator range [begin, end).
10178 // Generates values from a range of two comparable values. Can be used to
10181 // This class is used in the Range() function.
10264 // ValuesIn() function. The elements are copied from the source range
10306 // can advance iterator_ beyond the end of the range, and we cannot
10308 // responsible for not calling Current() on an out-of-range iterator.
13811 // Advance should not be called on beyond-of-range iterators
13812 // so no component iterators must be beyond end of range, either.
13860 // We must report iterator past the end of the range when either of the
13861 // component iterators has reached the end of its range.
13871 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
13930 // Advance should not be called on beyond-of-range iterators
13931 // so no component iterators must be beyond end of range, either.
13987 // We must report iterator past the end of the range when either of the
13988 // component iterators has reached the end of its range.
13999 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
14067 // Advance should not be called on beyond-of-range iterators
14068 // so no component iterators must be beyond end of range, either.
14133 // We must report iterator past the end of the range when either of the
14134 // component iterators has reached the end of its range.
14146 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
14221 // Advance should not be called on beyond-of-range iterators
14222 // so no component iterators must be beyond end of range, either.
14295 // We must report iterator past the end of the range when either of the
14296 // component iterators has reached the end of its range.
14309 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
14394 // Advance should not be called on beyond-of-range iterators
14395 // so no component iterators must be beyond end of range, either.
14476 // We must report iterator past the end of the range when either of the
14477 // component iterators has reached the end of its range.
14491 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
14584 // Advance should not be called on beyond-of-range iterators
14585 // so no component iterators must be beyond end of range, either.
14674 // We must report iterator past the end of the range when either of the
14675 // component iterators has reached the end of its range.
14690 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
14793 // Advance should not be called on beyond-of-range iterators
14794 // so no component iterators must be beyond end of range, either.
14891 // We must report iterator past the end of the range when either of the
14892 // component iterators has reached the end of its range.
14908 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
15018 // Advance should not be called on beyond-of-range iterators
15019 // so no component iterators must be beyond end of range, either.
15125 // We must report iterator past the end of the range when either of the
15126 // component iterators has reached the end of its range.
15143 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
15261 // Advance should not be called on beyond-of-range iterators
15262 // so no component iterators must be beyond end of range, either.
15376 // We must report iterator past the end of the range when either of the
15377 // component iterators has reached the end of its range.
15395 // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
15785 // Range() returns generators providing sequences of values in a range.
15788 // Range(start, end)
15791 // Range(start, end, step)
15795 // * The generated sequences never include end. For example, Range(1, 5)
15796 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
15809 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
15815 internal::ParamGenerator<T> Range(T start, T end) {
15816 return Range(start, end, 1);
15831 // a range [begin, end) defined by a pair of STL-style iterators. These
17944 // Returns the i-th test part result among all the results. i can range
17945 // from 0 to test_property_count() - 1. If i is not in that range, aborts
17949 // Returns the i-th test property. i can range from 0 to
17950 // test_property_count() - 1. If i is not in that range, aborts the
18225 // Returns the i-th test among all the tests. i can range from 0 to
18226 // total_test_count() - 1. If i is not in that range, returns NULL.
18245 // Returns the i-th test among all the tests. i can range from 0 to
18246 // total_test_count() - 1. If i is not in that range, returns NULL.
18622 // Gets the i-th test case among all the test cases. i can range from 0 to
18623 // total_test_case_count() - 1. If i is not in that range, returns NULL.
18664 // Gets the i-th test case among all the test cases. i can range from 0 to
18665 // total_test_case_count() - 1. If i is not in that range, returns NULL.
19188 // Use it with one of the parameter generator defining functions, like Range(),
19211 // INSTANTIATE_TEST_CASE_P(OneToTenRange, FooTest, ::testing::Range(1, 10));