Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for t7 (0.03 sec)

  1. src/internal/types/testdata/check/decls2/decls2b.go

    // may have a trailing comma.
    type T7 struct {}
    
    func (T7) m1() {}
    func ((T7)) m2() {}
    func ((*T7)) m3() {}
    func (x *(T7),) m4() {}
    func (x (*(T7)),) m5() {}
    func (x ((*((T7)))),) m6() {}
    
    // Check that methods with parenthesized receiver are actually present (issue #23130).
    var (
    	_ = T7.m1
    	_ = T7.m2
    	_ = (*T7).m3
    	_ = (*T7).m4
    	_ = (*T7).m5
    	_ = (*T7).m6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

        typename T6, typename T7>
    struct Types7 {
      typedef T1 Head;
      typedef Types6<T2, T3, T4, T5, T6, T7> Tail;
    };
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
        typename T6, typename T7, typename T8>
    struct Types8 {
      typedef T1 Head;
      typedef Types7<T2, T3, T4, T5, T6, T7, T8> Tail;
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

        typename T6, typename T7>
    struct Types7 {
      typedef T1 Head;
      typedef Types6<T2, T3, T4, T5, T6, T7> Tail;
    };
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
        typename T6, typename T7, typename T8>
    struct Types8 {
      typedef T1 Head;
      typedef Types7<T2, T3, T4, T5, T6, T7, T8> Tail;
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

        typename T6, typename T7>
    internal::ValueArray7<T1, T2, T3, T4, T5, T6, T7> Values(T1 v1, T2 v2, T3 v3,
        T4 v4, T5 v5, T6 v6, T7 v7) {
      return internal::ValueArray7<T1, T2, T3, T4, T5, T6, T7>(v1, v2, v3, v4, v5,
          v6, v7);
    }
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
        typename T6, typename T7, typename T8>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue53454.go

    type T6 struct {
    	T9
    	C T10
    }
    
    type T7 struct {
    	T10
    	T11
    }
    
    type T8 struct {
    	T9
    	C T7
    }
    
    type T9 struct {
    	A T5
    	B T3
    	D T4
    }
    
    type T10 struct {
    	W float64
    }
    
    type T11 struct {
    	X float64
    	Y float64
    }
    
    func MainTest(x T1, y T8, z T6) float64 {
    	return Test(x.B, x.A, x.D, x.C, y.B, y.A, y.D, y.C, z.B, z.A, z.D,
    		T7{
    			T10: T10{
    				W: z.C.W,
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 21 17:23:40 UTC 2022
    - 1002 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

        typename T6, typename T7>
    internal::ValueArray7<T1, T2, T3, T4, T5, T6, T7> Values(T1 v1, T2 v2, T3 v3,
        T4 v4, T5 v5, T6 v6, T7 v7) {
      return internal::ValueArray7<T1, T2, T3, T4, T5, T6, T7>(v1, v2, v3, v4, v5,
          v6, v7);
    }
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
        typename T6, typename T7, typename T8>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/cycles4.go

    }
    
    func _(x T1, y T3) {
    	x = y
    }
    
    // Check that interfaces are type-checked in order of
    // (embedded interface) dependencies (was issue 7158).
    
    var x1 T5 = T7(nil)
    
    type T5 interface {
    	T6
    }
    
    type T6 interface {
    	m() T7
    }
    type T7 interface {
    	T5
    }
    
    // Actual test case from issue 7158.
    
    func wrapNode() Node {
    	return wrapElement()
    }
    
    func wrapElement() Element {
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

      template <typename T1, typename T2, typename T3, typename T4, typename T5,
          typename T6, typename T7>
      operator ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6,
          T7> >() const {
        return ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7> >(
            new CartesianProductGenerator7<T1, T2, T3, T4, T5, T6, T7>(
            static_cast<ParamGenerator<T1> >(g1_),
            static_cast<ParamGenerator<T2> >(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)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

      template <typename T1, typename T2, typename T3, typename T4, typename T5,
          typename T6, typename T7>
      operator ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6,
          T7> >() const {
        return ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7> >(
            new CartesianProductGenerator7<T1, T2, T3, T4, T5, T6, T7>(
            static_cast<ParamGenerator<T1> >(g1_),
            static_cast<ParamGenerator<T2> >(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)
  10. test/fixedbugs/bug336.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type T1 struct {
    	Next *T2
    }
    
    type T2 T1
    
    type T3 struct {
    	Next *T4
    }
    
    type T4 T5
    type T5 T6
    type T6 T7
    type T7 T8
    type T8 T9
    type T9 T3
    
    type T10 struct {
    	x struct {
    		y ***struct {
    			z *struct {
    				Next *T11
    			}
    		}
    	}
    }
    
    type T11 T10
    
    type T12 struct {
    	F1 *T15
    	F2 *T13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.2K bytes
    - Viewed (0)
Back to top