Searched
full:func (Results
751 -
775 of
13995) sorted by null
<<31323334353637383940>>
/prebuilts/go/darwin-x86/test/fixedbugs/issue3552.dir/ |
one.go | 11 func (t T) F() int { return t.int } 15 func (u U) F() int { return u.int } 21 func (v V) F() int { return int(v.lint) } 25 func (w W) F() int { return int(w.lint) }
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue4066.go | 11 func main() { 21 func foo() (val int) { 23 defer func() { 35 func foo1() {
|
issue4099.go | 11 // The noescape comment only applies to the next func, 16 func F1([]byte) 18 func F2([]byte) 20 func G() {
|
issue4518.go | 13 func DontInline() {} 15 func F(e interface{}) (int, int) { 20 func G() (int, int) { 25 func bogus1(d interface{}) (int, int) { 33 func bogus2() (int, int) { 41 func bogus3(d interface{}) (int, int) { 49 func bogus4() (int, int) { 57 func check(a, b int) { 64 func main() {
|
issue6269.go | 13 func (foo) Error() string { 19 func (bar) Error() string { 23 func unused() { 30 func main() {
|
issue7129.go | 11 func f(int) {} 13 func g() bool { return true } 15 func h(int, int) {} 17 func main() {
|
/prebuilts/go/darwin-x86/test/fixedbugs/issue4326.dir/ |
q2.go | 5 func main() {
|
/prebuilts/go/darwin-x86/test/fixedbugs/issue7995b.dir/ |
x2.go | 5 func main() {
|
/prebuilts/go/darwin-x86/test/ |
func3.go | 16 func f1(*t2, x t3) // ERROR "named" 17 func f2(t1, *t2, x t3) // ERROR "named" 18 func f3() (x int, *string) // ERROR "named" 20 func f4() (t1 t1) // legal - scope of parameter named t1 starts in body of f4.
|
funcdup.go | 15 type T1 func(i, i int) // ERROR "duplicate argument i|redefinition|previous" 16 type T2 func(i int) (i int) // ERROR "duplicate argument i|redefinition|previous" 17 type T3 func() (i, i int) // ERROR "duplicate argument i|redefinition|previous" 21 func (i *R) F1(i int) {} // ERROR "duplicate argument i|redefinition|previous" 22 func (i *R) F2() (i int) {return 0} // ERROR "duplicate argument i|redefinition|previous" 23 func (i *R) F3(j int) (j int) {return 0} // ERROR "duplicate argument j|redefinition|previous" 25 func F1(i, i int) {} // ERROR "duplicate argument i|redefinition|previous" 26 func F2(i int) (i int) {return 0} // ERROR "duplicate argument i|redefinition|previous" 27 func F3() (i, i int) {return 0, 0} // ERROR "duplicate argument i|redefinition|previous"
|
parentype.go | 11 func f(interface{}) 12 func g() {} 13 func main() { 16 f(map[string]func(){"a":g,"c":g})
|
recover2.go | 18 func main() { 28 func mustRecover(s string) { 38 func test1() { 43 func test2() { 48 func test3() { 55 func test4() { 66 func test5() { 73 func test6() { 81 func test7() {
|
struct0.go | 13 func recv(c chan interface{}) struct{} { 19 func recv1(c chan interface{}) { 24 func rec() { 28 func main() {
|
/prebuilts/go/darwin-x86/test/ken/ |
litfun.go | 11 func 13 x := func(a int)int { 14 x := func(a int)int { 15 x := func(a int)int {
|
/prebuilts/go/linux-x86/doc/progs/ |
error3.go | 14 func init() { 20 func viewRecord(w http.ResponseWriter, r *http.Request) error { 32 type appHandler func(http.ResponseWriter, *http.Request) error 34 func (fn appHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { 44 func (ap) NewContext(*http.Request) *ctx { return nil } 48 func (*ctx) Errorf(string, ...interface{}) {} 54 func (ds) NewKey(*ctx, string, string, int, *int) string { return "" } 55 func (ds) Get(*ctx, string, *Record) error { return nil } 63 func main() {}
|
/prebuilts/go/linux-x86/misc/cgo/testshared/src/dep/ |
dep.go | 11 func F() int {
|
/prebuilts/go/linux-x86/misc/cgo/testshared/src/dep2/ |
dep2.go | 9 func G() int {
|
/prebuilts/go/linux-x86/misc/cgo/testshared/src/exe/ |
exe.go | 8 func main() {
|
/prebuilts/go/linux-x86/src/cmd/api/testdata/src/pkg/p3/ |
golden.txt | 1 pkg p3, func BadHop(int, int, int) (bool, bool, *ThirdBase, *ThirdBase, error)
|
/prebuilts/go/linux-x86/src/cmd/go/testdata/norunexample/ |
test_test.go | 8 func TestBuilt(t *testing.T) {
|
/prebuilts/go/linux-x86/src/cmd/go/testdata/src/vend/hello/ |
hello.go | 8 func main() {
|
/prebuilts/go/linux-x86/src/cmd/go/testdata/testimport/ |
p_test.go | 9 func TestF(t *testing.T) {
|
x_test.go | 11 func TestF1(t *testing.T) {
|
/prebuilts/go/linux-x86/src/cmd/gofmt/testdata/ |
emptydecl.golden | 14 func main() {}
|
emptydecl.input | 16 func main() {
|
Completed in 881 milliseconds
<<31323334353637383940>>