Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PartialMatch (0.17 sec)

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

      }
      static bool PartialMatch(const ::std::string& str, const RE& re) {
        return PartialMatch(str.c_str(), re);
      }
    
    #if GTEST_HAS_GLOBAL_STRING
    
      static bool FullMatch(const ::string& str, const RE& re) {
        return FullMatch(str.c_str(), re);
      }
      static bool PartialMatch(const ::string& str, const RE& re) {
        return PartialMatch(str.c_str(), re);
      }
    
    #endif  // GTEST_HAS_GLOBAL_STRING
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

              << "Death tests are not supported on this platform.\n" \
              << "Statement '" #statement "' cannot be verified."; \
        } else if (::testing::internal::AlwaysFalse()) { \
          ::testing::internal::RE::PartialMatch(".*", (regex)); \
          GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
          terminator; \
        } else \
          ::testing::Message()
    
    #endif  // GTEST_HAS_DEATH_TEST
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top