Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GTEST_IS_NULL_LITERAL_ (0.38 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // integral constant).
    #ifdef GTEST_ELLIPSIS_NEEDS_POD_
    // We lose support for NULL detection where the compiler doesn't like
    // passing non-POD classes through ellipsis (...).
    # define GTEST_IS_NULL_LITERAL_(x) false
    #else
    # define GTEST_IS_NULL_LITERAL_(x) \
        (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1)
    #endif  // GTEST_ELLIPSIS_NEEDS_POD_
    
    // Appends the user-supplied message to the Google-Test-generated message.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // integral constant).
    #ifdef GTEST_ELLIPSIS_NEEDS_POD_
    // We lose support for NULL detection where the compiler doesn't like
    // passing non-POD classes through ellipsis (...).
    # define GTEST_IS_NULL_LITERAL_(x) false
    #else
    # define GTEST_IS_NULL_LITERAL_(x) \
        (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1)
    #endif  // GTEST_ELLIPSIS_NEEDS_POD_
    
    // Appends the user-supplied message to the Google-Test-generated message.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   ASSERT_GT(records.size(), 0) << "There is no record left.";
    
    #define EXPECT_EQ(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal:: \
                          EqHelper<GTEST_IS_NULL_LITERAL_(expected)>::Compare, \
                          expected, actual)
    #define EXPECT_NE(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, expected, actual)
    #define EXPECT_LE(val1, val2) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   ASSERT_GT(records.size(), 0) << "There is no record left.";
    
    #define EXPECT_EQ(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal:: \
                          EqHelper<GTEST_IS_NULL_LITERAL_(expected)>::Compare, \
                          expected, actual)
    #define EXPECT_NE(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, expected, actual)
    #define EXPECT_LE(val1, val2) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top