Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 83 of 83 for astype (0.73 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    		return d.mustFind("<unspecified>")
    	}
    	name := sn[5:] // could also decode from Type.string
    
    	sdie := d.find(name)
    	if sdie != 0 {
    		return sdie
    	}
    
    	gtdwSym := d.newtype(gotype)
    	d.tdmap[gotype] = loader.Sym(gtdwSym.Sym.(dwSym))
    	return loader.Sym(gtdwSym.Sym.(dwSym))
    }
    
    func (d *dwctxt) newtype(gotype loader.Sym) *dwarf.DWDie {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    		// void
    		{`package n0; func f() { f() }`, `f()`, `void`},
    
    		// types
    		{`package t0; type _ int`, `int`, `type`},
    		{`package t1; type _ []int`, `[]int`, `type`},
    		{`package t2; type _ func()`, `func()`, `type`},
    		{`package t3; type _ func(int)`, `int`, `type`},
    		{`package t3; type _ func(...int)`, `...int`, `type`},
    
    		// built-ins
    		{`package b0; var _ = len("")`, `len`, `builtin`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    		// void
    		{`package n0; func f() { f() }`, `f()`, `void`},
    
    		// types
    		{`package t0; type _ int`, `int`, `type`},
    		{`package t1; type _ []int`, `[]int`, `type`},
    		{`package t2; type _ func()`, `func()`, `type`},
    		{`package t3; type _ func(int)`, `int`, `type`},
    		{`package t3; type _ func(...int)`, `...int`, `type`},
    
    		// built-ins
    		{`package b0; var _ = len("")`, `len`, `builtin`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top