Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for tr1 (0.02 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.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: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

    // by the argument generators.
    //
    template <typename T1, typename T2>
    class CartesianProductGenerator2
        : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2> > {
     public:
      typedef ::std::tr1::tuple<T1, T2> ParamType;
    
      CartesianProductGenerator2(const ParamGenerator<T1>& g1,
          const ParamGenerator<T2>& g2)
          : g1_(g1), g2_(g2) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

    // by the argument generators.
    //
    template <typename T1, typename T2>
    class CartesianProductGenerator2
        : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2> > {
     public:
      typedef ::std::tr1::tuple<T1, T2> ParamType;
    
      CartesianProductGenerator2(const ParamGenerator<T1>& g1,
          const ParamGenerator<T2>& g2)
          : g1_(g1), g2_(g2) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/list6.go

    	"CR9",
    	"CR10",
    	"CR11",
    	"CR12",
    	"CR13",
    	"CR14",
    	"CR15",
    	"DR0", // [D_DR]
    	"DR1",
    	"DR2",
    	"DR3",
    	"DR4",
    	"DR5",
    	"DR6",
    	"DR7",
    	"TR0", // [D_TR]
    	"TR1",
    	"TR2",
    	"TR3",
    	"TR4",
    	"TR5",
    	"TR6",
    	"TR7",
    	"TLS",    // [D_TLS]
    	"MAXREG", // [MAXREG]
    }
    
    func init() {
    	obj.RegisterRegister(REG_AL, REG_AL+len(Register), rconv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      // These are needed as the Nokia Symbian Compiler cannot decide between
      // const T& and const T* in a function template. The Nokia compiler _can_
      // decide between class template specializations for T and T*, so a
      // tr1::type_traits-like is_pointer works, and we can overload on that.
      template <typename T>
      inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) {
        if (pointer == NULL) {
          *ss_ << "(null)";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      // These are needed as the Nokia Symbian Compiler cannot decide between
      // const T& and const T* in a function template. The Nokia compiler _can_
      // decide between class template specializations for T and T*, so a
      // tr1::type_traits-like is_pointer works, and we can overload on that.
      template <typename T>
      inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) {
        if (pointer == NULL) {
          *ss_ << "(null)";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top