Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for A14 (0.08 sec)

  1. test/initialize.go

    	{a7[0] == a7[1], true},
    	{m8(a8) == "ghi", true},
    	{m8(a9) == "ghi", true},
    	{a10[0] == a10[1], true},
    	{a11[0] == a11[1], true},
    	{&a12[0][0] == &a12[1][0], true},
    	{&a13[0][0] == &a13[1][0], true},
    	{&a14[0][0] == &a14[1][0], true},
    	{&a15[0][0] == &a15[1][0], true},
    	{&a16[0][0] == &a16[1][0], true},
    }
    
    func main() {
    	ok := true
    	for i, s := range same {
    		if !reflect.DeepEqual(s.a, s.b) {
    			ok = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 04:04:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/aliases.go

    )
    
    // basic aliases
    type (
    	Ai = int
    	A0 = T0
    	A1 = T1
    	A2 = T2
    	A3 = T3
    	A4 = T4
    
    	A10 = [10]int
    	A11 = []byte
    	A12 = struct {
    		x int
    	}
    	A13 = interface {
    		m() A2
    	}
    	A14 = func(int, A0) chan A2
    )
    
    // alias receiver types
    func (T0) m1() {}
    func (A0) m2() {}
    
    // alias receiver types (long type declaration chains)
    type (
    	V0 = V1
    	V1 = (V2)
    	V2 = (V3)
    	V3 = T0
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 27 02:52:03 UTC 2018
    - 624 bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/testdata/aliases.gox

    type <type 14 "A12" = <type 15 struct { .go.aliases.x <type -11>; }>>;
    type <type 16 "A13" = <type 17 interface { .go.aliases.m () <type 18 "A2" = <type 19 "T2" <type 20 struct { .go.aliases.x <type -11>; }>>>; }>>;
    type <type 21 "A14" = <type 22 (? <type -11>, ? <type 1>) <type 23 chan <type 18>>>>;
    type <type 18>;
    type <type 24 "A3" = <type 25 "T3" <type 26 interface { .go.aliases.m () <type 19>; }>>>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 27 02:52:03 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/importer_test.go

    	{pkgpath: "imports", wantinits: []string{"imports..import", "fmt..import"}},
    	{pkgpath: "importsar", name: "Hello", want: "var Hello string"},
    	{pkgpath: "aliases", name: "A14", gccgoVersion: 7, want: "type A14 = func(int, T0) chan T2"},
    	{pkgpath: "aliases", name: "C0", gccgoVersion: 7, want: "type C0 struct{f1 C1; f2 C1}"},
    	{pkgpath: "escapeinfo", name: "NewT", want: "func NewT(data []byte) *T"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/expr3.go

    	_ = A1{s /* ERROR "cannot convert" */ : 0}
    
    	a0 := [...]int{}
    	assert(len(a0) == 0)
    
    	a1 := [...]int{0, 1, 2}
    	assert(len(a1) == 3)
    	var a13 [3]int
    	var a14 [4]int
    	a13 = a1
    	a14 = a1 /* ERRORx `cannot use .* in assignment` */
    	_, _ = a13, a14
    
    	a2 := [...]int{- /* ERROR "negative" */ 1: 0}
    	_ = a2
    
    	a3 := [...]int{0, 1, 2, 0 /* ERROR "duplicate index" */ : 0, 3: 3, 4}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 22:41:49 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. src/debug/dwarf/testdata/typedef.c

    t_func_ptr_int_of_char_schar_uchar *a8;
    t_func_void_of_char *a9;
    t_func_void_of_void *a10;
    t_func_void_of_ptr_char_dots *a11;
    t_my_struct *a12;
    t_my_struct1 *a12a;
    t_my_union *a12b;
    t_my_enum *a13;
    t_my_list *a14;
    t_my_tree *a15;
    t_ptr_func_int_of_float_complex *a16;
    t_ptr_func_int_of_double_complex *a17;
    t_ptr_func_int_of_long_double_complex *a18;
    
    int main()
    {
    	return 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 02 19:56:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. src/runtime/syscall_windows.go

    	args := [...]uintptr{a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15}
    	return syscall_SyscallN(fn, args[:nargs]...)
    }
    
    //go:linkname syscall_Syscall18 syscall.Syscall18
    //go:nosplit
    func syscall_Syscall18(fn, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18 uintptr) (r1, r2, err uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/syscall/dll_windows.go

    // Deprecated: Use [SyscallN] instead.
    func Syscall15(trap, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15 uintptr) (r1, r2 uintptr, err Errno)
    
    // Deprecated: Use [SyscallN] instead.
    func Syscall18(trap, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18 uintptr) (r1, r2 uintptr, err Errno)
    
    func SyscallN(trap uintptr, args ...uintptr) (r1, r2 uintptr, err Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/decls4.go

    )
    
    type (
    	Ai = int
    	A0 = T0
    	A1 = T1
    	A2 = T2
    	A3 = T3
    	A4 = T4
    
    	A10 = [10]int
    	A11 = []byte
    	A12 = struct {
    		x int
    	}
    	A13 = interface{
    		m() A2
    	}
    	A14 = func(int, A0) chan A2
    )
    
    // check assignment compatibility due to equality of types
    var (
    	xi_ int
    	ai Ai = xi_
    
    	x0 T0
    	a0 A0 = x0
    
    	x1 T1
    	a1 A1 = x1
    
    	x2 T2
    	a2 A2 = x2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/amd64dynlinkerror.s

    // See issue 58735.
    TEXT ·a13(SB), 0, $0-0
    	MULXQ runtime·writeBarrier(SB), AX, CX
    	RET
    
    // Various special cases in the use-R15-after-global-access-when-dynlinking check.
    // See issue 58632.
    TEXT ·a14(SB), 0, $0-0
    	CMPL runtime·writeBarrier(SB), $0
    	MULXQ R15, AX, BX // ERROR "when dynamic linking, R15 is clobbered by a global variable access and is used here"
    	RET
    TEXT ·a15(SB), 0, $0-0
    	CMPL runtime·writeBarrier(SB), $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 20:45:41 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top