HomeSort by relevance Sort by last modified time
    Searched full:iota (Results 1 - 25 of 996) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug362.go 8 // iota inside var
13 a = iota // ERROR "undefined: iota|iota is only defined in const"
14 b = iota // ERROR "undefined: iota|iota is only defined in const"
15 c = iota // ERROR "undefined: iota|iota is only defined in const
    [all...]
bug186.go 9 const X = iota
15 f(iota); // ERROR "iota"
issue8183.go 7 // Tests correct reporting of line numbers for errors involving iota,
12 ok = byte(iota + 253)
19 c = len([1 - iota]int{})
bug006.go 12 x float64 = iota
13 g float64 = 4.5 * iota
  /prebuilts/go/linux-x86/test/fixedbugs/
bug362.go 8 // iota inside var
13 a = iota // ERROR "undefined: iota|iota is only defined in const"
14 b = iota // ERROR "undefined: iota|iota is only defined in const"
15 c = iota // ERROR "undefined: iota|iota is only defined in const
    [all...]
bug186.go 9 const X = iota
15 f(iota); // ERROR "iota"
issue8183.go 7 // Tests correct reporting of line numbers for errors involving iota,
12 ok = byte(iota + 253)
19 c = len([1 - iota]int{})
bug006.go 12 x float64 = iota
13 g float64 = 4.5 * iota
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
issue16153.0.golden 13 X3 int64 = iota
19 X4 int64 = iota
issue16153.2.golden 13 X3 int64 = iota
19 X4 int64 = iota
issue16153.1.golden 25 X3 int64 = iota
31 X4 int64 = iota
blank.1.golden 16 tweedledee T = iota
22 redQueen int = iota
44 _ int = iota
49 // Unexported constants counting from blank iota. See issue 9615.
51 _ = iota
52 one = iota + 1
79 _ T = iota
blank.go 15 _ T = iota
22 tweedledee T = iota
28 redQueen int = iota
50 _ int = iota
55 // Unexported constants counting from blank iota.
58 _ = iota
59 one = iota + 1
issue16153.go 20 X3 int64 = iota
25 X4 int64 = iota
  /prebuilts/go/linux-x86/src/go/doc/testdata/
issue16153.0.golden 13 X3 int64 = iota
19 X4 int64 = iota
issue16153.2.golden 13 X3 int64 = iota
19 X4 int64 = iota
issue16153.1.golden 25 X3 int64 = iota
31 X4 int64 = iota
blank.1.golden 16 tweedledee T = iota
22 redQueen int = iota
44 _ int = iota
49 // Unexported constants counting from blank iota. See issue 9615.
51 _ = iota
52 one = iota + 1
79 _ T = iota
blank.go 15 _ T = iota
22 tweedledee T = iota
28 redQueen int = iota
50 _ int = iota
55 // Unexported constants counting from blank iota.
58 _ = iota
59 one = iota + 1
issue16153.go 20 X3 int64 = iota
25 X4 int64 = iota
  /prebuilts/go/darwin-x86/test/
iota.go 7 // Test iota.
19 x int = iota
20 y = iota
21 z = 1 << iota
22 f float32 = 2 * iota
23 g float32 = 4.5 * float32(iota)
33 A = 1 << iota
37 E = iota * iota
44 b = iota <<
    [all...]
  /prebuilts/go/linux-x86/test/
iota.go 7 // Test iota.
19 x int = iota
20 y = iota
21 z = 1 << iota
22 f float32 = 2 * iota
23 g float32 = 4.5 * float32(iota)
33 A = 1 << iota
37 E = iota * iota
44 b = iota <<
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/testdata/
const0.src 18 for i := 0; i < 10; i++ {} // don't crash with non-nil iota here
216 // iota
218 iota0 = iota
219 iota1 = iota
220 iota2 = iota*2
224 iota6 = iota*3
233 _b0 = iota
234 _b1 = assert(iota + iota2 == 5)
235 _b2 = len([iota]int{}) // iota may appear in a type
    [all...]
  /prebuilts/go/linux-x86/src/go/types/testdata/
const0.src 18 for i := 0; i < 10; i++ {} // don't crash with non-nil iota here
216 // iota
218 iota0 = iota
219 iota1 = iota
220 iota2 = iota*2
224 iota6 = iota*3
233 _b0 = iota
234 _b1 = assert(iota + iota2 == 5)
235 _b2 = len([iota]int{}) // iota may appear in a type
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/internal/sys/
arch.go 10 AMD64 ArchFamilyType = iota

Completed in 804 milliseconds

1 2 3 4 5 6 7 8 91011>>