Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 231 for dotypedef (0.15 sec)

  1. src/debug/dwarf/type_test.go

    	return d
    }
    
    func TestTypedefsELF(t *testing.T) {
    	testTypedefs(t, elfData(t, "testdata/typedef.elf"), "elf", typedefTests)
    }
    
    func TestTypedefsMachO(t *testing.T) {
    	testTypedefs(t, machoData(t, "testdata/typedef.macho"), "macho", typedefTests)
    }
    
    func TestTypedefsELFDwarf4(t *testing.T) {
    	testTypedefs(t, elfData(t, "testdata/typedef.elf4"), "elf", typedefTests)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

      struct CU_FailureRecord* pPrev; /**< Pointer to previous record in linked list. */
    
    } CU_FailureRecord;
    typedef CU_FailureRecord* CU_pFailureRecord;  /**< Pointer to CU_FailureRecord. */
    
    /* CU_RunSummary type definition. */
    /** Data type for holding statistics and assertion failures for a test run. */
    typedef struct CU_RunSummary
    {
      unsigned int nSuitesRun;        /**< Number of suites completed during run. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue42018_windows.go

    // Copyright 2021 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.
    
    package cgotest
    
    /*
    typedef void *HANDLE;
    
    struct HWND__{int unused;}; typedef struct HWND__ *HWND;
    */
    import "C"
    
    import (
    	"testing"
    	"unsafe"
    )
    
    func test42018(t *testing.T) {
    	// Test that Windows handles are marked go:notinheap, by growing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/grappler/grappler.h

    #ifdef __cplusplus
    extern "C" {
    #endif
    
    // TF_TriState is the C API typedef for tri-state.
    typedef enum TF_TriState {
      TF_TriState_Default = 0,
      TF_TriState_Off,
      TF_TriState_On,
    } TF_TriState;
    
    // TF_GrapplerItem represents a combination of a graph, one of more fetch nodes,
    // and potentially a set of nodes to feed.
    typedef struct TF_GrapplerItem TF_GrapplerItem;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 03 18:08:43 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  5. src/debug/dwarf/testdata/cppunsuptypes.cc

    //    g++ -g -c -o cppunsuptypes.elf cppunsuptypes.cc
    
    int i = 3;
    double d = 3;
    
    // anonymous reference type
    int &culprit = i;
    
    // named reference type
    typedef double &dref;
    dref dr = d;
    
    // incorporated into another type
    typedef struct {
      dref q;
      int &r;
    } hasrefs;
    
    hasrefs hr = { d, i };
    
    // This code is intended to trigger a DWARF "pointer to member" type DIE
    struct CS { int dm; };
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 17:33:46 UTC 2019
    - 667 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    // ParamGeneratorInterface<T>. It wraps ParamIteratorInterface<T>
    // and implements the const forward iterator concept.
    template <typename T>
    class ParamIterator {
     public:
      typedef T value_type;
      typedef const T& reference;
      typedef ptrdiff_t difference_type;
    
      // ParamIterator assumes ownership of the impl_ pointer.
      ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/testx.go

    #define issue28772Constant2 2
    
    
    // issue 31891
    typedef struct {
    	long obj;
    } Issue31891A;
    
    typedef struct {
    	long obj;
    } Issue31891B;
    
    void callIssue31891(void);
    
    typedef struct {
    	int i;
    } Issue38408, *PIssue38408;
    
    extern void cfunc49633(void*); // definition is in test.go
    */
    import "C"
    
    // exports
    
    //export ReturnIntLong
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

    typedef CU_pTest PTestCase;               /**< Deprecated (version 1). @deprecated Use CU_pTest. */
    
    typedef CU_Suite  _TestGroup;             /**< Deprecated (version 1). @deprecated Use CU_Suite. */
    typedef CU_pSuite PTestGroup;             /**< Deprecated (version 1). @deprecated Use CU_pSuite. */
    
    typedef CU_TestRegistry  _TestRegistry;   /**< Deprecated (version 1). @deprecated Use CU_TestRegistry. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top