Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ImplicitlyConvertible (0.18 sec)

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

    #define GTEST_REFERENCE_TO_CONST_(T) \
        GTEST_ADD_REFERENCE_(const GTEST_REMOVE_REFERENCE_(T))
    
    // ImplicitlyConvertible<From, To>::value is a compile-time bool
    // constant that's true iff type From can be implicitly converted to
    // type To.
    template <typename From, typename To>
    class ImplicitlyConvertible {
     private:
      // We need the following helper functions only for their types.
      // They have no implementations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    #define GTEST_REFERENCE_TO_CONST_(T) \
        GTEST_ADD_REFERENCE_(const GTEST_REMOVE_REFERENCE_(T))
    
    // ImplicitlyConvertible<From, To>::value is a compile-time bool
    // constant that's true iff type From can be implicitly converted to
    // type To.
    template <typename From, typename To>
    class ImplicitlyConvertible {
     private:
      // We need the following helper functions only for their types.
      // They have no implementations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    ::std::basic_ostream<Char, CharTraits>& operator<<(
        ::std::basic_ostream<Char, CharTraits>& os, const T& x) {
      TypeWithoutFormatter<T,
          (internal::IsAProtocolMessage<T>::value ? kProtobuf :
           internal::ImplicitlyConvertible<const T&, internal::BiggestInt>::value ?
           kConvertibleToInteger : kOtherType)>::PrintValue(x, &os);
      return os;
    }
    
    }  // namespace internal2
    }  // namespace testing
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    ::std::basic_ostream<Char, CharTraits>& operator<<(
        ::std::basic_ostream<Char, CharTraits>& os, const T& x) {
      TypeWithoutFormatter<T,
          (internal::IsAProtocolMessage<T>::value ? kProtobuf :
           internal::ImplicitlyConvertible<const T&, internal::BiggestInt>::value ?
           kConvertibleToInteger : kOtherType)>::PrintValue(x, &os);
      return os;
    }
    
    }  // namespace internal2
    }  // namespace testing
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
Back to top