Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GTEST_DECLARE_int32_ (0.21 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // test.
    GTEST_DECLARE_bool_(print_time);
    
    // This flag specifies the random number seed.
    GTEST_DECLARE_int32_(random_seed);
    
    // This flag sets how many times the tests are repeated. The default value
    // is 1. If the value is -1 the tests are repeating forever.
    GTEST_DECLARE_int32_(repeat);
    
    // This flag controls whether Google Test includes Google Test internal
    // stack frames in failure stack traces.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // test.
    GTEST_DECLARE_bool_(print_time);
    
    // This flag specifies the random number seed.
    GTEST_DECLARE_int32_(random_seed);
    
    // This flag sets how many times the tests are repeated. The default value
    // is 1. If the value is -1 the tests are repeating forever.
    GTEST_DECLARE_int32_(repeat);
    
    // This flag controls whether Google Test includes Google Test internal
    // stack frames in failure stack traces.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Macro for referencing flags.
    #define GTEST_FLAG(name) FLAGS_gtest_##name
    
    // Macros for declaring flags.
    #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_string_(name) \
        GTEST_API_ extern ::std::string GTEST_FLAG(name)
    
    // Macros for defining flags.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Macro for referencing flags.
    #define GTEST_FLAG(name) FLAGS_gtest_##name
    
    // Macros for declaring flags.
    #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_string_(name) \
        GTEST_API_ extern ::std::string GTEST_FLAG(name)
    
    // Macros for defining flags.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top