HomeSort by relevance Sort by last modified time
    Searched refs:iota (Results 1 - 25 of 490) 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"
bug006.go 12 x float64 = iota
13 g float64 = 4.5 * 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{})
bug297.go 13 _ = iota; // ignore first value by assigning to blank identifier
issue4405.go 10 _ = 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"
bug006.go 12 x float64 = iota
13 g float64 = 4.5 * 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{})
bug297.go 13 _ = iota; // ignore first value by assigning to blank identifier
  /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...]
rename1.go 16 a = 1 + iota // ERROR "string|incompatible types" "convert iota"
59 iota = "38"
58 iota = "38" const
rename.go 55 iota
63 // cannot use iota here, because iota = 38 below
101 iota = 38
100 iota = 38 const
  /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...]
rename1.go 16 a = 1 + iota // ERROR "string|incompatible types" "convert iota"
59 iota = "38"
58 iota = "38" const
rename.go 55 iota
63 // cannot use iota here, because iota = 38 below
101 iota = 38
100 iota = 38 const
  /external/skia/src/jumper/
SkJumper.h 29 float iota[8]; // 0,1,2,3,4,5,6,7 member in struct:SkJumper_constants
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
blank.go 15 _ T = iota
22 tweedledee T = iota
28 redQueen int = iota
42 _ int = iota
47 // Unexported constants counting from blank iota.
50 _ = iota
51 one = iota + 1
  /prebuilts/go/linux-x86/src/go/doc/testdata/
blank.go 15 _ T = iota
22 tweedledee T = iota
28 redQueen int = iota
42 _ int = iota
47 // Unexported constants counting from blank iota.
50 _ = iota
51 one = iota + 1
  /external/libcxx/test/std/numerics/numeric.ops/numeric.iota/
iota.pass.cpp 13 // void iota(ForwardIterator first, ForwardIterator last, T value);
27 std::iota(InIter(ia), InIter(ia+s), 5);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numeric.ops/numeric.iota/
iota.pass.cpp 13 // void iota(ForwardIterator first, ForwardIterator last, T value);
27 std::iota(InIter(ia), InIter(ia+s), 5);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/numeric.ops/numeric.iota/
iota.pass.cpp 13 // void iota(ForwardIterator first, ForwardIterator last, T value);
27 std::iota(InIter(ia), InIter(ia+s), 5);
  /prebuilts/go/darwin-x86/src/runtime/internal/sys/
arch.go 10 AMD64 ArchFamilyType = iota
  /prebuilts/go/linux-x86/src/runtime/internal/sys/
arch.go 10 AMD64 ArchFamilyType = iota

Completed in 1005 milliseconds

1 2 3 4 5 6 7 8 91011>>