|
cMHN 1.2
C++ library for learning MHNs with pRC
|
Namespaces | |
| namespace | edit_distance |
| namespace | gmockpp |
| namespace | internal_stream_operator_without_lexical_name_lookup |
| namespace | posix |
Typedefs | |
| template<typename... > | |
| using | void_t = void |
| template<typename F , typename... Args> | |
| using | call_result_t = decltype(std::declval<F>()(std::declval<Args>()...)) |
| template<typename R , typename F , typename... Args> | |
| using | is_callable_r = is_callable_r_impl<void, R, F, Args...> |
| template<typename T > | |
| using | identity_t = T |
| template<TypeKind kFromKind, typename From , TypeKind kToKind, typename To > | |
| using | LosslessArithmeticConvertibleImpl |
| template<typename From , typename To > | |
| using | LosslessArithmeticConvertible |
| template<size_t I, typename T > | |
| using | TupleElement = typename std::tuple_element<I, T>::type |
| typedef ::std::vector<::std::string > | Strings |
| typedef FloatingPoint< float > | Float |
| typedef FloatingPoint< double > | Double |
| typedef const void * | TypeId |
| using | SetUpTestSuiteFunc = void (*)() |
| using | TearDownTestSuiteFunc = void (*)() |
| using | SetUpTearDownSuiteFuncType = void (*)() |
| using | TypedTestCasePState = TypedTestSuitePState |
| typedef int | IsContainer |
| typedef char | IsNotContainer |
| template<size_t N> | |
| using | MakeIndexSequence = typename MakeIndexSequenceImpl<N>::type |
| template<typename... T> | |
| using | IndexSequenceFor = typename MakeIndexSequence<sizeof...(T)>::type |
| template<class TestCase > | |
| using | ParameterizedTestCaseInfo = ParameterizedTestSuiteInfo<TestCase> |
| typedef GTestMutexLock | MutexLock |
| using | BiggestInt = long long |
| using | TimeInMillis = int64_t |
Enumerations | |
| enum | TypeKind { kBool , kInteger , kFloatingPoint , kOther } |
| enum | LogSeverity { kInfo = 0 , kWarning = 1 } |
| enum | GTestLogSeverity { GTEST_INFO , GTEST_WARNING , GTEST_ERROR , GTEST_FATAL } |
| enum | CharFormat { kAsIs , kHexEscape , kSpecialEscape } |
Functions | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (void,) | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (::std::string, "") | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (bool, false) | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (unsigned char, '\0') | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (signed char, '\0') | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (char, '\0') | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (wchar_t, 0U) | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (unsigned short, 0U) | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (signed short, 0) | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (unsigned int, 0U) | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (signed int, 0) | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (unsigned long, 0UL) | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (signed long, 0L) | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (unsigned long long, 0) | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (signed long long, 0) | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (float, 0) | |
| GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ (double, 0) | |
| template<typename T > | |
| std::add_const< T >::type & | as_const (T &t) |
| template<typename F , typename Impl > | |
| ::testing::Action< F > | MakeAction () |
| template<typename F , typename Impl > | |
| ::testing::Action< F > | MakeAction (std::shared_ptr< Impl > impl) |
| constexpr bool | PrefixOf (const char *a, const char *b) |
| template<int N, int M> | |
| constexpr bool | StartsWith (const char(&prefix)[N], const char(&str)[M]) |
| template<int N, int M> | |
| constexpr bool | EndsWith (const char(&suffix)[N], const char(&str)[M]) |
| template<int N, int M> | |
| constexpr bool | Equals (const char(&a)[N], const char(&b)[M]) |
| template<int N> | |
| constexpr bool | ValidateSpec (const char(&spec)[N]) |
| template<typename F , typename... Args> | |
| auto | InvokeArgument (F f, Args... args) -> decltype(f(args...)) |
| template<typename T > | |
| std::true_type | StrictnessModifierProbe (const NiceMock< T > &) |
| template<typename T > | |
| std::true_type | StrictnessModifierProbe (const NaggyMock< T > &) |
| template<typename T > | |
| std::true_type | StrictnessModifierProbe (const StrictMock< T > &) |
| std::false_type | StrictnessModifierProbe (...) |
| template<typename T > | |
| constexpr bool | HasStrictnessModifier () |
| GTEST_API_ std::string | JoinAsKeyValueTuple (const std::vector< const char * > &names, const Strings &values) |
| GTEST_API_ std::string | ConvertIdentifierNameToWords (const char *id_name) |
| template<typename Pointer > | |
| const Pointer::element_type * | GetRawPointer (const Pointer &p) |
| template<typename Element > | |
| const Element * | GetRawPointer (const std::reference_wrapper< Element > &r) |
| template<typename Element > | |
| Element * | GetRawPointer (Element *p) |
| GMOCK_DECLARE_KIND_ (bool, kBool) | |
| GMOCK_DECLARE_KIND_ (char, kInteger) | |
| GMOCK_DECLARE_KIND_ (signed char, kInteger) | |
| GMOCK_DECLARE_KIND_ (unsigned char, kInteger) | |
| GMOCK_DECLARE_KIND_ (short, kInteger) | |
| GMOCK_DECLARE_KIND_ (unsigned short, kInteger) | |
| GMOCK_DECLARE_KIND_ (int, kInteger) | |
| GMOCK_DECLARE_KIND_ (unsigned int, kInteger) | |
| GMOCK_DECLARE_KIND_ (long, kInteger) | |
| GMOCK_DECLARE_KIND_ (unsigned long, kInteger) | |
| GMOCK_DECLARE_KIND_ (long long, kInteger) | |
| GMOCK_DECLARE_KIND_ (unsigned long long, kInteger) | |
| GMOCK_DECLARE_KIND_ (wchar_t, kInteger) | |
| GMOCK_DECLARE_KIND_ (float, kFloatingPoint) | |
| GMOCK_DECLARE_KIND_ (double, kFloatingPoint) | |
| GMOCK_DECLARE_KIND_ (long double, kFloatingPoint) | |
| GTEST_API_ FailureReporterInterface * | GetFailureReporter () |
| void | Assert (bool condition, const char *file, int line, const std::string &msg) |
| void | Assert (bool condition, const char *file, int line) |
| void | Expect (bool condition, const char *file, int line, const std::string &msg) |
| void | Expect (bool condition, const char *file, int line) |
| GTEST_API_ bool | LogIsVisible (LogSeverity severity) |
| GTEST_API_ void | Log (LogSeverity severity, const std::string &message, int stack_frames_to_skip) |
| GTEST_API_ WithoutMatchers | GetWithoutMatchers () |
| template<typename T > | |
| T | Invalid () |
| GTEST_API_ void | IllegalDoDefault (const char *file, int line) |
| template<typename F , typename Tuple , size_t... Idx> | |
| auto | ApplyImpl (F &&f, Tuple &&args, IndexSequence< Idx... >) -> decltype(std::forward< F >(f)(std::get< Idx >(std::forward< Tuple >(args))...)) |
| template<typename F , typename Tuple > | |
| auto | Apply (F &&f, Tuple &&args) -> decltype(ApplyImpl(std::forward< F >(f), std::forward< Tuple >(args), MakeIndexSequence< std::tuple_size< typename std::remove_reference< Tuple >::type >::value >())) |
| bool | Base64Unescape (const std::string &encoded, std::string *decoded) |
| static | GTEST_DEFINE_STATIC_MUTEX_ (g_log_mutex) |
| constexpr char | UndoWebSafeEncoding (char c) |
| constexpr char | UnBase64Impl (char c, const char *const base64, char carry) |
| template<size_t... I> | |
| constexpr std::array< char, 256 > | UnBase64Impl (IndexSequence< I... >, const char *const base64) |
| constexpr std::array< char, 256 > | UnBase64 (const char *const base64) |
| GTEST_API_ std::string | FormatMatcherDescription (bool negation, const char *matcher_name, const std::vector< const char * > ¶m_names, const Strings ¶m_values) |
| GTEST_API_ ElementMatcherPairs | FindMaxBipartiteMatching (const MatchMatrix &g) |
| static void | LogElementMatcherPairVec (const ElementMatcherPairs &pairs, ::std::ostream *stream) |
| GTEST_API_ | GTEST_DEFINE_STATIC_MUTEX_ (g_gmock_mutex) |
| GTEST_API_ void | LogWithLocation (testing::internal::LogSeverity severity, const char *file, int line, const std::string &message) |
| void | ReportUninterestingCall (CallReaction reaction, const std::string &msg) |
| static CallReaction | intToCallReaction (int mock_behavior) |
| static const char * | ParseGoogleMockFlagValue (const char *str, const char *flag_name, bool def_optional) |
| static bool | ParseGoogleMockFlag (const char *str, const char *flag_name, bool *value) |
| template<typename String > | |
| static bool | ParseGoogleMockFlag (const char *str, const char *flag_name, String *value) |
| static bool | ParseGoogleMockFlag (const char *str, const char *flag_name, int32_t *value) |
| template<typename CharType > | |
| void | InitGoogleMockImpl (int *argc, CharType **argv) |
| template<typename T > | |
| std::string | StreamableToString (const T &streamable) |
| template<typename T > | |
| void | UniversalPrint (const T &value, ::std::ostream *os) |
| GTEST_API_ void | PrintBytesInObjectTo (const unsigned char *obj_bytes, size_t count, ::std::ostream *os) |
| template<typename T > | |
| void | PrintWithFallback (const T &value, ::std::ostream *os) |
| GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ (char) | |
| GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ (wchar_t) | |
| GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ (char16_t) | |
| GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ (char32_t) | |
| GTEST_IMPL_FORMAT_C_STRING_AS_STRING_ (char, ::std::string) | |
| GTEST_IMPL_FORMAT_C_STRING_AS_STRING_ (char16_t, ::std::u16string) | |
| GTEST_IMPL_FORMAT_C_STRING_AS_STRING_ (char32_t, ::std::u32string) | |
| template<typename T1 , typename T2 > | |
| std::string | FormatForComparisonFailureMessage (const T1 &value, const T2 &) |
| template<typename T > | |
| void | PrintTo (const T &value, ::std::ostream *os) |
| GTEST_API_ void | PrintTo (unsigned char c, ::std::ostream *os) |
| GTEST_API_ void | PrintTo (signed char c, ::std::ostream *os) |
| void | PrintTo (char c, ::std::ostream *os) |
| void | PrintTo (bool x, ::std::ostream *os) |
| GTEST_API_ void | PrintTo (wchar_t wc, ::std::ostream *os) |
| GTEST_API_ void | PrintTo (char32_t c, ::std::ostream *os) |
| void | PrintTo (char16_t c, ::std::ostream *os) |
| template<typename FloatType > | |
| int | AppropriateResolution (FloatType val) |
| void | PrintTo (float f, ::std::ostream *os) |
| void | PrintTo (double d, ::std::ostream *os) |
| GTEST_API_ void | PrintTo (const char *s, ::std::ostream *os) |
| void | PrintTo (char *s, ::std::ostream *os) |
| void | PrintTo (const signed char *s, ::std::ostream *os) |
| void | PrintTo (signed char *s, ::std::ostream *os) |
| void | PrintTo (const unsigned char *s, ::std::ostream *os) |
| void | PrintTo (unsigned char *s, ::std::ostream *os) |
| GTEST_API_ void | PrintTo (const char16_t *s, ::std::ostream *os) |
| void | PrintTo (char16_t *s, ::std::ostream *os) |
| GTEST_API_ void | PrintTo (const char32_t *s, ::std::ostream *os) |
| void | PrintTo (char32_t *s, ::std::ostream *os) |
| GTEST_API_ void | PrintTo (const wchar_t *s, ::std::ostream *os) |
| void | PrintTo (wchar_t *s, ::std::ostream *os) |
| template<typename T > | |
| void | PrintRawArrayTo (const T a[], size_t count, ::std::ostream *os) |
| GTEST_API_ void | PrintStringTo (const ::std::string &s, ::std::ostream *os) |
| void | PrintTo (const ::std::string &s, ::std::ostream *os) |
| GTEST_API_ void | PrintU16StringTo (const ::std::u16string &s, ::std::ostream *os) |
| void | PrintTo (const ::std::u16string &s, ::std::ostream *os) |
| GTEST_API_ void | PrintU32StringTo (const ::std::u32string &s, ::std::ostream *os) |
| void | PrintTo (const ::std::u32string &s, ::std::ostream *os) |
| void | PrintTo (std::nullptr_t, ::std::ostream *os) |
| template<typename T > | |
| void | PrintTo (std::reference_wrapper< T > ref, ::std::ostream *os) |
| const void * | VoidifyPointer (const void *p) |
| const void * | VoidifyPointer (volatile const void *p) |
| template<typename T , typename Ptr > | |
| void | PrintSmartPointer (const Ptr &ptr, std::ostream *os, char) |
| template<typename T , typename Ptr , typename = typename std::enable_if<!std::is_void<T>::value && !std::is_array<T>::value>::type> | |
| void | PrintSmartPointer (const Ptr &ptr, std::ostream *os, int) |
| template<typename T , typename D > | |
| void | PrintTo (const std::unique_ptr< T, D > &ptr, std::ostream *os) |
| template<typename T > | |
| void | PrintTo (const std::shared_ptr< T > &ptr, std::ostream *os) |
| template<typename T > | |
| void | PrintTupleTo (const T &, std::integral_constant< size_t, 0 >, ::std::ostream *) |
| template<typename T , size_t I> | |
| void | PrintTupleTo (const T &t, std::integral_constant< size_t, I >, ::std::ostream *os) |
| template<typename... Types> | |
| void | PrintTo (const ::std::tuple< Types... > &t, ::std::ostream *os) |
| template<typename T1 , typename T2 > | |
| void | PrintTo (const ::std::pair< T1, T2 > &value, ::std::ostream *os) |
| template<typename T > | |
| void | UniversalPrintArray (const T *begin, size_t len, ::std::ostream *os) |
| GTEST_API_ void | UniversalPrintArray (const char *begin, size_t len, ::std::ostream *os) |
| GTEST_API_ void | UniversalPrintArray (const char16_t *begin, size_t len, ::std::ostream *os) |
| GTEST_API_ void | UniversalPrintArray (const char32_t *begin, size_t len, ::std::ostream *os) |
| GTEST_API_ void | UniversalPrintArray (const wchar_t *begin, size_t len, ::std::ostream *os) |
| template<typename T > | |
| void | UniversalTersePrint (const T &value, ::std::ostream *os) |
| template<typename Tuple > | |
| void | TersePrintPrefixToStrings (const Tuple &, std::integral_constant< size_t, 0 >, Strings *) |
| template<typename Tuple , size_t I> | |
| void | TersePrintPrefixToStrings (const Tuple &t, std::integral_constant< size_t, I >, Strings *strings) |
| template<typename Tuple > | |
| Strings | UniversalTersePrintTupleFieldsToStrings (const Tuple &value) |
| class UnitTestImpl * | GetUnitTestImpl () |
| void | ReportFailureInUnknownLocation (TestPartResult::Type result_type, const std::string &message) |
| std::set< std::string > * | GetIgnoredParameterizedTestSuites () |
| template<typename T1 , typename T2 > | |
| AssertionResult | CmpHelperEQFailure (const char *lhs_expression, const char *rhs_expression, const T1 &lhs, const T2 &rhs) |
| bool | operator== (faketype, faketype) |
| bool | operator!= (faketype, faketype) |
| template<typename T1 , typename T2 > | |
| AssertionResult | CmpHelperEQ (const char *lhs_expression, const char *rhs_expression, const T1 &lhs, const T2 &rhs) |
| template<typename T1 , typename T2 > | |
| AssertionResult | CmpHelperOpFailure (const char *expr1, const char *expr2, const T1 &val1, const T2 &val2, const char *op) |
| GTEST_API_ AssertionResult | CmpHelperSTREQ (const char *s1_expression, const char *s2_expression, const char *s1, const char *s2) |
| GTEST_API_ AssertionResult | CmpHelperSTRCASEEQ (const char *s1_expression, const char *s2_expression, const char *s1, const char *s2) |
| GTEST_API_ AssertionResult | CmpHelperSTRNE (const char *s1_expression, const char *s2_expression, const char *s1, const char *s2) |
| GTEST_API_ AssertionResult | CmpHelperSTRCASENE (const char *s1_expression, const char *s2_expression, const char *s1, const char *s2) |
| GTEST_API_ AssertionResult | CmpHelperSTREQ (const char *s1_expression, const char *s2_expression, const wchar_t *s1, const wchar_t *s2) |
| GTEST_API_ AssertionResult | CmpHelperSTRNE (const char *s1_expression, const char *s2_expression, const wchar_t *s1, const wchar_t *s2) |
| template<typename RawType > | |
| AssertionResult | CmpHelperFloatingPointEQ (const char *lhs_expression, const char *rhs_expression, RawType lhs_value, RawType rhs_value) |
| GTEST_API_ AssertionResult | DoubleNearPredFormat (const char *expr1, const char *expr2, const char *abs_error_expr, double val1, double val2, double abs_error) |
| GTEST_API_ std::string | AppendUserMessage (const std::string >est_msg, const Message &user_msg) |
| GTEST_API_ AssertionResult | EqFailure (const char *expected_expression, const char *actual_expression, const std::string &expected_value, const std::string &actual_value, bool ignoring_case) |
| GTEST_API_ std::string | GetBoolAssertionFailureMessage (const AssertionResult &assertion_result, const char *expression_text, const char *actual_predicate_value, const char *expected_predicate_value) |
| template<typename T > | |
| TypeId | GetTypeId () |
| GTEST_API_ TypeId | GetTestTypeId () |
| SetUpTearDownSuiteFuncType | GetNotDefaultOrNull (SetUpTearDownSuiteFuncType a, SetUpTearDownSuiteFuncType def) |
| GTEST_API_ TestInfo * | MakeAndRegisterTestInfo (const char *test_suite_name, const char *name, const char *type_param, const char *value_param, CodeLocation code_location, TypeId fixture_class_id, SetUpTestSuiteFunc set_up_tc, TearDownTestSuiteFunc tear_down_tc, TestFactoryBase *factory) |
| GTEST_API_ bool | SkipPrefix (const char *prefix, const char **pstr) |
| GTEST_DISABLE_MSC_WARNINGS_PUSH_ (4251) class GTEST_API_ TypedTestSuitePState | |
| const char * | SkipComma (const char *str) |
| std::string | GetPrefixUntilComma (const char *str) |
| void | SplitString (const ::std::string &str, char delimiter, ::std::vector<::std::string > *dest) |
| template<typename NameGenerator > | |
| void | GenerateNamesRecursively (internal::None, std::vector< std::string > *, int) |
| template<typename NameGenerator , typename Types > | |
| void | GenerateNamesRecursively (Types, std::vector< std::string > *result, int i) |
| template<typename NameGenerator , typename Types > | |
| std::vector< std::string > | GenerateNames () |
| GTEST_API_ void | RegisterTypeParameterizedTestSuite (const char *test_suite_name, CodeLocation code_location) |
| GTEST_API_ void | RegisterTypeParameterizedTestSuiteInstantiation (const char *case_name) |
| GTEST_API_ std::string | GetCurrentOsStackTraceExceptTop (int skip_count) |
| GTEST_API_ bool | AlwaysTrue () |
| bool | AlwaysFalse () |
| template<class C , class Iterator = decltype(::std::declval<const C&>().begin()), class = decltype(::std::declval<const C&>().end()), class = decltype(++::std::declval<Iterator&>()), class = decltype(*::std::declval<Iterator>()), class = typename C::const_iterator> | |
| IsContainer | IsContainerTest (int) |
| template<class C > | |
| IsNotContainer | IsContainerTest (long) |
| template<typename T , typename U > | |
| bool | ArrayEq (const T *lhs, size_t size, const U *rhs) |
| template<typename T , typename U > | |
| bool | ArrayEq (const T &lhs, const U &rhs) |
| template<typename T , typename U , size_t N> | |
| bool | ArrayEq (const T(&lhs)[N], const U(&rhs)[N]) |
| template<typename Iter , typename Element > | |
| Iter | ArrayAwareFind (Iter begin, Iter end, const Element &elem) |
| template<typename T , typename U > | |
| void | CopyArray (const T *from, size_t size, U *to) |
| template<typename T , typename U > | |
| void | CopyArray (const T &from, U *to) |
| template<typename T , typename U , size_t N> | |
| void | CopyArray (const T(&from)[N], U(*to)[N]) |
| GTEST_INTERNAL_DEPRECATED ("INSTANTIATE_TEST_CASE_P is deprecated, please use " "INSTANTIATE_TEST_SUITE_P") const expr bool InstantiateTestCase_P_IsDeprecated() | |
| GTEST_INTERNAL_DEPRECATED ("TYPED_TEST_CASE_P is deprecated, please use " "TYPED_TEST_SUITE_P") const expr bool TypedTestCase_P_IsDeprecated() | |
| GTEST_INTERNAL_DEPRECATED ("TYPED_TEST_CASE is deprecated, please use " "TYPED_TEST_SUITE") const expr bool TypedTestCaseIsDeprecated() | |
| GTEST_INTERNAL_DEPRECATED ("REGISTER_TYPED_TEST_CASE_P is deprecated, please use " "REGISTER_TYPED_TEST_SUITE_P") const expr bool RegisterTypedTestCase_P_IsDeprecated() | |
| GTEST_INTERNAL_DEPRECATED ("INSTANTIATE_TYPED_TEST_CASE_P is deprecated, please use " "INSTANTIATE_TYPED_TEST_SUITE_P") const expr bool InstantiateTypedTestCase_P_IsDeprecated() | |
| GTEST_API_ void | ReportInvalidTestSuiteType (const char *test_suite_name, CodeLocation code_location) |
| template<class ParamType > | |
| std::string | DefaultParamName (const TestParamInfo< ParamType > &info) |
| template<typename T = int> | |
| void | TestNotEmpty () |
| template<typename T = int> | |
| void | TestNotEmpty (const T &) |
| GTEST_API_ void | InsertSyntheticTestCase (const std::string &name, CodeLocation location, bool has_test_p) |
| GTEST_API_ bool | IsTrue (bool condition) |
| GTEST_API_::std::string | FormatFileLocation (const char *file, int line) |
| GTEST_API_::std::string | FormatCompilerIndependentFileLocation (const char *file, int line) |
| void | LogToStderr () |
| void | FlushInfoLog () |
| template<typename To > | |
| To | ImplicitCast_ (To x) |
| template<class Derived , class Base > | |
| Derived * | CheckedDowncastToActualType (Base *base) |
| GTEST_API_ void | CaptureStdout () |
| GTEST_API_ std::string | GetCapturedStdout () |
| GTEST_API_ void | CaptureStderr () |
| GTEST_API_ std::string | GetCapturedStderr () |
| GTEST_API_ size_t | GetFileSize (FILE *file) |
| GTEST_API_ std::string | ReadEntireFile (FILE *file) |
| GTEST_API_ std::vector< std::string > | GetArgvs () |
| GTEST_API_ size_t | GetThreadCount () |
| bool | IsAlpha (char ch) |
| bool | IsAlNum (char ch) |
| bool | IsDigit (char ch) |
| bool | IsLower (char ch) |
| bool | IsSpace (char ch) |
| bool | IsUpper (char ch) |
| bool | IsXDigit (char ch) |
| bool | IsXDigit (char16_t ch) |
| bool | IsXDigit (char32_t ch) |
| bool | IsXDigit (wchar_t ch) |
| char | ToLower (char ch) |
| char | ToUpper (char ch) |
| std::string | StripTrailingSpaces (std::string str) |
| GTEST_API_ bool | ParseInt32 (const Message &src_text, const char *str, int32_t *value) |
| bool | BoolFromGTestEnv (const char *flag, bool default_val) |
| GTEST_API_ int32_t | Int32FromGTestEnv (const char *flag, int32_t default_val) |
| std::string | OutputFlagAlsoCheckEnvVar () |
| const char * | StringFromGTestEnv (const char *flag, const char *default_val) |
| GTEST_API_ std::string | StringStreamToString (::std::stringstream *stream) |
| std::string | CanonicalizeForStdLibVersioning (std::string s) |
| template<typename T > | |
| std::string | GetTypeName () |
| GTEST_API_ TimeInMillis | GetTimeInMillis () |
| GTEST_API_ bool | ShouldUseColor (bool stdout_is_tty) |
| GTEST_API_ std::string | FormatTimeInMillisAsSeconds (TimeInMillis ms) |
| GTEST_API_ std::string | FormatEpochTimeInMillisAsIso8601 (TimeInMillis ms) |
| GTEST_API_ bool | ParseFlag (const char *str, const char *flag, int32_t *value) |
| int | GetRandomSeedFromFlag (int32_t random_seed_flag) |
| int | GetNextRandomSeed (int seed) |
| GTEST_API_ std::string | CodePointToUtf8 (uint32_t code_point) |
| GTEST_API_ std::string | WideStringToUtf8 (const wchar_t *str, int num_chars) |
| void | WriteToShardStatusFileIfNeeded () |
| GTEST_API_ bool | ShouldShard (const char *total_shards_str, const char *shard_index_str, bool in_subprocess_for_death_test) |
| GTEST_API_ int32_t | Int32FromEnvOrDie (const char *env_var, int32_t default_val) |
| GTEST_API_ bool | ShouldRunTestOnShard (int total_shards, int shard_index, int test_id) |
| template<class Container , typename Predicate > | |
| int | CountIf (const Container &c, Predicate predicate) |
| template<class Container , typename Functor > | |
| void | ForEach (const Container &c, Functor functor) |
| template<typename E > | |
| E | GetElementOr (const std::vector< E > &v, int i, E default_value) |
| template<typename E > | |
| void | ShuffleRange (internal::Random *random, int begin, int end, std::vector< E > *v) |
| template<typename E > | |
| void | Shuffle (internal::Random *random, std::vector< E > *v) |
| template<typename T > | |
| static void | Delete (T *x) |
| GTEST_API_ void | ParseGoogleTestFlagsOnly (int *argc, char **argv) |
| GTEST_API_ void | ParseGoogleTestFlagsOnly (int *argc, wchar_t **argv) |
| static std::string | FlagToEnvVar (const char *flag) |
| void | PrintBytesInObjectTo (const unsigned char *obj_bytes, size_t count, ostream *os) |
| bool | IsPrintableAscii (char32_t c) |
| template<typename Char > | |
| static CharFormat | PrintAsCharLiteralTo (Char c, ostream *os) |
| static CharFormat | PrintAsStringLiteralTo (char32_t c, ostream *os) |
| static const char * | GetCharWidthPrefix (char) |
| static const char * | GetCharWidthPrefix (signed char) |
| static const char * | GetCharWidthPrefix (unsigned char) |
| static const char * | GetCharWidthPrefix (char16_t) |
| static const char * | GetCharWidthPrefix (char32_t) |
| static const char * | GetCharWidthPrefix (wchar_t) |
| static CharFormat | PrintAsStringLiteralTo (char c, ostream *os) |
| static CharFormat | PrintAsStringLiteralTo (char16_t c, ostream *os) |
| static CharFormat | PrintAsStringLiteralTo (wchar_t c, ostream *os) |
| template<typename Char > | |
| void | PrintCharAndCodeTo (Char c, ostream *os) |
| void | PrintTo (wchar_t wc, ostream *os) |
| template<typename CharType > | |
| GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_ static GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ CharFormat | PrintCharsAsStringTo (const CharType *begin, size_t len, ostream *os) |
| template<typename CharType > | |
| GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_ static GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ void | UniversalPrintCharArray (const CharType *begin, size_t len, ostream *os) |
| void | UniversalPrintArray (const char *begin, size_t len, ostream *os) |
| void | UniversalPrintArray (const char16_t *begin, size_t len, ostream *os) |
| void | UniversalPrintArray (const char32_t *begin, size_t len, ostream *os) |
| void | UniversalPrintArray (const wchar_t *begin, size_t len, ostream *os) |
| void | PrintTo (const char *s, ostream *os) |
| void | PrintTo (const char16_t *s, ostream *os) |
| void | PrintTo (const char32_t *s, ostream *os) |
| void | PrintTo (const wchar_t *s, ostream *os) |
| void | PrintStringTo (const ::std::string &s, ostream *os) |
| void | PrintU16StringTo (const ::std::u16string &s, ostream *os) |
| void | PrintU32StringTo (const ::std::u32string &s, ostream *os) |
| static const char * | SkipSpaces (const char *str) |
| static std::vector< std::string > | SplitIntoTestNames (const char *src) |
| static bool | GTestIsInitialized () |
| static int | SumOverTestSuiteList (const std::vector< TestSuite * > &case_list, int(TestSuite::*method)() const) |
| static bool | TestSuitePassed (const TestSuite *test_suite) |
| static bool | TestSuiteFailed (const TestSuite *test_suite) |
| static bool | ShouldRunTestSuite (const TestSuite *test_suite) |
| static bool | PatternMatchesString (const std::string &name_str, const char *pattern, const char *pattern_end) |
| static AssertionResult | HasOneFailure (const char *, const char *, const char *, const TestPartResultArray &results, TestPartResult::Type type, const std::string &substr) |
| void | SplitString (const ::std::string &str, char delimiter, ::std::vector< ::std::string > *dest) |
| template<typename RawType > | |
| AssertionResult | FloatingPointLE (const char *expr1, const char *expr2, RawType val1, RawType val2) |
| uint32_t | ChopLowBits (uint32_t *bits, int n) |
| bool | IsUtf16SurrogatePair (wchar_t first, wchar_t second) |
| uint32_t | CreateCodePointFromUtf16SurrogatePair (wchar_t first, wchar_t second) |
| template<class T , typename Result > | |
| Result | HandleSehExceptionsInMethodIfSupported (T *object, Result(T::*method)(), const char *location) |
| template<class T , typename Result > | |
| Result | HandleExceptionsInMethodIfSupported (T *object, Result(T::*method)(), const char *location) |
| static std::string | PrintTestPartResultToString (const TestPartResult &test_part_result) |
| static void | PrintTestPartResult (const TestPartResult &test_part_result) |
| static const char * | GetAnsiColorCode (GTestColor color) |
| static void | ColoredPrintf (GTestColor color, const char *fmt,...) |
| static void | PrintFullTestCommentIfPresent (const TestInfo &test_info) |
| static void | SetUpEnvironment (Environment *env) |
| static void | TearDownEnvironment (Environment *env) |
| static void | PrintOnOneLine (const char *str, int max_length) |
| static const char * | ParseFlagValue (const char *str, const char *flag_name, bool def_optional) |
| static bool | ParseFlag (const char *str, const char *flag_name, bool *value) |
| template<typename String > | |
| static bool | ParseFlag (const char *str, const char *flag_name, String *value) |
| static bool | HasGoogleTestFlagPrefix (const char *str) |
| static void | PrintColorEncoded (const char *str) |
| static bool | ParseGoogleTestFlag (const char *const arg) |
| template<typename CharType > | |
| void | ParseGoogleTestFlagsOnlyImpl (int *argc, CharType **argv) |
| template<typename CharType > | |
| void | InitGoogleTestImpl (int *argc, CharType **argv) |
| TEST_F (ListenerTest, DoesFoo) | |
| TEST_F (ListenerTest, DoesBar) | |
| TEST (IsXDigitTest, WorksForNarrowAscii) | |
| TEST (IsXDigitTest, ReturnsFalseForNarrowNonAscii) | |
| TEST (IsXDigitTest, WorksForWideAscii) | |
| TEST (IsXDigitTest, ReturnsFalseForWideNonAscii) | |
| TEST (ImplicitCastTest, ConvertsPointers) | |
| TEST (ImplicitCastTest, CanUseInheritance) | |
| TEST (ImplicitCastTest, CanUseNonConstCastOperator) | |
| TEST (ImplicitCastTest, CanUseConstCastOperatorOnConstValues) | |
| TEST (ImplicitCastTest, CanSelectBetweenConstAndNonConstCasrAppropriately) | |
| TEST (ImplicitCastTest, CanUseImplicitConstructor) | |
| TEST (GtestCheckSyntaxTest, BehavesLikeASingleStatement) | |
| TEST (GtestCheckSyntaxTest, WorksWithSwitch) | |
| TEST (FormatFileLocationTest, FormatsFileLocation) | |
| TEST (FormatFileLocationTest, FormatsUnknownFile) | |
| TEST (FormatFileLocationTest, FormatsUknownLine) | |
| TEST (FormatFileLocationTest, FormatsUknownFileAndLine) | |
| TEST (FormatCompilerIndependentFileLocationTest, FormatsFileLocation) | |
| TEST (FormatCompilerIndependentFileLocationTest, FormatsUknownFile) | |
| TEST (FormatCompilerIndependentFileLocationTest, FormatsUknownLine) | |
| TEST (FormatCompilerIndependentFileLocationTest, FormatsUknownFileAndLine) | |
| TEST (GetThreadCountTest, ReturnsZeroWhenUnableToCountThreads) | |
| TEST (GtestCheckDeathTest, DiesWithCorrectOutputOnFailure) | |
| TEST (RegexEngineSelectionTest, SelectsCorrectRegexEngine) | |
| TEST (CaptureTest, CapturesStdout) | |
| TEST (CaptureTest, CapturesStderr) | |
| TEST (CaptureTest, CapturesStdoutAndStderr) | |
| TEST (CaptureDeathTest, CannotReenterStdoutCapture) | |
| TEST (ThreadLocalTest, DefaultConstructorInitializesToDefaultValues) | |
| TEST (ThreadLocalTest, SingleParamConstructorInitializesToParam) | |
| TEST (ThreadLocalTest, ValueDefaultContructorIsNotRequiredForParamVersion) | |
| TEST (ThreadLocalTest, GetAndPointerReturnSameValue) | |
| TEST (ThreadLocalTest, PointerAndConstPointerReturnSameValue) | |
| TYPED_TEST_SUITE (TestSuiteWithCommentTest, Types< int >) | |
| TYPED_TEST (TestSuiteWithCommentTest, Dummy) | |
| TEST (ApiTest, UnitTestImmutableAccessorsWork) | |
| AssertionResult | IsNull (const char *str) |
| TEST (ApiTest, TestSuiteImmutableAccessorsWork) | |
| TEST (ApiTest, TestSuiteDisabledAccessorsWork) | |
| TEST (ApiTest, DISABLED_Dummy1) | |
| TEST (DISABLED_Test, Dummy2) | |
Variables | |
| const char | kInfoVerbosity [] = "info" |
| const char | kWarningVerbosity [] = "warning" |
| const char | kErrorVerbosity [] = "error" |
| static constexpr char | kBase64 [] |
| static constexpr std::array< char, 256 > | kUnBase64 = UnBase64(kBase64) |
| GTEST_API_ ThreadLocal< Sequence * > | g_gmock_implicit_sequence |
| const char | kDeathTestStyleFlag [] = "death_test_style" |
| const char | kDeathTestUseFork [] = "death_test_use_fork" |
| const char | kInternalRunDeathTestFlag [] = "internal_run_death_test" |
| GTEST_API_ const char | kStackTraceMarker [] = "\nStack trace:\n" |
| constexpr BiggestInt | kMaxBiggestInt = (std::numeric_limits<BiggestInt>::max)() |
| GTEST_API_ const TypeId | kTestTypeIdInGoogleTest = GetTestTypeId() |
| const int | kMaxRandomSeed = 99999 |
| GTEST_API_ bool | g_help_flag = false |
| const char | kUnknownFile [] = "unknown file" |
| static ::std::vector< std::string > | g_argvs |
| constexpr uint32_t | kMaxCodePoint1 = (static_cast<uint32_t>(1) << 7) - 1 |
| constexpr uint32_t | kMaxCodePoint2 = (static_cast<uint32_t>(1) << (5 + 6)) - 1 |
| constexpr uint32_t | kMaxCodePoint3 |
| constexpr uint32_t | kMaxCodePoint4 |
| static const char | kTypeParamLabel [] = "TypeParam" |
| static const char | kValueParamLabel [] = "GetParam()" |
| static const char | kColorEncodedHelpMessage [] |
| const int | kTypedTestSuites = 1 |
| const int | kTypedTests = 1 |
| using testing::internal::BiggestInt = long long |
| using testing::internal::call_result_t = decltype(std::declval<F>()(std::declval<Args>()...)) |
| typedef FloatingPoint<double> testing::internal::Double |
| typedef FloatingPoint<float> testing::internal::Float |
| using testing::internal::identity_t = T |
| using testing::internal::IndexSequenceFor = typename MakeIndexSequence<sizeof...(T)>::type |
| using testing::internal::is_callable_r = is_callable_r_impl<void, R, F, Args...> |
| typedef int testing::internal::IsContainer |
| typedef char testing::internal::IsNotContainer |
| using testing::internal::LosslessArithmeticConvertible |
| using testing::internal::MakeIndexSequence = typename MakeIndexSequenceImpl<N>::type |
| using testing::internal::ParameterizedTestCaseInfo = ParameterizedTestSuiteInfo<TestCase> |
| using testing::internal::SetUpTearDownSuiteFuncType = void (*)() |
| using testing::internal::SetUpTestSuiteFunc = void (*)() |
| typedef ::std::vector<::std::string> testing::internal::Strings |
| using testing::internal::TearDownTestSuiteFunc = void (*)() |
| using testing::internal::TimeInMillis = int64_t |
| using testing::internal::TupleElement = typename std::tuple_element<I, T>::type |
| using testing::internal::TypedTestCasePState = TypedTestSuitePState |
| typedef const void* testing::internal::TypeId |
| using testing::internal::void_t = void |
|
inline |
| bool testing::internal::AlwaysTrue | ( | ) |
| std::string testing::internal::AppendUserMessage | ( | const std::string & | gtest_msg, |
| const Message & | user_msg ) |
| auto testing::internal::Apply | ( | F && | f, |
| Tuple && | args ) -> decltype(ApplyImpl( std::forward<F>(f), std::forward<Tuple>(args), MakeIndexSequence<std::tuple_size< typename std::remove_reference<Tuple>::type>::value>())) |
| auto testing::internal::ApplyImpl | ( | F && | f, |
| Tuple && | args, | ||
| IndexSequence< Idx... > | ) -> decltype(std::forward<F>(f)( std::get<Idx>(std::forward<Tuple>(args))...)) |
| int testing::internal::AppropriateResolution | ( | FloatType | val | ) |
| Iter testing::internal::ArrayAwareFind | ( | Iter | begin, |
| Iter | end, | ||
| const Element & | elem ) |
|
inline |
| bool testing::internal::ArrayEq | ( | const T * | lhs, |
| size_t | size, | ||
| const U * | rhs ) |
|
inline |
|
inline |
|
inline |
| bool testing::internal::Base64Unescape | ( | const std::string & | encoded, |
| std::string * | decoded ) |
| bool testing::internal::BoolFromGTestEnv | ( | const char * | flag, |
| bool | default_val ) |
|
inline |
| GTEST_API_ void testing::internal::CaptureStderr | ( | ) |
| GTEST_API_ void testing::internal::CaptureStdout | ( | ) |
| Derived * testing::internal::CheckedDowncastToActualType | ( | Base * | base | ) |
|
inline |
| AssertionResult testing::internal::CmpHelperEQ | ( | const char * | lhs_expression, |
| const char * | rhs_expression, | ||
| const T1 & | lhs, | ||
| const T2 & | rhs ) |
| AssertionResult testing::internal::CmpHelperEQFailure | ( | const char * | lhs_expression, |
| const char * | rhs_expression, | ||
| const T1 & | lhs, | ||
| const T2 & | rhs ) |
| AssertionResult testing::internal::CmpHelperFloatingPointEQ | ( | const char * | lhs_expression, |
| const char * | rhs_expression, | ||
| RawType | lhs_value, | ||
| RawType | rhs_value ) |
| AssertionResult testing::internal::CmpHelperOpFailure | ( | const char * | expr1, |
| const char * | expr2, | ||
| const T1 & | val1, | ||
| const T2 & | val2, | ||
| const char * | op ) |
| AssertionResult testing::internal::CmpHelperSTRCASEEQ | ( | const char * | s1_expression, |
| const char * | s2_expression, | ||
| const char * | s1, | ||
| const char * | s2 ) |
| AssertionResult testing::internal::CmpHelperSTRCASENE | ( | const char * | s1_expression, |
| const char * | s2_expression, | ||
| const char * | s1, | ||
| const char * | s2 ) |
| AssertionResult testing::internal::CmpHelperSTREQ | ( | const char * | s1_expression, |
| const char * | s2_expression, | ||
| const char * | s1, | ||
| const char * | s2 ) |
| AssertionResult testing::internal::CmpHelperSTREQ | ( | const char * | s1_expression, |
| const char * | s2_expression, | ||
| const wchar_t * | s1, | ||
| const wchar_t * | s2 ) |
| AssertionResult testing::internal::CmpHelperSTRNE | ( | const char * | s1_expression, |
| const char * | s2_expression, | ||
| const char * | s1, | ||
| const char * | s2 ) |
| AssertionResult testing::internal::CmpHelperSTRNE | ( | const char * | s1_expression, |
| const char * | s2_expression, | ||
| const wchar_t * | s1, | ||
| const wchar_t * | s2 ) |
| std::string testing::internal::CodePointToUtf8 | ( | uint32_t | code_point | ) |
|
static |
| GTEST_API_ std::string testing::internal::ConvertIdentifierNameToWords | ( | const char * | id_name | ) |
|
inline |
| void testing::internal::CopyArray | ( | const T * | from, |
| size_t | size, | ||
| U * | to ) |
|
inline |
|
inline |
|
inline |
| std::string testing::internal::DefaultParamName | ( | const TestParamInfo< ParamType > & | info | ) |
| AssertionResult testing::internal::DoubleNearPredFormat | ( | const char * | expr1, |
| const char * | expr2, | ||
| const char * | abs_error_expr, | ||
| double | val1, | ||
| double | val2, | ||
| double | abs_error ) |
|
constexpr |
| AssertionResult testing::internal::EqFailure | ( | const char * | expected_expression, |
| const char * | actual_expression, | ||
| const std::string & | expected_value, | ||
| const std::string & | actual_value, | ||
| bool | ignoring_case ) |
|
constexpr |
|
inline |
|
inline |
| GTEST_API_ ElementMatcherPairs testing::internal::FindMaxBipartiteMatching | ( | const MatchMatrix & | g | ) |
|
static |
| AssertionResult testing::internal::FloatingPointLE | ( | const char * | expr1, |
| const char * | expr2, | ||
| RawType | val1, | ||
| RawType | val2 ) |
|
inline |
| void testing::internal::ForEach | ( | const Container & | c, |
| Functor | functor ) |
| GTEST_API_::std::string testing::internal::FormatCompilerIndependentFileLocation | ( | const char * | file, |
| int | line ) |
| GTEST_API_ std::string testing::internal::FormatEpochTimeInMillisAsIso8601 | ( | TimeInMillis | ms | ) |
| GTEST_API_::std::string testing::internal::FormatFileLocation | ( | const char * | file, |
| int | line ) |
| std::string testing::internal::FormatForComparisonFailureMessage | ( | const T1 & | value, |
| const T2 & | ) |
| GTEST_API_ std::string testing::internal::FormatMatcherDescription | ( | bool | negation, |
| const char * | matcher_name, | ||
| const std::vector< const char * > & | param_names, | ||
| const Strings & | param_values ) |
| GTEST_API_ std::string testing::internal::FormatTimeInMillisAsSeconds | ( | TimeInMillis | ms | ) |
| std::vector< std::string > testing::internal::GenerateNames | ( | ) |
| void testing::internal::GenerateNamesRecursively | ( | internal::None | , |
| std::vector< std::string > * | , | ||
| int | ) |
| void testing::internal::GenerateNamesRecursively | ( | Types | , |
| std::vector< std::string > * | result, | ||
| int | i ) |
|
static |
| std::vector< std::string > testing::internal::GetArgvs | ( | ) |
| std::string testing::internal::GetBoolAssertionFailureMessage | ( | const AssertionResult & | assertion_result, |
| const char * | expression_text, | ||
| const char * | actual_predicate_value, | ||
| const char * | expected_predicate_value ) |
| GTEST_API_ std::string testing::internal::GetCapturedStderr | ( | ) |
| GTEST_API_ std::string testing::internal::GetCapturedStdout | ( | ) |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
| GTEST_NO_INLINE_ GTEST_NO_TAIL_CALL_ std::string testing::internal::GetCurrentOsStackTraceExceptTop | ( | int | skip_count | ) |
|
inline |
| GTEST_API_ FailureReporterInterface * testing::internal::GetFailureReporter | ( | ) |
| size_t testing::internal::GetFileSize | ( | FILE * | file | ) |
| std::set< std::string > * testing::internal::GetIgnoredParameterizedTestSuites | ( | ) |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| TypeId testing::internal::GetTestTypeId | ( | ) |
| size_t testing::internal::GetThreadCount | ( | ) |
| TimeInMillis testing::internal::GetTimeInMillis | ( | ) |
| std::string testing::internal::GetTypeName | ( | ) |
|
inline |
| GTEST_API_ WithoutMatchers testing::internal::GetWithoutMatchers | ( | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | bool | , |
| kBool | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | char | , |
| kInteger | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | double | , |
| kFloatingPoint | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | float | , |
| kFloatingPoint | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | int | , |
| kInteger | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | long double | , |
| kFloatingPoint | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | long long | , |
| kInteger | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | long | , |
| kInteger | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | short | , |
| kInteger | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | signed char | , |
| kInteger | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | unsigned char | , |
| kInteger | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | unsigned int | , |
| kInteger | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | unsigned long long | , |
| kInteger | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | unsigned long | , |
| kInteger | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | unsigned short | , |
| kInteger | ) |
| testing::internal::GMOCK_DECLARE_KIND_ | ( | wchar_t | , |
| kInteger | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | ::std::string | , |
| "" | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | bool | , |
| false | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | char | , |
| '\0' | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | double | , |
| 0 | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | float | , |
| 0 | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | signed char | , |
| '\0' | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | signed int | , |
| 0 | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | signed long long | , |
| 0 | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | signed long | , |
| 0L | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | signed short | , |
| 0 | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | unsigned char | , |
| '\0' | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | unsigned int | , |
| 0U | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | unsigned long long | , |
| 0 | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | unsigned long | , |
| 0UL | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | unsigned short | , |
| 0U | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | void | ) |
| testing::internal::GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_ | ( | wchar_t | , |
| 0U | ) |
| GTEST_API_ testing::internal::GTEST_DEFINE_STATIC_MUTEX_ | ( | g_gmock_mutex | ) |
|
static |
| testing::internal::GTEST_DISABLE_MSC_WARNINGS_PUSH_ | ( | 4251 | ) |
| testing::internal::GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ | ( | char | ) |
| testing::internal::GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ | ( | char16_t | ) |
| testing::internal::GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ | ( | char32_t | ) |
| testing::internal::GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ | ( | wchar_t | ) |
| testing::internal::GTEST_IMPL_FORMAT_C_STRING_AS_STRING_ | ( | char | , |
| ::std::string | ) |
| testing::internal::GTEST_IMPL_FORMAT_C_STRING_AS_STRING_ | ( | char16_t | , |
| ::std::u16string | ) |
| testing::internal::GTEST_IMPL_FORMAT_C_STRING_AS_STRING_ | ( | char32_t | , |
| ::std::u32string | ) |
| testing::internal::GTEST_INTERNAL_DEPRECATED | ( | "INSTANTIATE_TEST_CASE_P is | deprecated, |
| please use " "INSTANTIATE_TEST_SUITE_P" | ) const |
| testing::internal::GTEST_INTERNAL_DEPRECATED | ( | "INSTANTIATE_TYPED_TEST_CASE_P is | deprecated, |
| please use " "INSTANTIATE_TYPED_TEST_SUITE_P" | ) const |
| testing::internal::GTEST_INTERNAL_DEPRECATED | ( | "REGISTER_TYPED_TEST_CASE_P is | deprecated, |
| please use " "REGISTER_TYPED_TEST_SUITE_P" | ) const |
| testing::internal::GTEST_INTERNAL_DEPRECATED | ( | "TYPED_TEST_CASE is | deprecated, |
| please use " "TYPED_TEST_SUITE" | ) const |
| testing::internal::GTEST_INTERNAL_DEPRECATED | ( | "TYPED_TEST_CASE_P is | deprecated, |
| please use " "TYPED_TEST_SUITE_P" | ) const |
|
static |
| Result testing::internal::HandleExceptionsInMethodIfSupported | ( | T * | object, |
| Result(T::* | method )(), | ||
| const char * | location ) |
| Result testing::internal::HandleSehExceptionsInMethodIfSupported | ( | T * | object, |
| Result(T::* | method )(), | ||
| const char * | location ) |
|
static |
|
static |
|
constexpr |
| GTEST_API_ void testing::internal::IllegalDoDefault | ( | const char * | file, |
| int | line ) |
| void testing::internal::InitGoogleMockImpl | ( | int * | argc, |
| CharType ** | argv ) |
| void testing::internal::InitGoogleTestImpl | ( | int * | argc, |
| CharType ** | argv ) |
| void testing::internal::InsertSyntheticTestCase | ( | const std::string & | name, |
| CodeLocation | location, | ||
| bool | has_test_p ) |
| int32_t testing::internal::Int32FromEnvOrDie | ( | const char * | env_var, |
| int32_t | default_val ) |
| int32_t testing::internal::Int32FromGTestEnv | ( | const char * | flag, |
| int32_t | default_val ) |
|
static |
| auto testing::internal::InvokeArgument | ( | F | f, |
| Args... | args ) -> decltype(f(args...)) |
|
inline |
|
inline |
| IsContainer testing::internal::IsContainerTest | ( | int | ) |
| IsNotContainer testing::internal::IsContainerTest | ( | long | ) |
|
inline |
|
inline |
| AssertionResult testing::internal::IsNull | ( | const char * | str | ) |
|
inline |
|
inline |
| bool testing::internal::IsTrue | ( | bool | condition | ) |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| GTEST_API_ std::string testing::internal::JoinAsKeyValueTuple | ( | const std::vector< const char * > & | names, |
| const Strings & | values ) |
| GTEST_API_ void testing::internal::Log | ( | LogSeverity | severity, |
| const std::string & | message, | ||
| int | stack_frames_to_skip ) |
|
static |
| GTEST_API_ bool testing::internal::LogIsVisible | ( | LogSeverity | severity | ) |
|
inline |
| GTEST_API_ void testing::internal::LogWithLocation | ( | testing::internal::LogSeverity | severity, |
| const char * | file, | ||
| int | line, | ||
| const std::string & | message ) |
| ::testing::Action< F > testing::internal::MakeAction | ( | ) |
| ::testing::Action< F > testing::internal::MakeAction | ( | std::shared_ptr< Impl > | impl | ) |
| TestInfo * testing::internal::MakeAndRegisterTestInfo | ( | const char * | test_suite_name, |
| const char * | name, | ||
| const char * | type_param, | ||
| const char * | value_param, | ||
| CodeLocation | code_location, | ||
| TypeId | fixture_class_id, | ||
| SetUpTestSuiteFunc | set_up_tc, | ||
| TearDownTestSuiteFunc | tear_down_tc, | ||
| TestFactoryBase * | factory ) |
| std::string testing::internal::OutputFlagAlsoCheckEnvVar | ( | ) |
| bool testing::internal::ParseFlag | ( | const char * | str, |
| const char * | flag, | ||
| int32_t * | value ) |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
| void testing::internal::ParseGoogleTestFlagsOnly | ( | int * | argc, |
| char ** | argv ) |
| void testing::internal::ParseGoogleTestFlagsOnly | ( | int * | argc, |
| wchar_t ** | argv ) |
| void testing::internal::ParseGoogleTestFlagsOnlyImpl | ( | int * | argc, |
| CharType ** | argv ) |
| bool testing::internal::ParseInt32 | ( | const Message & | src_text, |
| const char * | str, | ||
| int32_t * | value ) |
|
static |
|
constexpr |
|
static |
|
static |
|
static |
|
static |
|
static |
| GTEST_API_ void testing::internal::PrintBytesInObjectTo | ( | const unsigned char * | obj_bytes, |
| size_t | count, | ||
| ::std::ostream * | os ) |
| void testing::internal::PrintBytesInObjectTo | ( | const unsigned char * | obj_bytes, |
| size_t | count, | ||
| ostream * | os ) |
| void testing::internal::PrintCharAndCodeTo | ( | Char | c, |
| ostream * | os ) |
|
static |
|
static |
|
static |
|
static |
| void testing::internal::PrintRawArrayTo | ( | const T | a[], |
| size_t | count, | ||
| ::std::ostream * | os ) |
| void testing::internal::PrintSmartPointer | ( | const Ptr & | ptr, |
| std::ostream * | os, | ||
| char | ) |
| void testing::internal::PrintSmartPointer | ( | const Ptr & | ptr, |
| std::ostream * | os, | ||
| int | ) |
| GTEST_API_ void testing::internal::PrintStringTo | ( | const ::std::string & | s, |
| ::std::ostream * | os ) |
| void testing::internal::PrintStringTo | ( | const ::std::string & | s, |
| ostream * | os ) |
|
static |
|
static |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| void testing::internal::PrintTo | ( | char32_t | c, |
| ::std::ostream * | os ) |
| void testing::internal::PrintTo | ( | const ::std::pair< T1, T2 > & | value, |
| ::std::ostream * | os ) |
|
inline |
| void testing::internal::PrintTo | ( | const ::std::tuple< Types... > & | t, |
| ::std::ostream * | os ) |
|
inline |
|
inline |
| GTEST_API_ void testing::internal::PrintTo | ( | const char * | s, |
| ::std::ostream * | os ) |
| void testing::internal::PrintTo | ( | const char * | s, |
| ostream * | os ) |
| GTEST_API_ void testing::internal::PrintTo | ( | const char16_t * | s, |
| ::std::ostream * | os ) |
| void testing::internal::PrintTo | ( | const char16_t * | s, |
| ostream * | os ) |
| GTEST_API_ void testing::internal::PrintTo | ( | const char32_t * | s, |
| ::std::ostream * | os ) |
| void testing::internal::PrintTo | ( | const char32_t * | s, |
| ostream * | os ) |
|
inline |
| void testing::internal::PrintTo | ( | const std::shared_ptr< T > & | ptr, |
| std::ostream * | os ) |
|
inline |
| GTEST_API_ void testing::internal::PrintTo | ( | const wchar_t * | s, |
| ::std::ostream * | os ) |
| void testing::internal::PrintTo | ( | const wchar_t * | s, |
| ostream * | os ) |
|
inline |
|
inline |
|
inline |
| void testing::internal::PrintTo | ( | signed char | c, |
| ::std::ostream * | os ) |
|
inline |
| void testing::internal::PrintTo | ( | std::reference_wrapper< T > | ref, |
| ::std::ostream * | os ) |
|
inline |
| void testing::internal::PrintTo | ( | unsigned char | c, |
| ::std::ostream * | os ) |
|
inline |
| GTEST_API_ void testing::internal::PrintTo | ( | wchar_t | wc, |
| ::std::ostream * | os ) |
| void testing::internal::PrintTo | ( | wchar_t | wc, |
| ostream * | os ) |
| void testing::internal::PrintTupleTo | ( | const T & | , |
| std::integral_constant< size_t, 0 > | , | ||
| ::std::ostream * | ) |
| void testing::internal::PrintTupleTo | ( | const T & | t, |
| std::integral_constant< size_t, I > | , | ||
| ::std::ostream * | os ) |
| GTEST_API_ void testing::internal::PrintU16StringTo | ( | const ::std::u16string & | s, |
| ::std::ostream * | os ) |
| void testing::internal::PrintU16StringTo | ( | const ::std::u16string & | s, |
| ostream * | os ) |
| GTEST_API_ void testing::internal::PrintU32StringTo | ( | const ::std::u32string & | s, |
| ::std::ostream * | os ) |
| void testing::internal::PrintU32StringTo | ( | const ::std::u32string & | s, |
| ostream * | os ) |
| void testing::internal::PrintWithFallback | ( | const T & | value, |
| ::std::ostream * | os ) |
| std::string testing::internal::ReadEntireFile | ( | FILE * | file | ) |
| void testing::internal::RegisterTypeParameterizedTestSuite | ( | const char * | test_suite_name, |
| CodeLocation | code_location ) |
| void testing::internal::RegisterTypeParameterizedTestSuiteInstantiation | ( | const char * | case_name | ) |
| void testing::internal::ReportFailureInUnknownLocation | ( | TestPartResult::Type | result_type, |
| const std::string & | message ) |
| void testing::internal::ReportInvalidTestSuiteType | ( | const char * | test_suite_name, |
| CodeLocation | code_location ) |
| void testing::internal::ReportUninterestingCall | ( | CallReaction | reaction, |
| const std::string & | msg ) |
|
static |
| bool testing::internal::ShouldRunTestOnShard | ( | int | total_shards, |
| int | shard_index, | ||
| int | test_id ) |
|
static |
| bool testing::internal::ShouldShard | ( | const char * | total_shards_str, |
| const char * | shard_index_str, | ||
| bool | in_subprocess_for_death_test ) |
| bool testing::internal::ShouldUseColor | ( | bool | stdout_is_tty | ) |
|
inline |
| void testing::internal::ShuffleRange | ( | internal::Random * | random, |
| int | begin, | ||
| int | end, | ||
| std::vector< E > * | v ) |
|
inline |
| bool testing::internal::SkipPrefix | ( | const char * | prefix, |
| const char ** | pstr ) |
|
static |
|
static |
| void testing::internal::SplitString | ( | const ::std::string & | str, |
| char | delimiter, | ||
| ::std::vector< ::std::string > * | dest ) |
| void testing::internal::SplitString | ( | const ::std::string & | str, |
| char | delimiter, | ||
| ::std::vector<::std::string > * | dest ) |
|
constexpr |
| std::false_type testing::internal::StrictnessModifierProbe | ( | ... | ) |
| std::true_type testing::internal::StrictnessModifierProbe | ( | const NaggyMock< T > & | ) |
| std::true_type testing::internal::StrictnessModifierProbe | ( | const NiceMock< T > & | ) |
| std::true_type testing::internal::StrictnessModifierProbe | ( | const StrictMock< T > & | ) |
| const char * testing::internal::StringFromGTestEnv | ( | const char * | flag, |
| const char * | default_val ) |
| std::string testing::internal::StringStreamToString | ( | ::std::stringstream * | stream | ) |
|
inline |
|
static |
|
static |
| void testing::internal::TersePrintPrefixToStrings | ( | const Tuple & | , |
| std::integral_constant< size_t, 0 > | , | ||
| Strings * | ) |
| void testing::internal::TersePrintPrefixToStrings | ( | const Tuple & | t, |
| std::integral_constant< size_t, I > | , | ||
| Strings * | strings ) |
| testing::internal::TEST | ( | ApiTest | , |
| DISABLED_Dummy1 | ) |
| testing::internal::TEST | ( | ApiTest | , |
| TestSuiteDisabledAccessorsWork | ) |
| testing::internal::TEST | ( | ApiTest | , |
| TestSuiteImmutableAccessorsWork | ) |
| testing::internal::TEST | ( | ApiTest | , |
| UnitTestImmutableAccessorsWork | ) |
| testing::internal::TEST | ( | CaptureDeathTest | , |
| CannotReenterStdoutCapture | ) |
| testing::internal::TEST | ( | CaptureTest | , |
| CapturesStderr | ) |
| testing::internal::TEST | ( | CaptureTest | , |
| CapturesStdout | ) |
| testing::internal::TEST | ( | CaptureTest | , |
| CapturesStdoutAndStderr | ) |
| testing::internal::TEST | ( | DISABLED_Test | , |
| Dummy2 | ) |
| testing::internal::TEST | ( | FormatCompilerIndependentFileLocationTest | , |
| FormatsFileLocation | ) |
| testing::internal::TEST | ( | FormatCompilerIndependentFileLocationTest | , |
| FormatsUknownFile | ) |
| testing::internal::TEST | ( | FormatCompilerIndependentFileLocationTest | , |
| FormatsUknownFileAndLine | ) |
| testing::internal::TEST | ( | FormatCompilerIndependentFileLocationTest | , |
| FormatsUknownLine | ) |
| testing::internal::TEST | ( | FormatFileLocationTest | , |
| FormatsFileLocation | ) |
| testing::internal::TEST | ( | FormatFileLocationTest | , |
| FormatsUknownFileAndLine | ) |
| testing::internal::TEST | ( | FormatFileLocationTest | , |
| FormatsUknownLine | ) |
| testing::internal::TEST | ( | FormatFileLocationTest | , |
| FormatsUnknownFile | ) |
| testing::internal::TEST | ( | GetThreadCountTest | , |
| ReturnsZeroWhenUnableToCountThreads | ) |
| testing::internal::TEST | ( | GtestCheckDeathTest | , |
| DiesWithCorrectOutputOnFailure | ) |
| testing::internal::TEST | ( | GtestCheckSyntaxTest | , |
| BehavesLikeASingleStatement | ) |
| testing::internal::TEST | ( | GtestCheckSyntaxTest | , |
| WorksWithSwitch | ) |
| testing::internal::TEST | ( | ImplicitCastTest | , |
| CanSelectBetweenConstAndNonConstCasrAppropriately | ) |
| testing::internal::TEST | ( | ImplicitCastTest | , |
| CanUseConstCastOperatorOnConstValues | ) |
| testing::internal::TEST | ( | ImplicitCastTest | , |
| CanUseImplicitConstructor | ) |
| testing::internal::TEST | ( | ImplicitCastTest | , |
| CanUseInheritance | ) |
| testing::internal::TEST | ( | ImplicitCastTest | , |
| CanUseNonConstCastOperator | ) |
| testing::internal::TEST | ( | ImplicitCastTest | , |
| ConvertsPointers | ) |
| testing::internal::TEST | ( | IsXDigitTest | , |
| ReturnsFalseForNarrowNonAscii | ) |
| testing::internal::TEST | ( | IsXDigitTest | , |
| ReturnsFalseForWideNonAscii | ) |
| testing::internal::TEST | ( | IsXDigitTest | , |
| WorksForNarrowAscii | ) |
| testing::internal::TEST | ( | IsXDigitTest | , |
| WorksForWideAscii | ) |
| testing::internal::TEST | ( | RegexEngineSelectionTest | , |
| SelectsCorrectRegexEngine | ) |
| testing::internal::TEST | ( | ThreadLocalTest | , |
| DefaultConstructorInitializesToDefaultValues | ) |
| testing::internal::TEST | ( | ThreadLocalTest | , |
| GetAndPointerReturnSameValue | ) |
| testing::internal::TEST | ( | ThreadLocalTest | , |
| PointerAndConstPointerReturnSameValue | ) |
| testing::internal::TEST | ( | ThreadLocalTest | , |
| SingleParamConstructorInitializesToParam | ) |
| testing::internal::TEST | ( | ThreadLocalTest | , |
| ValueDefaultContructorIsNotRequiredForParamVersion | ) |
| testing::internal::TEST_F | ( | ListenerTest | , |
| DoesBar | ) |
| testing::internal::TEST_F | ( | ListenerTest | , |
| DoesFoo | ) |
| void testing::internal::TestNotEmpty | ( | ) |
|
static |
|
static |
|
inline |
|
inline |
| testing::internal::TYPED_TEST | ( | TestSuiteWithCommentTest | , |
| Dummy | ) |
| testing::internal::TYPED_TEST_SUITE | ( | TestSuiteWithCommentTest | , |
| Types< int > | ) |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
| void testing::internal::UniversalPrint | ( | const T & | value, |
| ::std::ostream * | os ) |
| GTEST_API_ void testing::internal::UniversalPrintArray | ( | const char * | begin, |
| size_t | len, | ||
| ::std::ostream * | os ) |
| void testing::internal::UniversalPrintArray | ( | const char * | begin, |
| size_t | len, | ||
| ostream * | os ) |
| GTEST_API_ void testing::internal::UniversalPrintArray | ( | const char16_t * | begin, |
| size_t | len, | ||
| ::std::ostream * | os ) |
| void testing::internal::UniversalPrintArray | ( | const char16_t * | begin, |
| size_t | len, | ||
| ostream * | os ) |
| GTEST_API_ void testing::internal::UniversalPrintArray | ( | const char32_t * | begin, |
| size_t | len, | ||
| ::std::ostream * | os ) |
| void testing::internal::UniversalPrintArray | ( | const char32_t * | begin, |
| size_t | len, | ||
| ostream * | os ) |
| void testing::internal::UniversalPrintArray | ( | const T * | begin, |
| size_t | len, | ||
| ::std::ostream * | os ) |
| GTEST_API_ void testing::internal::UniversalPrintArray | ( | const wchar_t * | begin, |
| size_t | len, | ||
| ::std::ostream * | os ) |
| void testing::internal::UniversalPrintArray | ( | const wchar_t * | begin, |
| size_t | len, | ||
| ostream * | os ) |
|
static |
| void testing::internal::UniversalTersePrint | ( | const T & | value, |
| ::std::ostream * | os ) |
| Strings testing::internal::UniversalTersePrintTupleFieldsToStrings | ( | const Tuple & | value | ) |
|
constexpr |
|
inline |
|
inline |
| std::string testing::internal::WideStringToUtf8 | ( | const wchar_t * | str, |
| int | num_chars ) |
| void testing::internal::WriteToShardStatusFileIfNeeded | ( | ) |
| ::std::vector<std::string> testing::internal::g_argvs |
| GTEST_API_ ThreadLocal<Sequence*> testing::internal::g_gmock_implicit_sequence |
| bool testing::internal::g_help_flag = false |
|
staticconstexpr |
|
static |
| const char testing::internal::kDeathTestStyleFlag[] = "death_test_style" |
| const char testing::internal::kDeathTestUseFork[] = "death_test_use_fork" |
| const char testing::internal::kErrorVerbosity[] = "error" |
| const char testing::internal::kInfoVerbosity[] = "info" |
| const char testing::internal::kInternalRunDeathTestFlag[] = "internal_run_death_test" |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
| const int testing::internal::kMaxRandomSeed = 99999 |
| const char testing::internal::kStackTraceMarker = "\nStack trace:\n" |
|
extern |
| const int testing::internal::kTypedTests = 1 |
| const int testing::internal::kTypedTestSuites = 1 |
|
static |
| const char testing::internal::kUnknownFile[] = "unknown file" |
|
static |
| const char testing::internal::kWarningVerbosity[] = "warning" |