HomeSort by relevance Sort by last modified time
    Searched refs:go (Results 676 - 700 of 3824) sorted by null

<<21222324252627282930>>

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
dupLoad.go 3 // Copyright 2016 The Go Authors. All rights reserved.
14 //go:noinline
27 go func() {
34 go func() {
48 //go:noinline
59 go func() {
66 go func() {
string.go 1 // Copyright 2015 The Go Authors. All rights reserved.
5 // string_ssa.go tests string operations.
10 //go:noinline
15 //go:noinline
20 //go:noinline
63 //go:noinline
90 //go:noinline
113 //go:noinline
118 //go:noinline
174 //go:noinlin
    [all...]
  /prebuilts/go/darwin-x86/src/go/printer/
example_test.go 1 // Copyright 2012 The Go Authors. All rights reserved.
10 "go/ast"
11 "go/parser"
12 "go/printer"
13 "go/token"
38 funcAST, fset := parseFunc("example_test.go", "ExampleFprint")
57 // funcAST, fset := parseFunc("example_test.go", "ExampleFprint")
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue11771.go 4 // Copyright 2015 The Go Authors. All rights reserved.
28 dir, err := ioutil.TempDir("", "go-issue11771")
34 // The go:nowritebarrier magic comment is only permitted in
45 fmt.Fprintln(&buf, "//go:nowritebarrier\r")
51 if err := ioutil.WriteFile(filepath.Join(dir, "x.go"), buf.Bytes(), 0666); err != nil {
55 cmd := exec.Command("go", "tool", "compile", "x.go")
  /prebuilts/go/darwin-x86/test/
linkx_run.go 4 // Copyright 2014 The Go Authors. All rights reserved.
27 cmd := exec.Command("go", "run", "-ldflags=-X main.tbd"+sep+"hello -X main.overwrite"+sep+"trumped -X main.nosuchsymbol"+sep+"neverseen", "linkx.go")
47 cmd = exec.Command("go", "run", "-ldflags=-X main.tbd", "linkx.go")
55 cmd = exec.Command("go", "run", "-ldflags=-X main.b=false -X main.x=42", "linkx.go")
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
dupLoad.go 3 // Copyright 2016 The Go Authors. All rights reserved.
14 //go:noinline
27 go func() {
34 go func() {
48 //go:noinline
59 go func() {
66 go func() {
string.go 1 // Copyright 2015 The Go Authors. All rights reserved.
5 // string_ssa.go tests string operations.
10 //go:noinline
15 //go:noinline
20 //go:noinline
63 //go:noinline
90 //go:noinline
113 //go:noinline
118 //go:noinline
174 //go:noinlin
    [all...]
  /prebuilts/go/linux-x86/src/go/printer/
example_test.go 1 // Copyright 2012 The Go Authors. All rights reserved.
10 "go/ast"
11 "go/parser"
12 "go/printer"
13 "go/token"
38 funcAST, fset := parseFunc("example_test.go", "ExampleFprint")
57 // funcAST, fset := parseFunc("example_test.go", "ExampleFprint")
  /prebuilts/go/linux-x86/test/fixedbugs/
issue11771.go 4 // Copyright 2015 The Go Authors. All rights reserved.
28 dir, err := ioutil.TempDir("", "go-issue11771")
34 // The go:nowritebarrier magic comment is only permitted in
45 fmt.Fprintln(&buf, "//go:nowritebarrier\r")
51 if err := ioutil.WriteFile(filepath.Join(dir, "x.go"), buf.Bytes(), 0666); err != nil {
55 cmd := exec.Command("go", "tool", "compile", "x.go")
  /prebuilts/go/linux-x86/test/
linkx_run.go 4 // Copyright 2014 The Go Authors. All rights reserved.
27 cmd := exec.Command("go", "run", "-ldflags=-X main.tbd"+sep+"hello -X main.overwrite"+sep+"trumped -X main.nosuchsymbol"+sep+"neverseen", "linkx.go")
47 cmd = exec.Command("go", "run", "-ldflags=-X main.tbd", "linkx.go")
55 cmd = exec.Command("go", "run", "-ldflags=-X main.b=false -X main.x=42", "linkx.go")
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
select_test.go 1 // Copyright 2012 The Go Authors. All rights reserved.
18 go func() {
22 // See comment in runtime/select.go:^func selectgoImpl.
42 go func() {
61 go func() {
83 go func() {
119 go func() {
136 go func() {
165 go func() {
177 go f(
    [all...]
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
select_test.go 1 // Copyright 2012 The Go Authors. All rights reserved.
18 go func() {
22 // See comment in runtime/select.go:^func selectgoImpl.
42 go func() {
61 go func() {
83 go func() {
119 go func() {
136 go func() {
165 go func() {
177 go f(
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
lex.go 1 // Copyright 2009 The Go Authors. All rights reserved.
66 case "go:nointerface":
70 case "go:noescape":
72 case "go:norace":
74 case "go:nosplit":
76 case "go:noinline":
78 case "go:systemstack":
80 yyerror("//go:systemstack only allowed in runtime")
83 case "go:nowritebarrier":
85 yyerror("//go:nowritebarrier only allowed in runtime"
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/
help.go 1 // Copyright 2011 The Go Authors. All rights reserved.
9 Short: "calling between Go and C",
11 There are two different ways to call between Go and C/C++ code.
13 The first is the cgo tool, which is part of the Go distribution. For
14 information on how to use it see the cgo documentation (go doc cmd/cgo).
18 http://swig.org/. When running go build, any file with a .swig
22 When either cgo or SWIG is used, go build will pass any .c, .m, .s,
35 go action [packages]
45 environment variable (For more details see: 'go help gopath').
51 for packages to be built with the go tool
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
os_dragonfly.go 1 // Copyright 2014 The Go Authors. All rights reserved.
21 //go:noescape
24 //go:noescape
27 //go:noescape
30 //go:noescape
33 //go:noescape
36 //go:noescape
39 //go:noescape
45 //go:noescape
48 //go:noescap
    [all...]
os_freebsd.go 1 // Copyright 2011 The Go Authors. All rights reserved.
14 //go:noescape
17 //go:noescape
20 //go:noescape
23 //go:noescape
26 //go:noescape
29 //go:noescape
32 //go:noescape
37 //go:noescape
75 // and lock_futex.go for comments
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
lex.go 1 // Copyright 2009 The Go Authors. All rights reserved.
66 case "go:nointerface":
70 case "go:noescape":
72 case "go:norace":
74 case "go:nosplit":
76 case "go:noinline":
78 case "go:systemstack":
80 yyerror("//go:systemstack only allowed in runtime")
83 case "go:nowritebarrier":
85 yyerror("//go:nowritebarrier only allowed in runtime"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
help.go 1 // Copyright 2011 The Go Authors. All rights reserved.
9 Short: "calling between Go and C",
11 There are two different ways to call between Go and C/C++ code.
13 The first is the cgo tool, which is part of the Go distribution. For
14 information on how to use it see the cgo documentation (go doc cmd/cgo).
18 http://swig.org/. When running go build, any file with a .swig
22 When either cgo or SWIG is used, go build will pass any .c, .m, .s,
35 go action [packages]
45 environment variable (For more details see: 'go help gopath').
51 for packages to be built with the go tool
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
os_dragonfly.go 1 // Copyright 2014 The Go Authors. All rights reserved.
21 //go:noescape
24 //go:noescape
27 //go:noescape
30 //go:noescape
33 //go:noescape
36 //go:noescape
39 //go:noescape
45 //go:noescape
48 //go:noescap
    [all...]
os_freebsd.go 1 // Copyright 2011 The Go Authors. All rights reserved.
14 //go:noescape
17 //go:noescape
20 //go:noescape
23 //go:noescape
26 //go:noescape
29 //go:noescape
32 //go:noescape
37 //go:noescape
75 // and lock_futex.go for comments
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
TransferPipe.java 53 void go(IInterface iface, FileDescriptor fd, String prefix, method in interface:TransferPipe.Caller
84 static void go(Caller caller, IInterface iface, FileDescriptor out, method in class:TransferPipe
86 go(caller, iface, out, prefix, args, DEFAULT_TIMEOUT); method
89 static void go(Caller caller, IInterface iface, FileDescriptor out, method in class:TransferPipe
94 caller.go(iface, out, prefix, args);
101 caller.go(iface, tp.getWriteFd().getFileDescriptor(), prefix, args);
102 tp.go(out, timeout);
124 tp.go(out, timeout);
128 public void go(FileDescriptor out) throws IOException { method in class:TransferPipe
129 go(out, DEFAULT_TIMEOUT) method
132 public void go(FileDescriptor out, long timeout) throws IOException { method in class:TransferPipe
    [all...]
  /prebuilts/go/darwin-x86/doc/progs/
run.go 1 // Copyright 2015 The Go Authors. All rights reserved.
21 const usage = `go run run.go [tests]
23 run.go runs the docs tests in this directory.
25 Tests may be specified without their .go suffix.
44 tmpdir, err := ioutil.TempDir("", "go-progs")
59 go func() {
82 cmd := exec.Command("go", "build", "-o", prog, file+".go")
85 return fmt.Errorf("go build %s.go failed: %v\nOutput:\n%s", file, err, out
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
example_test.go 1 // Copyright 2012 The Go Authors. All rights reserved.
10 "go/ast"
11 "go/format"
12 "go/parser"
13 "go/token"
16 // This example demonstrates how to inspect the AST of a Go program.
27 f, err := parser.ParseFile(fset, "src.go", src, 0)
48 // src.go:2:9: p
49 // src.go:3:7: c
50 // src.go:3:11: 1.
    [all...]
  /prebuilts/go/linux-x86/doc/progs/
run.go 1 // Copyright 2015 The Go Authors. All rights reserved.
21 const usage = `go run run.go [tests]
23 run.go runs the docs tests in this directory.
25 Tests may be specified without their .go suffix.
44 tmpdir, err := ioutil.TempDir("", "go-progs")
59 go func() {
82 cmd := exec.Command("go", "build", "-o", prog, file+".go")
85 return fmt.Errorf("go build %s.go failed: %v\nOutput:\n%s", file, err, out
    [all...]
  /prebuilts/go/linux-x86/src/go/ast/
example_test.go 1 // Copyright 2012 The Go Authors. All rights reserved.
10 "go/ast"
11 "go/format"
12 "go/parser"
13 "go/token"
16 // This example demonstrates how to inspect the AST of a Go program.
27 f, err := parser.ParseFile(fset, "src.go", src, 0)
48 // src.go:2:9: p
49 // src.go:3:7: c
50 // src.go:3:11: 1.
    [all...]

Completed in 596 milliseconds

<<21222324252627282930>>