Lines Matching defs:value
78 // The value of GetTestTypeId() as seen from within the Google Test
105 // Parses a string for an Int32 flag, in the form of "--flag=value".
107 // On success, stores the value of the flag in *value, and returns
108 // true. On failure, returns false without changing *value.
109 GTEST_API_ bool ParseFlag(const char* str, const char* flag, int32_t* value);
112 // given --gtest_random_seed flag value.
696 // value-parameterized tests and instantiate and register them.
728 // value-parameterized tests are disabled, RegisterParameterizedTests is
748 // result already contains a property with the same key, the value will be
833 // Returns the value of GTEST_FLAG(catch_exceptions) at the moment
842 void set_catch_exceptions(bool value) { catch_exceptions_ = value; }
882 // ParameterizedTestRegistry object used to register value-parameterized
956 // The value of GTEST_FLAG(catch_exceptions) at the moment RunAllTests()
1203 std::string FormatBool(bool value) { return value ? "1" : "0"; }