Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for tuple_element (0.21 sec)

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

      static const int value = $j;
    };
    
    
    ]]
    template <int k, class Tuple>
    struct tuple_element {
      typedef typename gtest_internal::TupleElement<
          k < (tuple_size<Tuple>::value), k, Tuple>::type type;
    };
    
    #define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element<k, Tuple >::type
    
    // 6.1.3.4 Element access.
    
    namespace gtest_internal {
    
    
    $for i [[
    template <>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

      static const int value = $j;
    };
    
    
    ]]
    template <int k, class Tuple>
    struct tuple_element {
      typedef typename gtest_internal::TupleElement<
          k < (tuple_size<Tuple>::value), k, Tuple>::type type;
    };
    
    #define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element<k, Tuple >::type
    
    // 6.1.3.4 Element access.
    
    namespace gtest_internal {
    
    
    $for i [[
    template <>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    // A helper for implementing tuple_element<k, T>.  kIndexValid is true
    // iff k < the number of fields in tuple type T.
    template <bool kIndexValid, int kIndex, class Tuple>
    struct TupleElement;
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 0, GTEST_10_TUPLE_(T) > {
      typedef T0 type;
    };
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 1, GTEST_10_TUPLE_(T) > {
      typedef T1 type;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    // A helper for implementing tuple_element<k, T>.  kIndexValid is true
    // iff k < the number of fields in tuple type T.
    template <bool kIndexValid, int kIndex, class Tuple>
    struct TupleElement;
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 0, GTEST_10_TUPLE_(T) > {
      typedef T0 type;
    };
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 1, GTEST_10_TUPLE_(T) > {
      typedef T1 type;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      template <typename Tuple>
      static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) {
        TuplePrefixPrinter<N - 1>::PrintPrefixTo(t, os);
        *os << ", ";
        UniversalPrinter<typename ::std::tr1::tuple_element<N - 1, Tuple>::type>
            ::Print(::std::tr1::get<N - 1>(t), os);
      }
    
      // Tersely prints the first N fields of a tuple to a string vector,
      // one element for each field.
      template <typename Tuple>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      template <typename Tuple>
      static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) {
        TuplePrefixPrinter<N - 1>::PrintPrefixTo(t, os);
        *os << ", ";
        UniversalPrinter<typename ::std::tr1::tuple_element<N - 1, Tuple>::type>
            ::Print(::std::tr1::get<N - 1>(t), os);
      }
    
      // Tersely prints the first N fields of a tuple to a string vector,
      // one element for each field.
      template <typename Tuple>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // This causes undefined behavior, but supported compilers react in
    // the way we intend.
    namespace std {
    namespace tr1 {
    using ::std::get;
    using ::std::make_tuple;
    using ::std::tuple;
    using ::std::tuple_element;
    using ::std::tuple_size;
    }
    }
    
    # elif GTEST_OS_SYMBIAN
    
    // On Symbian, BOOST_HAS_TR1_TUPLE causes Boost's TR1 tuple library to
    // use STLport's tuple implementation, which unfortunately doesn't
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // This causes undefined behavior, but supported compilers react in
    // the way we intend.
    namespace std {
    namespace tr1 {
    using ::std::get;
    using ::std::make_tuple;
    using ::std::tuple;
    using ::std::tuple_element;
    using ::std::tuple_size;
    }
    }
    
    # elif GTEST_OS_SYMBIAN
    
    // On Symbian, BOOST_HAS_TR1_TUPLE causes Boost's TR1 tuple library to
    // use STLport's tuple implementation, which unfortunately doesn't
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top