HomeSort by relevance Sort by last modified time
    Searched refs:refers (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/divergent/
buf_test.go 7 func Example_suffix() {} // OK because refers to suffix annotation.
11 func ExampleBuf() {} // OK because refers to known top-level type.
13 func ExampleBuf_Append() {} // OK because refers to known method.
15 func ExampleBuf_Clear() {} // ERROR "ExampleBuf_Clear refers to unknown field or method: Buf.Clear"
17 func ExampleBuf_suffix() {} // OK because refers to suffix annotation.
21 func ExampleBuf_Append_suffix() {} // OK because refers to known method with valid suffix.
23 func ExampleDefaultBuf() {} // OK because refers to top-level identifier.
31 func ExamplePuffer() {} // ERROR "ExamplePuffer refers to unknown identifier: Puffer"
33 func ExamplePuffer_Append() {} // ERROR "ExamplePuffer_Append refers to unknown identifier: Puffer"
35 func ExamplePuffer_suffix() {} // ERROR "ExamplePuffer_suffix refers to unknown identifier: Puffer
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/divergent/
buf_test.go 7 func Example_suffix() {} // OK because refers to suffix annotation.
11 func ExampleBuf() {} // OK because refers to known top-level type.
13 func ExampleBuf_Append() {} // OK because refers to known method.
15 func ExampleBuf_Clear() {} // ERROR "ExampleBuf_Clear refers to unknown field or method: Buf.Clear"
17 func ExampleBuf_suffix() {} // OK because refers to suffix annotation.
21 func ExampleBuf_Append_suffix() {} // OK because refers to known method with valid suffix.
23 func ExampleDefaultBuf() {} // OK because refers to top-level identifier.
31 func ExamplePuffer() {} // ERROR "ExamplePuffer refers to unknown identifier: Puffer"
33 func ExamplePuffer_Append() {} // ERROR "ExamplePuffer_Append refers to unknown identifier: Puffer"
35 func ExamplePuffer_suffix() {} // ERROR "ExamplePuffer_suffix refers to unknown identifier: Puffer
    [all...]
  /prebuilts/go/darwin-x86/test/
initloop.go 14 a int = b // ERROR "a refers to\n.*b refers to\n.*c refers to\n.*a"
  /prebuilts/go/linux-x86/test/
initloop.go 14 a int = b // ERROR "a refers to\n.*b refers to\n.*c refers to\n.*a"
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug463.go 12 const a = a // ERROR "refers to itself|definition loop"
16 A = B // ERROR "refers to itself|definition loop"
bug253.go 26 if s4.i != 0 { // .i refers to s4.S1.i, unambiguously
bug482.go 9 // caused gccgo to erroneously report "variable initializer refers to
  /prebuilts/go/linux-x86/test/fixedbugs/
bug463.go 12 const a = a // ERROR "refers to itself|definition loop"
16 A = B // ERROR "refers to itself|definition loop"
bug253.go 26 if s4.i != 0 { // .i refers to s4.S1.i, unambiguously
bug482.go 9 // caused gccgo to erroneously report "variable initializer refers to
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/testingpkg/
tests_test.go 22 func Example_goodSuffix() // OK because refers to suffix annotation.
26 func ExampleBuf() // OK because refers to known top-level type.
28 func ExampleBuf_Append() {} // OK because refers to known method.
30 func ExampleBuf_Clear() {} // ERROR "ExampleBuf_Clear refers to unknown field or method: Buf.Clear"
32 func ExampleBuf_suffix() {} // OK because refers to suffix annotation.
36 func ExampleBuf_Append_suffix() {} // OK because refers to known method with valid suffix.
38 func ExampleDefaultBuf() {} // OK because refers to top-level identifier.
46 func ExamplePuffer() // ERROR "ExamplePuffer refers to unknown identifier: Puffer"
48 func ExamplePuffer_Append() // ERROR "ExamplePuffer_Append refers to unknown identifier: Puffer"
50 func ExamplePuffer_suffix() // ERROR "ExamplePuffer_suffix refers to unknown identifier: Puffer
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/testingpkg/
tests_test.go 22 func Example_goodSuffix() // OK because refers to suffix annotation.
26 func ExampleBuf() // OK because refers to known top-level type.
28 func ExampleBuf_Append() {} // OK because refers to known method.
30 func ExampleBuf_Clear() {} // ERROR "ExampleBuf_Clear refers to unknown field or method: Buf.Clear"
32 func ExampleBuf_suffix() {} // OK because refers to suffix annotation.
36 func ExampleBuf_Append_suffix() {} // OK because refers to known method with valid suffix.
38 func ExampleDefaultBuf() {} // OK because refers to top-level identifier.
46 func ExamplePuffer() // ERROR "ExamplePuffer refers to unknown identifier: Puffer"
48 func ExamplePuffer_Append() // ERROR "ExamplePuffer_Append refers to unknown identifier: Puffer"
50 func ExamplePuffer_suffix() // ERROR "ExamplePuffer_suffix refers to unknown identifier: Puffer
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
object_test.go 34 {t1, false}, // type name refers to named type and vice versa
35 {NewTypeName(0, nil, "t2", &emptyInterface), true}, // type name refers to unnamed type
36 {NewTypeName(0, pkg, "t3", n1), true}, // type name refers to named type with different type name
37 {NewTypeName(0, nil, "t4", Typ[Int32]), true}, // type name refers to basic type with different name
38 {NewTypeName(0, nil, "int32", Typ[Int32]), false}, // type name refers to basic type with same name
40 {NewTypeName(0, nil, "rune", Typ[Rune]), true}, // type name refers to basic type rune which is an alias already
  /prebuilts/go/linux-x86/src/go/types/
object_test.go 34 {t1, false}, // type name refers to named type and vice versa
35 {NewTypeName(0, nil, "t2", &emptyInterface), true}, // type name refers to unnamed type
36 {NewTypeName(0, pkg, "t3", n1), true}, // type name refers to named type with different type name
37 {NewTypeName(0, nil, "t4", Typ[Int32]), true}, // type name refers to basic type with different name
38 {NewTypeName(0, nil, "int32", Typ[Int32]), false}, // type name refers to basic type with same name
40 {NewTypeName(0, nil, "rune", Typ[Rune]), true}, // type name refers to basic type rune which is an alias already
  /prebuilts/go/darwin-x86/src/cmd/go/
go11.go 9 // Test that go1.1 tag above is included in builds. main.go refers to this definition.
  /prebuilts/go/linux-x86/src/cmd/go/
go11.go 9 // Test that go1.1 tag above is included in builds. main.go refers to this definition.
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/incomplete/
examples_test.go 7 func Example_suffix() // OK because refers to suffix annotation.
17 func ExampleBuf_suffix() {} // OK because refers to suffix annotation.
21 func ExampleBuf_Append_suffix() {} // OK because refers to known method with valid suffix.
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/incomplete/
examples_test.go 7 func Example_suffix() // OK because refers to suffix annotation.
17 func ExampleBuf_suffix() {} // OK because refers to suffix annotation.
21 func ExampleBuf_Append_suffix() {} // OK because refers to known method with valid suffix.
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
x.s 5 ;# refers to fn via a local label. We use .gcc_except_table as we
  /compatibility/cdd/2_device-types/
2_6_tablet-reqs.md 3 An **Android Tablet device** refers to an Android device implementation that is
  /prebuilts/go/darwin-x86/src/net/
tcpsockopt_solaris.go 23 // thing, it refers to the total time until aborting (not between
  /prebuilts/go/linux-x86/src/net/
tcpsockopt_solaris.go 23 // thing, it refers to the total time until aborting (not between
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-cris/
libdso-15b.d 7 # A DSO that refers to two symbols in another DSO with
libdso-1c.d 8 # this DSO refers with two relocs each, a GOT and a PLT reference.
libdso-1d.d 9 # this DSO refers with two relocs each, a GOT and a PLT reference.

Completed in 538 milliseconds

1 2 3 4 5 6