Lines Matching defs:number

628 // Parameter num_chars may additionally limit the number
659 // Given the total number of shards, the shard index, and the test id,
668 // Returns the number of elements in the given container that satisfy
814 // max_depth - the maximum number of stack frames to be included
816 // skip_count - the number of top frames to be skipped; doesn't count
921 // Gets the number of successful test cases.
924 // Gets the number of failed test cases.
927 // Gets the number of all test cases.
930 // Gets the number of all test cases that contain at least one test
934 // Gets the number of successful tests.
937 // Gets the number of failed tests.
940 // Gets the number of disabled tests.
943 // Gets the number of all tests.
946 // Gets the number of tests that should run.
999 // The maximum number of stack frames to be included is specified by
1001 // specifies the number of top frames to be skipped, which doesn't
1002 // count against the number of frames to be included.
1107 // Returns the number of tests that should run.
1171 // Gets the random number generator.
1275 // The random number seed used at the beginning of the test run.
1278 // Our random number generator.
1365 // number parameter. Returns true if that is possible.
1369 bool ParseNaturalNumber(const ::std::string& str, Integer* number) {
1380 // string-to-number conversion routines can return.
1403 *number = result;
1469 // The environment variable name for the total number of test shards.
1543 "Random number seed to use when shuffling test orders. Must be in range "
1549 "How many times to repeat each test. Specify a negative number "
1566 "The maximum number of stack frames to print when an "
1572 "This flag specifies the host name and the port number on which to stream "
1585 // Generates a random number from [0, range), using a Linear
1593 << "Cannot generate a number in the range [0, 0).";
1595 << "Generation of a number in [0, " << range << ") was requested, "
1609 // Test. g_init_gtest_count is set to the number of times
2007 // Gets the number of successful test cases.
2012 // Gets the number of failed test cases.
2017 // Gets the number of all test cases.
2022 // Gets the number of all test cases that contain at least one test
2028 // Gets the number of successful tests.
2033 // Gets the number of failed tests.
2038 // Gets the number of disabled tests.
2043 // Gets the number of all tests.
2048 // Gets the number of tests that should run.
2055 // The maximum number of stack frames to be included is specified by
2057 // specifies the number of top frames to be skipped, which doesn't
2058 // count against the number of frames to be included.
2800 // Parameter num_chars may additionally limit the number
3185 // Gets the number of all test parts. This is the sum of the number
3186 // of successful test parts and the number of failed test parts.
3191 // Returns the number of the test properties.
3662 // Gets the number of successful tests in this test case.
3667 // Gets the number of failed tests in this test case.
3676 // Get the number of tests in this test case that should run.
3681 // Gets the number of all tests.
4832 // max_depth - the maximum number of stack frames to be included
4834 // skip_count - the number of top frames to be skipped; doesn't count
4958 // Gets the number of successful test cases.
4963 // Gets the number of failed test cases.
4968 // Gets the number of all test cases.
4973 // Gets the number of all test cases that contain at least one test
4979 // Gets the number of successful tests.
4984 // Gets the number of failed tests.
4987 // Gets the number of disabled tests.
4992 // Gets the number of all tests.
4995 // Gets the number of tests that should run.
5666 // Given the total number of shards, the shard index, and the test id,
5680 // Returns the number of tests that should run.
5687 // num_runnable_tests are the number of tests that will
5689 // num_selected_tests are the number of tests to be run on
5814 // The maximum number of stack frames to be included is specified by
5816 // specifies the number of top frames to be skipped, which doesn't
5817 // count against the number of frames to be included.
6030 " Random number seed to use for shuffling test orders (between 1 and\n"
6297 "Indicates the file, line number, temporal index of "
6373 // one thread running, or cannot determine the number of threads, prior
6381 msg << "couldn't detect the number of threads.";
6780 // The line number on which the death test is located.
7037 // The line number on which the death test is located.
7600 // Given directory = "dir", base_name = "test", number = 0,
7601 // extension = "xml", returns "dir/test.xml". If number is greater
7606 int number,
7609 if (number == 0) {
7612 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
7701 // directory/base_name_<number>.extension if directory/base_name.extension
7702 // already exists. The number will be incremented until a pathname is found
7711 int number = 0;
7713 full_pathname.Set(MakeFileName(directory, base_name, number++, extension));
7884 // Returns the number of threads running in the process, or 0 to indicate that
7906 // There's no portable way to detect the number of threads, so we just
8231 // Formats a source file path and a line number as they would appear
8814 // interpreted as another hexadecimal digit in its number. Break string to
8839 // interpreted as another hexadecimal digit in its number. Break string to
8982 // Returns the number of TestPartResult objects in the array.