Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for llvm (0.03 sec)

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

    // Ask the compiler to never inline a given function.
    # define GTEST_NO_INLINE_ __attribute__((noinline))
    #else
    # define GTEST_NO_INLINE_
    #endif
    
    // _LIBCPP_VERSION is defined by the libc++ library from the LLVM project.
    #if defined(__GLIBCXX__) || defined(_LIBCPP_VERSION)
    # define GTEST_HAS_CXXABI_H_ 1
    #else
    # define GTEST_HAS_CXXABI_H_ 0
    #endif
    
    namespace testing {
    
    class Message;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Ask the compiler to never inline a given function.
    # define GTEST_NO_INLINE_ __attribute__((noinline))
    #else
    # define GTEST_NO_INLINE_
    #endif
    
    // _LIBCPP_VERSION is defined by the libc++ library from the LLVM project.
    #if defined(__GLIBCXX__) || defined(_LIBCPP_VERSION)
    # define GTEST_HAS_CXXABI_H_ 1
    #else
    # define GTEST_HAS_CXXABI_H_ 0
    #endif
    
    namespace testing {
    
    class Message;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    // passes over the host archives below.
    func loadWindowsHostArchives(ctxt *Link) {
    	any := true
    	for i := 0; any && i < 2; i++ {
    		// Link crt2.o (if present) to resolve "atexit" when
    		// using LLVM-based compilers.
    		isunresolved := symbolsAreUnresolved(ctxt, []string{"atexit"})
    		if isunresolved[0] {
    			if p := ctxt.findLibPath("crt2.o"); p != "none" {
    				hostObject(ctxt, "crt2", p)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/net/netip/netip_test.go

    			if llu != tt.linkLocalUnicast {
    				t.Errorf("IsLinkLocalUnicast(%v) = %v; want %v", tt.ip, llu, tt.linkLocalUnicast)
    			}
    
    			llm := tt.ip.IsLinkLocalMulticast()
    			if llm != tt.linkLocalMulticast {
    				t.Errorf("IsLinkLocalMulticast(%v) = %v; want %v", tt.ip, llm, tt.linkLocalMulticast)
    			}
    
    			lo := tt.ip.IsLoopback()
    			if lo != tt.loopback {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top