Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetTypeId (0.14 sec)

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

    //     Foo foo;
    //     EXPECT_TRUE(foo.StatusIsOK());
    //   }
    
    // Note that we call GetTestTypeId() instead of GetTypeId<
    // ::testing::Test>() here to get the type ID of testing::Test.  This
    // is to work around a suspected linker bug when using Google Test as
    // a framework on macOS.  The bug causes GetTypeId<
    // ::testing::Test>() to return different values depending on whether
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //     Foo foo;
    //     EXPECT_TRUE(foo.StatusIsOK());
    //   }
    
    // Note that we call GetTestTypeId() instead of GetTypeId<
    // ::testing::Test>() here to get the type ID of testing::Test.  This
    // is to work around a suspected linker bug when using Google Test as
    // a framework on macOS.  The bug causes GetTypeId<
    // ::testing::Test>() to return different values depending on whether
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    			needType = append(needType, n)
    			continue
    		}
    
    		if (goos == "darwin" || goos == "ios") && strings.HasSuffix(n.C, "Ref") {
    			// For FooRef, find out if FooGetTypeID exists.
    			s := n.C[:len(n.C)-3] + "GetTypeID"
    			n := &Name{Go: s, C: s}
    			names = append(names, n)
    			optional[n] = true
    		}
    
    		// Otherwise, we'll need to find out from gcc.
    		names = append(names, n)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top