uTL
micro Template library
|
Namespaces | |
edit_distance | |
posix | |
Typedefs | |
typedef ::std::string | string |
typedef ::std::wstring | wstring |
typedef GTestMutexLock | MutexLock |
typedef bool_constant< false > | false_type |
typedef bool_constant< true > | true_type |
typedef long long | BiggestInt |
typedef TypeWithSize< 4 >::Int | Int32 |
typedef TypeWithSize< 4 >::UInt | UInt32 |
typedef TypeWithSize< 8 >::Int | Int64 |
typedef TypeWithSize< 8 >::UInt | UInt64 |
typedef TypeWithSize< 8 >::Int | TimeInMillis |
typedef FloatingPoint< float > | Float |
typedef FloatingPoint< double > | Double |
typedef const void * | TypeId |
using | SetUpTestSuiteFunc = void(*)() |
using | TearDownTestSuiteFunc = void(*)() |
using | SetUpTearDownSuiteFuncType = void(*)() |
typedef int | IsContainer |
typedef char | IsNotContainer |
typedef ::std::vector< ::std::string > | Strings |
template<class TestCase > | |
using | ParameterizedTestCaseInfo = ParameterizedTestSuiteInfo< TestCase > |
Enumerations | |
enum | CharFormat { kAsIs, kHexEscape, kSpecialEscape } |
enum | GTestLogSeverity { GTEST_INFO, GTEST_WARNING, GTEST_ERROR, GTEST_FATAL } |
enum | DefaultPrinterType { kPrintContainer, kPrintPointer, kPrintFunctionPointer, kPrintOther } |
enum | GTestColor { COLOR_DEFAULT, COLOR_RED, COLOR_GREEN, COLOR_YELLOW } |
Functions | |
GTEST_DEFINE_string_ (internal_run_death_test, "", "Indicates the file, line number, temporal index of " "the single death test to run, and a file descriptor to " "which a success code may be sent, all separated by " "the '|' characters. This flag is specified if and only if the current " "process is a sub-process launched for running a thread-safe " "death test. FOR INTERNAL USE ONLY.") | |
size_t | GetThreadCount () |
GTEST_API_ ::std::string | FormatFileLocation (const char *file, int line) |
GTEST_API_ ::std::string | FormatCompilerIndependentFileLocation (const char *file, int line) |
void | CaptureStdout () |
void | CaptureStderr () |
std::string | GetCapturedStdout () |
std::string | GetCapturedStderr () |
size_t | GetFileSize (FILE *file) |
std::string | ReadEntireFile (FILE *file) |
bool | ParseInt32 (const Message &src_text, const char *str, Int32 *value) |
bool | BoolFromGTestEnv (const char *flag, bool default_value) |
Int32 | Int32FromGTestEnv (const char *flag, Int32 default_value) |
std::string | OutputFlagAlsoCheckEnvVar () |
const char * | StringFromGTestEnv (const char *flag, const char *default_value) |
bool | IsPrintableAscii (wchar_t c) |
template<typename UnsignedChar , typename Char > | |
void | PrintCharAndCodeTo (Char c, ostream *os) |
void | PrintTo (unsigned char c, ::std::ostream *os) |
void | PrintTo (signed char c, ::std::ostream *os) |
void | PrintTo (wchar_t wc, ostream *os) |
void | UniversalPrintArray (const char *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 wchar_t *s, ostream *os) |
void | PrintStringTo (const ::std::string &s, ostream *os) |
void | PrintWideStringTo (const ::std::wstring &s, ostream *os) |
GTEST_API_ bool | IsTrue (bool condition) |
void | LogToStderr () |
void | FlushInfoLog () |
template<typename To > | |
To | ImplicitCast_ (To x) |
template<typename To , typename From > | |
To | DownCast_ (From *f) |
template<class Derived , class Base > | |
Derived * | CheckedDowncastToActualType (Base *base) |
GTEST_API_ std::vector< std::string > | GetArgvs () |
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 (wchar_t ch) |
char | ToLower (char ch) |
char | ToUpper (char ch) |
std::string | StripTrailingSpaces (std::string str) |
template<typename T > | |
std::string | StreamableToString (const T &streamable) |
std::true_type | IsNullLiteralHelper (Secret *) |
std::false_type | IsNullLiteralHelper (IgnoredValue) |
GTEST_API_ std::string | AppendUserMessage (const std::string >est_msg, const Message &user_msg) |
GTEST_API_ std::string | DiffStrings (const std::string &left, const std::string &right, size_t *total_line_count) |
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_API_ std::string | GetCurrentOsStackTraceExceptTop (UnitTest *unit_test, 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_IMPL_FORMAT_C_STRING_AS_POINTER_ (char) | |
GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ (wchar_t) | |
GTEST_IMPL_FORMAT_C_STRING_AS_STRING_ (char, ::std::string) | |
GTEST_IMPL_FORMAT_C_STRING_AS_STRING_ (wchar_t, ::std::wstring) | |
template<typename T1 , typename T2 > | |
std::string | FormatForComparisonFailureMessage (const T1 &value, const T2 &) |
template<typename T > | |
void | UniversalPrint (const T &value, ::std::ostream *os) |
template<typename C > | |
void | DefaultPrintTo (WrapPrinterType< kPrintContainer >, const C &container, ::std::ostream *os) |
template<typename T > | |
void | DefaultPrintTo (WrapPrinterType< kPrintPointer >, T *p, ::std::ostream *os) |
template<typename T > | |
void | DefaultPrintTo (WrapPrinterType< kPrintFunctionPointer >, T *p, ::std::ostream *os) |
template<typename T > | |
void | DefaultPrintTo (WrapPrinterType< kPrintOther >, const T &value, ::std::ostream *os) |
template<typename T > | |
void | PrintTo (const T &value, ::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 (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 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 | PrintWideStringTo (const ::std::wstring &s, ::std::ostream *os) |
void | PrintTo (const ::std::wstring &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) |
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 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) |
GTEST_API_ void | ReportInvalidTestSuiteType (const char *test_suite_name, CodeLocation code_location) |
template<class ParamType > | |
std::string | DefaultParamName (const TestParamInfo< ParamType > &info) |
template<class ParamType , class ParamNameGenFunctor > | |
ParamNameGenFunctor | GetParamNameGen (ParamNameGenFunctor func) |
template<class ParamType > | |
ParamNameGenFunc< ParamType >::Type * | GetParamNameGen () |
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) |
GTEST_API_ AssertionResult | CmpHelperEQ (const char *lhs_expression, const char *rhs_expression, BiggestInt lhs, BiggestInt rhs) |
template<typename T1 , typename T2 > | |
AssertionResult | CmpHelperOpFailure (const char *expr1, const char *expr2, const T1 &val1, const T2 &val2, const char *op) |
GTEST_IMPL_CMP_HELPER_ (NE, !=) | |
GTEST_IMPL_CMP_HELPER_ (LE,<=) | |
GTEST_IMPL_CMP_HELPER_ (LT,<) | |
GTEST_IMPL_CMP_HELPER_ (GE, >=) | |
GTEST_IMPL_CMP_HELPER_ (GT, >) | |
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_ | GTEST_ATTRIBUTE_PRINTF_ (2, 3) void ColoredPrintf(GTestColor color |
Variables | |
const char | kPathSeparator = '/' |
const char | kCurrentDirectoryString [] = "./" |
const int | kStdOutFileno = STDOUT_FILENO |
const int | kStdErrFileno = STDERR_FILENO |
const char | kUnknownFile [] = "unknown file" |
const BiggestInt | kMaxBiggestInt |
GTEST_API_ const char | kStackTraceMarker [] |
GTEST_API_ const char * | fmt |
typedef long long testing::internal::BiggestInt |
typedef FloatingPoint<double> testing::internal::Double |
typedef bool_constant<false> testing::internal::false_type |
typedef FloatingPoint<float> testing::internal::Float |
typedef TypeWithSize<4>::Int testing::internal::Int32 |
typedef TypeWithSize<8>::Int testing::internal::Int64 |
typedef int testing::internal::IsContainer |
typedef char testing::internal::IsNotContainer |
using testing::internal::ParameterizedTestCaseInfo = typedef ParameterizedTestSuiteInfo<TestCase> |
using testing::internal::SetUpTearDownSuiteFuncType = typedef void (*)() |
using testing::internal::SetUpTestSuiteFunc = typedef void (*)() |
typedef ::std::string testing::internal::string |
typedef ::std::vector< ::std::string> testing::internal::Strings |
using testing::internal::TearDownTestSuiteFunc = typedef void (*)() |
typedef TypeWithSize<8>::Int testing::internal::TimeInMillis |
typedef bool_constant<true> testing::internal::true_type |
typedef const void* testing::internal::TypeId |
typedef TypeWithSize<4>::UInt testing::internal::UInt32 |
typedef TypeWithSize<8>::UInt testing::internal::UInt64 |
typedef ::std::wstring testing::internal::wstring |
Enumerator | |
---|---|
kAsIs | |
kHexEscape | |
kSpecialEscape |
Definition at line 11126 of file gtest-all.cc.
GTEST_API_ bool testing::internal::AlwaysTrue | ( | ) |
GTEST_API_ std::string testing::internal::AppendUserMessage | ( | const std::string & | gtest_msg, |
const Message & | user_msg | ||
) |
Iter testing::internal::ArrayAwareFind | ( | Iter | begin, |
Iter | end, | ||
const Element & | elem | ||
) |
bool testing::internal::ArrayEq | ( | const T * | lhs, |
size_t | size, | ||
const U * | rhs | ||
) |
|
inline |
|
inline |
bool testing::internal::BoolFromGTestEnv | ( | const char * | flag, |
bool | default_value | ||
) |
Definition at line 10934 of file gtest-all.cc.
GTEST_API_ void testing::internal::CaptureStderr | ( | ) |
Definition at line 10784 of file gtest-all.cc.
GTEST_API_ void testing::internal::CaptureStdout | ( | ) |
Definition at line 10779 of file gtest-all.cc.
Derived* testing::internal::CheckedDowncastToActualType | ( | Base * | base | ) |
AssertionResult testing::internal::CmpHelperEQ | ( | const char * | lhs_expression, |
const char * | rhs_expression, | ||
const T1 & | lhs, | ||
const T2 & | rhs | ||
) |
GTEST_API_ AssertionResult testing::internal::CmpHelperEQ | ( | const char * | lhs_expression, |
const char * | rhs_expression, | ||
BiggestInt | lhs, | ||
BiggestInt | 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 | ||
) |
GTEST_API_ AssertionResult testing::internal::CmpHelperSTRCASEEQ | ( | const char * | s1_expression, |
const char * | s2_expression, | ||
const char * | s1, | ||
const char * | s2 | ||
) |
GTEST_API_ AssertionResult testing::internal::CmpHelperSTRCASENE | ( | const char * | s1_expression, |
const char * | s2_expression, | ||
const char * | s1, | ||
const char * | s2 | ||
) |
GTEST_API_ AssertionResult testing::internal::CmpHelperSTREQ | ( | const char * | s1_expression, |
const char * | s2_expression, | ||
const char * | s1, | ||
const char * | s2 | ||
) |
GTEST_API_ AssertionResult testing::internal::CmpHelperSTREQ | ( | const char * | s1_expression, |
const char * | s2_expression, | ||
const wchar_t * | s1, | ||
const wchar_t * | s2 | ||
) |
GTEST_API_ AssertionResult testing::internal::CmpHelperSTRNE | ( | const char * | s1_expression, |
const char * | s2_expression, | ||
const char * | s1, | ||
const char * | s2 | ||
) |
GTEST_API_ AssertionResult testing::internal::CmpHelperSTRNE | ( | const char * | s1_expression, |
const char * | s2_expression, | ||
const wchar_t * | s1, | ||
const wchar_t * | s2 | ||
) |
void testing::internal::CopyArray | ( | const T * | from, |
size_t | size, | ||
U * | to | ||
) |
|
inline |
|
inline |
std::string testing::internal::DefaultParamName | ( | const TestParamInfo< ParamType > & | info | ) |
void testing::internal::DefaultPrintTo | ( | WrapPrinterType< kPrintContainer > | , |
const C & | container, | ||
::std::ostream * | os | ||
) |
void testing::internal::DefaultPrintTo | ( | WrapPrinterType< kPrintPointer > | , |
T * | p, | ||
::std::ostream * | os | ||
) |
void testing::internal::DefaultPrintTo | ( | WrapPrinterType< kPrintFunctionPointer > | , |
T * | p, | ||
::std::ostream * | os | ||
) |
void testing::internal::DefaultPrintTo | ( | WrapPrinterType< kPrintOther > | , |
const T & | value, | ||
::std::ostream * | os | ||
) |
GTEST_API_ std::string testing::internal::DiffStrings | ( | const std::string & | left, |
const std::string & | right, | ||
size_t * | total_line_count | ||
) |
GTEST_API_ AssertionResult testing::internal::DoubleNearPredFormat | ( | const char * | expr1, |
const char * | expr2, | ||
const char * | abs_error_expr, | ||
double | val1, | ||
double | val2, | ||
double | abs_error | ||
) |
|
inline |
GTEST_API_ 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 | ||
) |
GTEST_API_::std::string testing::internal::FormatCompilerIndependentFileLocation | ( | const char * | file, |
int | line | ||
) |
Definition at line 10638 of file gtest-all.cc.
GTEST_API_::std::string testing::internal::FormatFileLocation | ( | const char * | file, |
int | line | ||
) |
Definition at line 10620 of file gtest-all.cc.
std::string testing::internal::FormatForComparisonFailureMessage | ( | const T1 & | value, |
const T2 & | |||
) |
GTEST_API_ std::vector<std::string> testing::internal::GetArgvs | ( | ) |
GTEST_API_ 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 | ( | ) |
Definition at line 10794 of file gtest-all.cc.
GTEST_API_ std::string testing::internal::GetCapturedStdout | ( | ) |
Definition at line 10789 of file gtest-all.cc.
GTEST_API_ std::string testing::internal::GetCurrentOsStackTraceExceptTop | ( | UnitTest * | unit_test, |
int | skip_count | ||
) |
GTEST_API_ size_t testing::internal::GetFileSize | ( | FILE * | file | ) |
Definition at line 10804 of file gtest-all.cc.
|
inline |
ParamNameGenFunctor testing::internal::GetParamNameGen | ( | ParamNameGenFunctor | func | ) |
ParamNameGenFunc<ParamType>::Type* testing::internal::GetParamNameGen | ( | ) |
GTEST_API_ TypeId testing::internal::GetTestTypeId | ( | ) |
GTEST_API_ size_t testing::internal::GetThreadCount | ( | ) |
Definition at line 9875 of file gtest-all.cc.
TypeId testing::internal::GetTypeId | ( | ) |
GTEST_API_ testing::internal::GTEST_ATTRIBUTE_PRINTF_ | ( | 2 | , |
3 | |||
) |
testing::internal::GTEST_DEFINE_string_ | ( | internal_run_death_test | , |
"" | , | ||
"Indicates the | file, | ||
line | number, | ||
temporal index of " "the single death test to | run, | ||
and a file descriptor to " "which a success code may be | sent, | ||
all separated by " "the '|' characters. This flag is specified if and only if the current " "process is a sub-process launched for running a thread-safe " "death test. FOR INTERNAL USE ONLY." | |||
) |
testing::internal::GTEST_IMPL_CMP_HELPER_ | ( | NE | , |
! | |||
) |
testing::internal::GTEST_IMPL_CMP_HELPER_ | ( | LE | , |
<= | |||
) |
testing::internal::GTEST_IMPL_CMP_HELPER_ | ( | LT | ) |
testing::internal::GTEST_IMPL_CMP_HELPER_ | ( | GE | , |
>= | |||
) |
testing::internal::GTEST_IMPL_CMP_HELPER_ | ( | GT | ) |
testing::internal::GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ | ( | char | ) |
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_ | ( | wchar_t | , |
::std::wstring | |||
) |
|
inline |
GTEST_API_ Int32 testing::internal::Int32FromGTestEnv | ( | const char * | flag, |
Int32 | default_value | ||
) |
Definition at line 10948 of file gtest-all.cc.
IsContainer testing::internal::IsContainerTest | ( | int | ) |
IsNotContainer testing::internal::IsContainerTest | ( | long | ) |
std::true_type testing::internal::IsNullLiteralHelper | ( | Secret * | ) |
std::false_type testing::internal::IsNullLiteralHelper | ( | IgnoredValue | ) |
|
inline |
Definition at line 11135 of file gtest-all.cc.
GTEST_API_ bool testing::internal::IsTrue | ( | bool | condition | ) |
GTEST_API_ 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 | ( | ) |
Definition at line 10980 of file gtest-all.cc.
Definition at line 10892 of file gtest-all.cc.
void testing::internal::PrintCharAndCodeTo | ( | Char | c, |
ostream * | os | ||
) |
Definition at line 11218 of file gtest-all.cc.
void testing::internal::PrintRawArrayTo | ( | const T | a[], |
size_t | count, | ||
::std::ostream * | os | ||
) |
GTEST_API_ void testing::internal::PrintStringTo | ( | const ::std::string & | s, |
::std::ostream * | os | ||
) |
void testing::internal::PrintStringTo | ( | const ::std::string & | s, |
ostream * | os | ||
) |
Definition at line 11432 of file gtest-all.cc.
void testing::internal::PrintTo | ( | const T & | value, |
::std::ostream * | os | ||
) |
|
inline |
|
inline |
GTEST_API_ void testing::internal::PrintTo | ( | wchar_t | wc, |
::std::ostream * | os | ||
) |
GTEST_API_ void testing::internal::PrintTo | ( | const char * | s, |
::std::ostream * | os | ||
) |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
GTEST_API_ void testing::internal::PrintTo | ( | const wchar_t * | s, |
::std::ostream * | os | ||
) |
|
inline |
|
inline |
|
inline |
|
inline |
void testing::internal::PrintTo | ( | std::reference_wrapper< T > | ref, |
::std::ostream * | os | ||
) |
void testing::internal::PrintTo | ( | const ::std::tuple< Types... > & | t, |
::std::ostream * | os | ||
) |
void testing::internal::PrintTo | ( | const ::std::pair< T1, T2 > & | value, |
::std::ostream * | os | ||
) |
GTEST_API_ void testing::internal::PrintTo | ( | unsigned char | c, |
::std::ostream * | os | ||
) |
Definition at line 11242 of file gtest-all.cc.
GTEST_API_ void testing::internal::PrintTo | ( | signed char | c, |
::std::ostream * | os | ||
) |
Definition at line 11245 of file gtest-all.cc.
void testing::internal::PrintTo | ( | wchar_t | wc, |
ostream * | os | ||
) |
Definition at line 11251 of file gtest-all.cc.
void testing::internal::PrintTo | ( | const char * | s, |
ostream * | os | ||
) |
Definition at line 11327 of file gtest-all.cc.
void testing::internal::PrintTo | ( | const wchar_t * | s, |
ostream * | os | ||
) |
Definition at line 11344 of file gtest-all.cc.
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::PrintWideStringTo | ( | const ::std::wstring & | s, |
::std::ostream * | os | ||
) |
void testing::internal::PrintWideStringTo | ( | const ::std::wstring & | s, |
ostream * | os | ||
) |
Definition at line 11448 of file gtest-all.cc.
GTEST_API_ std::string testing::internal::ReadEntireFile | ( | FILE * | file | ) |
Definition at line 10809 of file gtest-all.cc.
GTEST_API_ void testing::internal::ReportInvalidTestSuiteType | ( | const char * | test_suite_name, |
CodeLocation | code_location | ||
) |
GTEST_API_ bool testing::internal::SkipPrefix | ( | const char * | prefix, |
const char ** | pstr | ||
) |
std::string testing::internal::StreamableToString | ( | const T & | streamable | ) |
const char * testing::internal::StringFromGTestEnv | ( | const char * | flag, |
const char * | default_value | ||
) |
Definition at line 10991 of file gtest-all.cc.
|
inline |
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 | ||
) |
void testing::internal::UniversalPrint | ( | const T & | value, |
::std::ostream * | os | ||
) |
void testing::internal::UniversalPrintArray | ( | const T * | begin, |
size_t | len, | ||
::std::ostream * | os | ||
) |
GTEST_API_ void testing::internal::UniversalPrintArray | ( | const char * | 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 char * | begin, |
size_t | len, | ||
ostream * | os | ||
) |
Definition at line 11316 of file gtest-all.cc.
void testing::internal::UniversalPrintArray | ( | const wchar_t * | begin, |
size_t | len, | ||
ostream * | os | ||
) |
Definition at line 11322 of file gtest-all.cc.
void testing::internal::UniversalTersePrint | ( | const T & | value, |
::std::ostream * | os | ||
) |
Strings testing::internal::UniversalTersePrintTupleFieldsToStrings | ( | const Tuple & | value | ) |
GTEST_API_ const char* testing::internal::fmt |
const char testing::internal::kCurrentDirectoryString[] = "./" |
Definition at line 9247 of file gtest-all.cc.
const BiggestInt testing::internal::kMaxBiggestInt |
const char testing::internal::kPathSeparator = '/' |
Definition at line 9246 of file gtest-all.cc.
GTEST_API_ const char testing::internal::kStackTraceMarker[] |
const int testing::internal::kStdErrFileno = STDERR_FILENO |
Definition at line 9776 of file gtest-all.cc.
const int testing::internal::kStdOutFileno = STDOUT_FILENO |
Definition at line 9775 of file gtest-all.cc.
const char testing::internal::kUnknownFile[] = "unknown file" |
Definition at line 10616 of file gtest-all.cc.