Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for degl (0.19 sec)

  1. src/cmd/cgo/internal/test/issue27054/egl.h

    // Copyright 2018 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.
    
    // This is the relevant part of EGL/egl.h.
    
    typedef void *EGLDisplay;
    C
    - Registered: Tue Mar 26 11:13:08 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 255 bytes
    - Viewed (0)
  2. src/cmd/cgo/ast.go

    	f.Name = make(map[string]*Name)
    	f.NamePos = make(map[*Name]token.Pos)
    
    	// In ast1, find the import "C" line and get any extra C preamble.
    	sawC := false
    	for _, decl := range ast1.Decls {
    		switch decl := decl.(type) {
    		case *ast.GenDecl:
    			for _, spec := range decl.Specs {
    				s, ok := spec.(*ast.ImportSpec)
    				if !ok || s.Path.Value != `"C"` {
    					continue
    				}
    				sawC = true
    				if s.Name != nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  3. src/clean.bat

    "%GOBIN%\go" clean...
    Batch File
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu May 12 16:59:17 GMT 2022
    - 600 bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    	go tool fix -r cftype <pkg>
    	go tool fix -r jni <pkg>
    
    It will replace nil with 0 in the appropriate places.
    
    The EGLDisplay case was introduced in Go 1.12. Use the egl rewrite
    to auto-update code from Go 1.11 and earlier:
    
    	go tool fix -r egl <pkg>
    
    The EGLConfig case was introduced in Go 1.15. Use the eglconf rewrite
    to auto-update code from Go 1.14 and earlier:
    
    	go tool fix -r eglconf <pkg>
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  5. src/archive/zip/reader_test.go

    	// which should not fail.
    	//
    	// Length   Method    Size  Cmpr    Date    Time   CRC-32   Name
    	// --------  ------  ------- ---- ---------- ----- --------  ----
    	//        0  Defl:N        2   0% 12-01-2022 16:50 00000000  META-INF/
    	//       60  Defl:N       59   2% 12-01-2022 16:50 af937e93  META-INF/MANIFEST.MF
    	// --------          -------  ---                            -------
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	DECW DX                                 // 66ffca
    	DECW R11                                // 6641ffcb
    	DECL (BX)                               // ff0b
    	DECL (R11)                              // 41ff0b
    	DECL DX                                 // ffca
    	DECL R11                                // 41ffcb
    	DECQ (BX)                               // 48ff0b
    	DECQ (R11)                              // 49ff0b
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  7. api/go1.14.txt

    pkg syscall (freebsd-arm64), const IP_DUMMYNET_CONFIGURE = 60
    pkg syscall (freebsd-arm64), const IP_DUMMYNET_CONFIGURE ideal-int
    pkg syscall (freebsd-arm64), const IP_DUMMYNET_DEL = 61
    pkg syscall (freebsd-arm64), const IP_DUMMYNET_DEL ideal-int
    pkg syscall (freebsd-arm64), const IP_DUMMYNET_FLUSH = 62
    pkg syscall (freebsd-arm64), const IP_DUMMYNET_FLUSH ideal-int
    pkg syscall (freebsd-arm64), const IP_DUMMYNET_GET = 64
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg go/ast, type CompositeLit struct, Rbrace token.Pos
    pkg go/ast, type CompositeLit struct, Type Expr
    pkg go/ast, type Decl interface, End() token.Pos
    pkg go/ast, type Decl interface, Pos() token.Pos
    pkg go/ast, type Decl interface, unexported methods
    pkg go/ast, type DeclStmt struct
    pkg go/ast, type DeclStmt struct, Decl Decl
    pkg go/ast, type DeferStmt struct
    pkg go/ast, type DeferStmt struct, Call *CallExpr
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. api/go1.16.txt

    pkg syscall (darwin-arm64), const IPV6_FW_ADD = 30
    pkg syscall (darwin-arm64), const IPV6_FW_ADD ideal-int
    pkg syscall (darwin-arm64), const IPV6_FW_DEL = 31
    pkg syscall (darwin-arm64), const IPV6_FW_DEL ideal-int
    pkg syscall (darwin-arm64), const IPV6_FW_FLUSH = 32
    pkg syscall (darwin-arm64), const IPV6_FW_FLUSH ideal-int
    pkg syscall (darwin-arm64), const IPV6_FW_GET = 34
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    		return p.hasPointer(f, t.X, false)
    	case *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:
    		return true
    	case *ast.Ident:
    		// TODO: Handle types defined within function.
    		for _, d := range p.Decl {
    			gd, ok := d.(*ast.GenDecl)
    			if !ok || gd.Tok != token.TYPE {
    				continue
    			}
    			for _, spec := range gd.Specs {
    				ts, ok := spec.(*ast.TypeSpec)
    				if !ok {
    					continue
    				}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top