Lines Matching refs:range
335 "Random number seed to use when shuffling test orders. Must be in range "
370 "assertion fails. The valid range is 0 through 100, inclusive.");
397 // Generates a random number from [0, range), using a Linear
398 // Congruential Generator (LCG). Crashes if 'range' is 0 or greater
400 uint32_t Random::Generate(uint32_t range) {
405 GTEST_CHECK_(range > 0) << "Cannot generate a number in the range [0, 0).";
406 GTEST_CHECK_(range <= kMaxRange)
407 << "Generation of a number in [0, " << range << ") was requested, "
413 return state_ % range;
1987 // (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted
2052 // (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output
2260 // range from 0 to total_part_count() - 1. If i is not in that range,
2267 // Returns the i-th test property. i can range from 0 to
2268 // test_property_count() - 1. If i is not in that range, aborts the
2946 // Returns the i-th test among all the tests. i can range from 0 to
2947 // total_test_count() - 1. If i is not in that range, returns NULL.
2953 // Returns the i-th test among all the tests. i can range from 0 to
2954 // total_test_count() - 1. If i is not in that range, returns NULL.
5261 // Gets the i-th test suite among all the test suites. i can range from 0 to
5262 // total_test_suite_count() - 1. If i is not in that range, returns NULL.
5280 // Gets the i-th test suite among all the test suites. i can range from 0 to
5281 // total_test_suite_count() - 1. If i is not in that range, returns NULL.