Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 231 for dotypedef (0.34 sec)

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

      // length of Types.
      static bool Register(const char* prefix, const char* case_name,
                           const char* test_names, int index) {
        typedef typename Types::Head Type;
        typedef Fixture<Type> FixtureClass;
        typedef typename GTEST_BIND_(TestSel, Type) TestClass;
    
        // First, registers the first type-parameterized test in the type
        // list.
        MakeAndRegisterTestInfo(
    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

      // length of Types.
      static bool Register(const char* prefix, const char* case_name,
                           const char* test_names, int index) {
        typedef typename Types::Head Type;
        typedef Fixture<Type> FixtureClass;
        typedef typename GTEST_BIND_(TestSel, Type) TestClass;
    
        // First, registers the first type-parameterized test in the type
        // list.
        MakeAndRegisterTestInfo(
    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. fess-crawler/src/test/resources/extractor/program/test.h

    // Header Test テスト
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 48 bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    namespace gtest_internal {
    
    // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
    template <typename T>
    struct ByRef { typedef const T& type; };  // NOLINT
    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
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

     public:
    #if GTEST_OS_WINDOWS
      typedef __int64 Int;
      typedef unsigned __int64 UInt;
    #else
      typedef long long Int;  // NOLINT
      typedef unsigned long long UInt;  // NOLINT
    #endif  // GTEST_OS_WINDOWS
    };
    
    // Integer types of known sizes.
    typedef TypeWithSize<4>::Int Int32;
    typedef TypeWithSize<4>::UInt UInt32;
    typedef TypeWithSize<8>::Int Int64;
    typedef TypeWithSize<8>::UInt UInt64;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

      typedef T3 type;
    };
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 4, GTEST_10_TUPLE_(T) > {
      typedef T4 type;
    };
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 5, GTEST_10_TUPLE_(T) > {
      typedef T5 type;
    };
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 6, GTEST_10_TUPLE_(T) > {
      typedef T6 type;
    };
    
    template <GTEST_10_TYPENAMES_(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)
  7. src/runtime/cgo/gcc_freebsd_sigaction.c

    // go_sigaction_t is a C version of the sigactiont struct from
    // os_freebsd.go.  This definition — and its conversion to and from struct
    // sigaction — are specific to freebsd/amd64.
    typedef struct {
            uint32_t __bits[_SIG_WORDS];
    } go_sigset_t;
    typedef struct {
    	uintptr_t handler;
    	int32_t flags;
    	go_sigset_t mask;
    } go_sigaction_t;
    
    int32_t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue4339.h

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    typedef struct Issue4339 Issue4339;
    
    struct Issue4339 {
    	char *name;
    	void (*bar)(void);
    };
    
    extern Issue4339 exported4339;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 313 bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

      typedef T3 type;
    };
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 4, GTEST_10_TUPLE_(T) > {
      typedef T4 type;
    };
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 5, GTEST_10_TUPLE_(T) > {
      typedef T5 type;
    };
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 6, GTEST_10_TUPLE_(T) > {
      typedef T6 type;
    };
    
    template <GTEST_10_TYPENAMES_(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)
  10. src/cmd/cgo/internal/testgodefs/testdata/issue8478.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    package main
    
    // Issue 8478.  Test that void* is consistently mapped to *byte.
    
    /*
    typedef struct {
    	void *p;
    	void **q;
    	void ***r;
    } s;
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 351 bytes
    - Viewed (0)
Back to top