Classes | Namespaces | Macros | Typedefs | Enumerations | Functions | Variables
gtest-port.h File Reference
#include <ctype.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <string>
#include <utility>
#include <unistd.h>
#include <strings.h>
#include <regex.h>
#include <typeinfo>
#include "gtest/internal/gtest-tuple.h"
Include dependency graph for gtest-port.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  testing::internal::bool_constant< bool_value >
 
struct  testing::internal::CompileAssert< bool >
 
class  testing::internal::GTestLog
 
class  testing::internal::GTestMutexLock
 
struct  testing::internal::is_pointer< T >
 
struct  testing::internal::is_pointer< T * >
 
struct  testing::internal::IteratorTraits< Iterator >
 
struct  testing::internal::IteratorTraits< const T * >
 
struct  testing::internal::IteratorTraits< T * >
 
class  testing::internal::Mutex
 
class  testing::internal::RE
 
class  testing::internal::scoped_ptr< T >
 
struct  testing::internal::StaticAssertTypeEqHelper< T1, T2 >
 
struct  testing::internal::StaticAssertTypeEqHelper< T, T >
 
class  testing::internal::ThreadLocal< T >
 
class  testing::internal::TypeWithSize< size >
 
class  testing::internal::TypeWithSize< 4 >
 
class  testing::internal::TypeWithSize< 8 >
 

Namespaces

 testing
 
 testing::internal
 
 testing::internal::posix
 

Macros

#define GTEST_AMBIGUOUS_ELSE_BLOCKER_   switch (0) case 0: default:
 
#define GTEST_API_
 
#define GTEST_ARRAY_SIZE_(array)   (sizeof(array) / sizeof(array[0]))
 
#define GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_
 
#define GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_
 
#define GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_
 
#define GTEST_ATTRIBUTE_UNUSED_
 
#define GTEST_CAN_COMPARE_NULL   1
 
#define GTEST_CHECK_(condition)
 
#define GTEST_CHECK_POSIX_SUCCESS_(posix_call)
 
#define GTEST_COMPILE_ASSERT_(expr, msg)
 
#define GTEST_DECLARE_bool_(name)   GTEST_API_ extern bool GTEST_FLAG(name)
 
#define GTEST_DECLARE_int32_(name)   GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name)
 
#define GTEST_DECLARE_STATIC_MUTEX_(mutex)   extern ::testing::internal::Mutex mutex
 
#define GTEST_DECLARE_string_(name)   GTEST_API_ extern ::std::string GTEST_FLAG(name)
 
#define GTEST_DEFINE_bool_(name, default_val, doc)   GTEST_API_ bool GTEST_FLAG(name) = (default_val)
 
#define GTEST_DEFINE_int32_(name, default_val, doc)   GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)
 
#define GTEST_DEFINE_STATIC_MUTEX_(mutex)   ::testing::internal::Mutex mutex
 
#define GTEST_DEFINE_string_(name, default_val, doc)   GTEST_API_ ::std::string GTEST_FLAG(name) = (default_val)
 
#define GTEST_DEV_EMAIL_   "googletestframework@@googlegroups.com"
 
#define GTEST_DISABLE_MSC_WARNINGS_POP_()
 
#define GTEST_DISABLE_MSC_WARNINGS_PUSH_(warnings)
 
#define GTEST_DISALLOW_ASSIGN_(type)   void operator=(type const &)
 
#define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)
 
#define GTEST_EXCLUSIVE_LOCK_REQUIRED_(locks)
 
#define GTEST_FLAG(name)   FLAGS_gtest_##name
 
#define GTEST_FLAG_PREFIX_   "gtest_"
 
#define GTEST_FLAG_PREFIX_DASH_   "gtest-"
 
#define GTEST_FLAG_PREFIX_UPPER_   "GTEST_"
 
#define GTEST_HAS_ALT_PATH_SEP_   0
 
#define GTEST_HAS_CLONE   0
 
#define GTEST_HAS_COMBINE   1
 
#define GTEST_HAS_CXXABI_H_   0
 
#define GTEST_HAS_EXCEPTIONS   0
 
#define GTEST_HAS_GLOBAL_STRING   0
 
#define GTEST_HAS_GLOBAL_WSTRING   (GTEST_HAS_STD_WSTRING && GTEST_HAS_GLOBAL_STRING)
 
#define GTEST_HAS_PARAM_TEST   1
 
#define GTEST_HAS_POSIX_RE   (!GTEST_OS_WINDOWS)
 
#define GTEST_HAS_PTHREAD
 
#define GTEST_HAS_RTTI   1
 
#define GTEST_HAS_SEH   0
 
#define GTEST_HAS_STD_STRING   1
 
#define GTEST_HAS_STD_WSTRING   (!(GTEST_OS_LINUX_ANDROID || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS))
 
#define GTEST_HAS_STREAM_REDIRECTION   1
 
#define GTEST_HAS_TR1_TUPLE   1
 
#define GTEST_INTENTIONAL_CONST_COND_POP_()   GTEST_DISABLE_MSC_WARNINGS_POP_()
 
#define GTEST_INTENTIONAL_CONST_COND_PUSH_()   GTEST_DISABLE_MSC_WARNINGS_PUSH_(4127)
 
#define GTEST_IS_THREADSAFE
 
#define GTEST_LANG_CXX11   0
 
#define GTEST_LOCK_EXCLUDED_(locks)
 
#define GTEST_LOG_(severity)
 
#define GTEST_MUST_USE_RESULT_
 
#define GTEST_NAME_   "Google Test"
 
#define GTEST_NO_INLINE_
 
#define GTEST_PATH_SEP_   "/"
 
#define GTEST_PROJECT_URL_   "http://code.google.com/p/googletest/"
 
#define GTEST_SNPRINTF_   snprintf
 
#define GTEST_TUPLE_NAMESPACE_   ::std::tr1
 
#define GTEST_USE_OWN_TR1_TUPLE   1
 
#define GTEST_USES_POSIX_RE   1
 
#define GTEST_WIDE_STRING_USES_UTF16_   (GTEST_OS_WINDOWS || GTEST_OS_CYGWIN || GTEST_OS_SYMBIAN || GTEST_OS_AIX)
 

Typedefs

typedef long long testing::internal::BiggestInt
 
typedef bool_constant< falsetesting::internal::false_type
 
typedef TypeWithSize< 4 >::Int testing::internal::Int32
 
typedef TypeWithSize< 8 >::Int testing::internal::Int64
 
typedef GTestMutexLock testing::internal::MutexLock
 
typedef struct stat testing::internal::posix::StatStruct
 
typedef ::std::string testing::internal::string
 
typedef TypeWithSize< 8 >::Int testing::internal::TimeInMillis
 
typedef bool_constant< truetesting::internal::true_type
 
typedef TypeWithSize< 4 >::UInt testing::internal::UInt32
 
typedef TypeWithSize< 8 >::UInt testing::internal::UInt64
 
typedef ::std::wstring testing::internal::wstring
 

Enumerations

enum  testing::internal::GTestLogSeverity { testing::internal::GTEST_INFO, testing::internal::GTEST_WARNING, testing::internal::GTEST_ERROR, testing::internal::GTEST_FATAL }
 

Functions

void testing::internal::posix::Abort ()
 
bool testing::internal::BoolFromGTestEnv (const char *flag, bool default_val)
 
GTEST_API_ void testing::internal::CaptureStderr ()
 
GTEST_API_ void testing::internal::CaptureStdout ()
 
int testing::internal::posix::ChDir (const char *dir)
 
template<class Derived , class Base >
Derived * testing::internal::CheckedDowncastToActualType (Base *base)
 
int testing::internal::posix::Close (int fd)
 
template<typename To , typename From >
To testing::internal::DownCast_ (From *f)
 
int testing::internal::posix::FClose (FILE *fp)
 
FILE * testing::internal::posix::FDOpen (int fd, const char *mode)
 
int testing::internal::posix::FileNo (FILE *file)
 
void testing::internal::FlushInfoLog ()
 
FILE * testing::internal::posix::FOpen (const char *path, const char *mode)
 
GTEST_API_::std::string testing::internal::FormatCompilerIndependentFileLocation (const char *file, int line)
 
GTEST_API_::std::string testing::internal::FormatFileLocation (const char *file, int line)
 
FILE * testing::internal::posix::FReopen (const char *path, const char *mode, FILE *stream)
 
GTEST_API_ std::string testing::internal::GetCapturedStderr ()
 
GTEST_API_ std::string testing::internal::GetCapturedStdout ()
 
const char * testing::internal::posix::GetEnv (const char *name)
 
GTEST_API_ size_t testing::internal::GetThreadCount ()
 
template<typename To >
To testing::internal::ImplicitCast_ (To x)
 
GTEST_API_ Int32 testing::internal::Int32FromGTestEnv (const char *flag, Int32 default_val)
 
bool testing::internal::IsAlNum (char ch)
 
bool testing::internal::IsAlpha (char ch)
 
int testing::internal::posix::IsATTY (int fd)
 
bool testing::internal::IsDigit (char ch)
 
bool testing::internal::posix::IsDir (const StatStruct &st)
 
bool testing::internal::IsLower (char ch)
 
bool testing::internal::IsSpace (char ch)
 
GTEST_API_ bool testing::internal::IsTrue (bool condition)
 
bool testing::internal::IsUpper (char ch)
 
bool testing::internal::IsXDigit (char ch)
 
bool testing::internal::IsXDigit (wchar_t ch)
 
void testing::internal::LogToStderr ()
 
template<typename T >
const T & testing::internal::move (const T &t)
 
bool testing::internal::ParseInt32 (const Message &src_text, const char *str, Int32 *value)
 
int testing::internal::posix::Read (int fd, void *buf, unsigned int count)
 
int testing::internal::posix::RmDir (const char *dir)
 
int testing::internal::posix::Stat (const char *path, StatStruct *buf)
 
int testing::internal::posix::StrCaseCmp (const char *s1, const char *s2)
 
char * testing::internal::posix::StrDup (const char *src)
 
const char * testing::internal::posix::StrError (int errnum)
 
const char * testing::internal::StringFromGTestEnv (const char *flag, const char *default_val)
 
std::string testing::internal::StripTrailingSpaces (std::string str)
 
const char * testing::internal::posix::StrNCpy (char *dest, const char *src, size_t n)
 
char testing::internal::ToLower (char ch)
 
char testing::internal::ToUpper (char ch)
 
int testing::internal::posix::Write (int fd, const void *buf, unsigned int count)
 

Variables

const BiggestInt testing::internal::kMaxBiggestInt
 

Macro Definition Documentation

#define GTEST_AMBIGUOUS_ELSE_BLOCKER_   switch (0) case 0: default:

Definition at line 874 of file gtest-port.h.

#define GTEST_API_

Definition at line 966 of file gtest-port.h.

#define GTEST_ARRAY_SIZE_ (   array)    (sizeof(array) / sizeof(array[0]))

Definition at line 1124 of file gtest-port.h.

#define GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_

Definition at line 1005 of file gtest-port.h.

#define GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_

Definition at line 993 of file gtest-port.h.

#define GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_

Definition at line 1017 of file gtest-port.h.

static bool dummy2 GTEST_ATTRIBUTE_UNUSED_
Value:
=
StaticAssertTypeEq<const int, const int>()

Definition at line 896 of file gtest-port.h.

#define GTEST_CAN_COMPARE_NULL   1

Definition at line 2133 of file gtest-port.h.

#define GTEST_CHECK_ (   condition)
Value:
; \
GTEST_LOG_(FATAL) << "Condition " #condition " failed. "
GTEST_API_ bool IsTrue(bool condition)
Definition: gtest.cc:4935
#define GTEST_LOG_(severity)
Definition: gtest-port.h:1301
if(strcmp(arg,"1305")!=0)
Definition: unit1305.c:127

Definition at line 1322 of file gtest-port.h.

#define GTEST_CHECK_POSIX_SUCCESS_ (   posix_call)
Value:
if (const int gtest_error = (posix_call)) \
GTEST_LOG_(FATAL) << #posix_call << "failed with error " \
<< gtest_error
#define GTEST_LOG_(severity)
Definition: gtest-port.h:1301

Definition at line 1334 of file gtest-port.h.

#define GTEST_COMPILE_ASSERT_ (   expr,
  msg 
)
Value:
typedef ::testing::internal::CompileAssert<(static_cast<bool>(expr))> \
msg[static_cast<bool>(expr) ? 1 : -1] GTEST_ATTRIBUTE_UNUSED_
#define GTEST_ATTRIBUTE_UNUSED_
Definition: gtest-port.h:896

Definition at line 1064 of file gtest-port.h.

#define GTEST_DECLARE_bool_ (   name)    GTEST_API_ extern bool GTEST_FLAG(name)

Definition at line 2448 of file gtest-port.h.

#define GTEST_DECLARE_int32_ (   name)    GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name)

Definition at line 2449 of file gtest-port.h.

#define GTEST_DECLARE_STATIC_MUTEX_ (   mutex)    extern ::testing::internal::Mutex mutex

Definition at line 2086 of file gtest-port.h.

#define GTEST_DECLARE_string_ (   name)    GTEST_API_ extern ::std::string GTEST_FLAG(name)

Definition at line 2451 of file gtest-port.h.

#define GTEST_DEFINE_bool_ (   name,
  default_val,
  doc 
)    GTEST_API_ bool GTEST_FLAG(name) = (default_val)

Definition at line 2455 of file gtest-port.h.

#define GTEST_DEFINE_int32_ (   name,
  default_val,
  doc 
)    GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)

Definition at line 2457 of file gtest-port.h.

#define GTEST_DEFINE_STATIC_MUTEX_ (   mutex)    ::testing::internal::Mutex mutex

Definition at line 2089 of file gtest-port.h.

#define GTEST_DEFINE_string_ (   name,
  default_val,
  doc 
)    GTEST_API_ ::std::string GTEST_FLAG(name) = (default_val)

Definition at line 2459 of file gtest-port.h.

#define GTEST_DEV_EMAIL_   "googletestframework@@googlegroups.com"

Definition at line 280 of file gtest-port.h.

#define GTEST_DISABLE_MSC_WARNINGS_POP_ ( )

Definition at line 363 of file gtest-port.h.

#define GTEST_DISABLE_MSC_WARNINGS_PUSH_ (   warnings)

Definition at line 362 of file gtest-port.h.

#define GTEST_DISALLOW_ASSIGN_ (   type)    void operator=(type const &)

Definition at line 901 of file gtest-port.h.

#define GTEST_DISALLOW_COPY_AND_ASSIGN_ (   type)
Value:
type(type const &);\
#define GTEST_DISALLOW_ASSIGN_(type)
Definition: gtest-port.h:901

Definition at line 906 of file gtest-port.h.

#define GTEST_EXCLUSIVE_LOCK_REQUIRED_ (   locks)

Definition at line 2463 of file gtest-port.h.

#define GTEST_FLAG (   name)    FLAGS_gtest_##name

Definition at line 2445 of file gtest-port.h.

#define GTEST_FLAG_PREFIX_   "gtest_"

Definition at line 281 of file gtest-port.h.

#define GTEST_FLAG_PREFIX_DASH_   "gtest-"

Definition at line 282 of file gtest-port.h.

#define GTEST_FLAG_PREFIX_UPPER_   "GTEST_"

Definition at line 283 of file gtest-port.h.

#define GTEST_HAS_ALT_PATH_SEP_   0

Definition at line 2182 of file gtest-port.h.

#define GTEST_HAS_CLONE   0

Definition at line 798 of file gtest-port.h.

#define GTEST_HAS_COMBINE   1

Definition at line 849 of file gtest-port.h.

#define GTEST_HAS_CXXABI_H_   0

Definition at line 980 of file gtest-port.h.

#define GTEST_HAS_EXCEPTIONS   0

Definition at line 531 of file gtest-port.h.

#define GTEST_HAS_GLOBAL_STRING   0

Definition at line 548 of file gtest-port.h.

#define GTEST_HAS_GLOBAL_WSTRING   (GTEST_HAS_STD_WSTRING && GTEST_HAS_GLOBAL_STRING)

Definition at line 569 of file gtest-port.h.

#define GTEST_HAS_PARAM_TEST   1

Definition at line 832 of file gtest-port.h.

#define GTEST_HAS_POSIX_RE   (!GTEST_OS_WINDOWS)

Definition at line 465 of file gtest-port.h.

#define GTEST_HAS_PTHREAD
Value:
(GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_HPUX \
|| GTEST_OS_QNX || GTEST_OS_FREEBSD || GTEST_OS_NACL)

Definition at line 643 of file gtest-port.h.

#define GTEST_HAS_RTTI   1

Definition at line 624 of file gtest-port.h.

#define GTEST_HAS_SEH   0

Definition at line 945 of file gtest-port.h.

#define GTEST_HAS_STD_STRING   1

Definition at line 538 of file gtest-port.h.

#define GTEST_HAS_STD_WSTRING   (!(GTEST_OS_LINUX_ANDROID || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS))

Definition at line 561 of file gtest-port.h.

#define GTEST_HAS_STREAM_REDIRECTION   1

Definition at line 812 of file gtest-port.h.

#define GTEST_HAS_TR1_TUPLE   1

Definition at line 665 of file gtest-port.h.

#define GTEST_INTENTIONAL_CONST_COND_POP_ ( )    GTEST_DISABLE_MSC_WARNINGS_POP_()

Definition at line 931 of file gtest-port.h.

#define GTEST_INTENTIONAL_CONST_COND_PUSH_ ( )    GTEST_DISABLE_MSC_WARNINGS_PUSH_(4127)

Definition at line 929 of file gtest-port.h.

#define GTEST_IS_THREADSAFE
Value:
(0 \
|| (GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT) \
#define GTEST_HAS_PTHREAD
Definition: gtest-port.h:643

Definition at line 948 of file gtest-port.h.

#define GTEST_LANG_CXX11   0

Definition at line 375 of file gtest-port.h.

#define GTEST_LOCK_EXCLUDED_ (   locks)

Definition at line 2464 of file gtest-port.h.

#define GTEST_LOG_ (   severity)
Value:
::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
__FILE__, __LINE__).GetStream()
::std::ostream & GetStream()
Definition: gtest-port.h:1293

Definition at line 1301 of file gtest-port.h.

#define GTEST_MUST_USE_RESULT_

Definition at line 918 of file gtest-port.h.

#define GTEST_NAME_   "Google Test"

Definition at line 284 of file gtest-port.h.

#define GTEST_NO_INLINE_

Definition at line 973 of file gtest-port.h.

#define GTEST_PATH_SEP_   "/"

Definition at line 2181 of file gtest-port.h.

#define GTEST_PROJECT_URL_   "http://code.google.com/p/googletest/"

Definition at line 285 of file gtest-port.h.

#define GTEST_SNPRINTF_   snprintf

Definition at line 2371 of file gtest-port.h.

#define GTEST_TUPLE_NAMESPACE_   ::std::tr1

Definition at line 716 of file gtest-port.h.

#define GTEST_USE_OWN_TR1_TUPLE   1

Definition at line 699 of file gtest-port.h.

#define GTEST_USES_POSIX_RE   1

Definition at line 477 of file gtest-port.h.

#define GTEST_WIDE_STRING_USES_UTF16_   (GTEST_OS_WINDOWS || GTEST_OS_CYGWIN || GTEST_OS_SYMBIAN || GTEST_OS_AIX)

Definition at line 853 of file gtest-port.h.



rc_tagdetect_client
Author(s): Monika Florek-Jasinska , Raphael Schaller
autogenerated on Sat Feb 13 2021 03:42:17