Lines Matching defs:value
113 ::std::string PrintToString(const T& value);
125 // An IgnoredValue object can be implicitly constructed from ANY value.
130 // This constructor template allows any value to be implicitly
138 typename std::enable_if<!std::is_convertible<T, Sink>::value,
274 // comparing two numbers. The larger the value, the more error we
275 // allow. A 0 value means that two numbers must be exactly the same
290 // around may change its bits, although the new value is guaranteed
557 // value_param: text representation of the test's value parameter,
691 // return value is insignificant - we just need to return something
719 nullptr, // No value parameter.
758 // Test. The return value is insignificant - we just need to return
834 ConstCharPtr(const char* str) : value(str) {}
836 const char* value;
843 explicit TrueWithString(const char* str) : value(str) {}
844 explicit TrueWithString(const std::string& str) : value(str) {}
846 std::string value;
876 // HasDebugStringAndShortDebugString<T>::value is a compile-time bool constant
898 static constexpr bool value =
899 HasDebugStringType::value && HasShortDebugStringType::value;
904 constexpr bool HasDebugStringAndShortDebugString<T>::value;
916 // The value of the expression is insignificant.
963 static const bool value = sizeof(test<T>(nullptr, nullptr)) == sizeof(int);
967 const bool IsHashTable<T>::value;
1042 // CopyArray() degenerates into copying a single value.
1120 static_assert(!std::is_const<Element>::value, "Type must not be const");
1121 static_assert(!std::is_reference<Element>::value,
1217 : value(std::forward<Arg>(t)) {}
1218 value_type value;
1236 return FlatTupleElemBase<FlatTuple<T...>, I>::value;
1241 return FlatTupleElemBase<FlatTuple<T...>, I>::value;
1387 std::exception>::value, \
1390 gtest_msg.value = "Expected: " #statement \
1393 gtest_msg.value += GTEST_EXCEPTION_TYPE_(e); \
1394 gtest_msg.value += " with description \""; \
1395 gtest_msg.value += e.what(); \
1396 gtest_msg.value += "\"."; \
1417 gtest_msg.value = "Expected: " #statement \
1423 gtest_msg.value = "Expected: " #statement \
1430 : fail(gtest_msg.value.c_str())
1436 gtest_msg.value = "it throws "; \
1437 gtest_msg.value += GTEST_EXCEPTION_TYPE_(e); \
1438 gtest_msg.value += " with description \""; \
1439 gtest_msg.value += e.what(); \
1440 gtest_msg.value += "\"."; \
1458 gtest_msg.value = "it throws."; \
1465 gtest_msg.value) \