Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for tr1 (0.02 sec)

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

    // tuples of up-to 10 fields.  The following implementation works
    // regardless of whether tr1::tuple is implemented using the
    // non-standard variadic template feature or not.
    
    inline void PrintTo(const ::std::tr1::tuple<>& t, ::std::ostream* os) {
      PrintTupleTo(t, os);
    }
    
    template <typename T1>
    void PrintTo(const ::std::tr1::tuple<T1>& t, ::std::ostream* os) {
      PrintTupleTo(t, os);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    // tuples of up-to 10 fields.  The following implementation works
    // regardless of whether tr1::tuple is implemented using the
    // non-standard variadic template feature or not.
    
    inline void PrintTo(const ::std::tr1::tuple<>& t, ::std::ostream* os) {
      PrintTupleTo(t, os);
    }
    
    template <typename T1>
    void PrintTo(const ::std::tr1::tuple<T1>& t, ::std::ostream* os) {
      PrintTupleTo(t, os);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    template <typename T>
    struct ByRef<T&> { typedef T& type; };  // NOLINT
    
    // A handy wrapper for ByRef.
    #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
    
    // AddRef<T>::type is T if T is a reference; otherwise it's T&.  This
    // is the same as tr1::add_reference<T>::type.
    template <typename T>
    struct AddRef { typedef T& type; };  // NOLINT
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    template <typename T>
    struct ByRef<T&> { typedef T& type; };  // NOLINT
    
    // A handy wrapper for ByRef.
    #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
    
    // AddRef<T>::type is T if T is a reference; otherwise it's T&.  This
    // is the same as tr1::add_reference<T>::type.
    template <typename T>
    struct AddRef { typedef T& type; };  // NOLINT
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	DR5:  "DR5",
    	DR6:  "DR6",
    	DR7:  "DR7",
    	DR8:  "DR8",
    	DR9:  "DR9",
    	DR10: "DR10",
    	DR11: "DR11",
    	DR12: "DR12",
    	DR13: "DR13",
    	DR14: "DR14",
    	DR15: "DR15",
    	TR0:  "TR0",
    	TR1:  "TR1",
    	TR2:  "TR2",
    	TR3:  "TR3",
    	TR4:  "TR4",
    	TR5:  "TR5",
    	TR6:  "TR6",
    	TR7:  "TR7",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	CR13: "%cr13",
    	CR14: "%cr14",
    	CR15: "%cr15",
    	DR0:  "%db0",
    	DR1:  "%db1",
    	DR2:  "%db2",
    	DR3:  "%db3",
    	DR4:  "%db4",
    	DR5:  "%db5",
    	DR6:  "%db6",
    	DR7:  "%db7",
    	TR0:  "%tr0",
    	TR1:  "%tr1",
    	TR2:  "%tr2",
    	TR3:  "%tr3",
    	TR4:  "%tr4",
    	TR5:  "%tr5",
    	TR6:  "%tr6",
    	TR7:  "%tr7",
    }
    
    var gnuOp = map[Op]string{
    	CBW:       "cbtw",
    	CDQ:       "cltd",
    	CMPSD:     "cmpsl",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    template <typename T>
    struct CompileAssertTypesEqual<T, T> {
    };
    
    // Removes the reference from a type if it is a reference type,
    // otherwise leaves it unchanged.  This is the same as
    // tr1::remove_reference, which is not widely available yet.
    template <typename T>
    struct RemoveReference { typedef T type; };  // NOLINT
    template <typename T>
    struct RemoveReference<T&> { typedef T type; };  // NOLINT
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    template <typename T>
    struct CompileAssertTypesEqual<T, T> {
    };
    
    // Removes the reference from a type if it is a reference type,
    // otherwise leaves it unchanged.  This is the same as
    // tr1::remove_reference, which is not widely available yet.
    template <typename T>
    struct RemoveReference { typedef T type; };  // NOLINT
    template <typename T>
    struct RemoveReference<T&> { typedef T type; };  // NOLINT
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top