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

<<21222324252627282930>>

  /prebuilts/go/linux-x86/src/go/ast/
filter_test.go 1 // Copyright 2013 The Go Authors. All rights reserved.
5 // To avoid a cyclic dependency with go/parser, this file is in a separate package.
11 "go/ast"
12 "go/format"
13 "go/parser"
14 "go/token"
  /prebuilts/go/linux-x86/src/go/types/
example_test.go 1 // Copyright 2015 The Go Authors. All rights reserved.
12 // This file shows examples of basic usage of the go/types API.
14 // To locate a Go package, use (*go/build.Context).Import.
15 // To load, parse, and type-check a complete Go program
16 // from source, use golang.org/x/tools/go/loader.
21 "go/ast"
22 "go/format"
23 "go/importer"
24 "go/parser
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
wincallback.go 1 // Copyright 2014 The Go Authors. All rights reserved.
23 buf.WriteString(`// generated by wincallback.go; run go generate
26 // execute Go implemented callback function. It is not
31 // which Go callback function is executed later on.
48 buf.WriteString(fmt.Sprintf(`// generated by wincallback.go; run go generate
54 err := ioutil.WriteFile("zcallback_windows.go", buf.Bytes(), 0666)
  /prebuilts/go/linux-x86/src/sync/
runtime.go 1 // Copyright 2012 The Go Authors. All rights reserved.
25 // Approximation of notifyList in runtime/sema.go. Size and alignment must
35 // See runtime/sema.go for documentation.
38 // See runtime/sema.go for documentation.
41 // See runtime/sema.go for documentation.
44 // See runtime/sema.go for documentation.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug484.go 3 // Copyright 2014 The Go Authors. All rights reserved.
26 //go:noinline
32 //go:noinline
44 //go:noinline
48 //go:noinline
61 //go:noinline
  /prebuilts/go/linux-x86/test/
func5.go 3 // Copyright 2009 The Go Authors. All rights reserved.
17 go caller(f, a, b, c)
76 go addc(1, 2, c)
78 go fc(1, 2, c)
80 go fnc()(1, 2, c)
82 go func(a, b int, c chan int) { c <- a+b }(1, 2, c)
  /prebuilts/go/darwin-x86/src/cmd/go/
clean.go 1 // Copyright 2012 The Go Authors. All rights reserved.
20 The go command builds most objects in a temporary directory,
21 so go clean is mainly concerned with object files left by other
22 tools or by manual invocations of go build.
29 _testmain.go old gotest file, left from Makefiles
34 DIR(.exe) from go build
35 DIR.test(.exe) from go test -c
36 MAINFILE(.exe) from go build MAINFILE.go
40 directory, and MAINFILE is the base name of any Go sourc
    [all...]
bootstrap.go 1 // Copyright 2012 The Go Authors. All rights reserved.
7 // This code is compiled only into the bootstrap 'go' binary.
9 // trees, like the use of "net/http" in vcs.go.
18 var errHTTP = errors.New("no http in bootstrap go command")
  /prebuilts/go/linux-x86/src/cmd/go/
clean.go 1 // Copyright 2012 The Go Authors. All rights reserved.
20 The go command builds most objects in a temporary directory,
21 so go clean is mainly concerned with object files left by other
22 tools or by manual invocations of go build.
29 _testmain.go old gotest file, left from Makefiles
34 DIR(.exe) from go build
35 DIR.test(.exe) from go test -c
36 MAINFILE(.exe) from go build MAINFILE.go
40 directory, and MAINFILE is the base name of any Go sourc
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
fp.go 3 // Copyright 2015 The Go Authors. All rights reserved.
16 //go:noinline
39 //go:noinline
82 //go:noinline
87 //go:noinline
92 //go:noinline
97 //go:noinline
102 //go:noinline
107 //go:noinline
112 //go:noinlin
    [all...]
append.go 1 // Copyright 2015 The Go Authors. All rights reserved.
5 // append_ssa.go tests append operations.
12 //go:noinline
17 //go:noinline
chan.go 1 // Copyright 2015 The Go Authors. All rights reserved.
5 // chan_ssa.go tests chan operations.
12 //go:noinline
17 //go:noinline
cmp.go 1 // Copyright 2015 The Go Authors. All rights reserved.
5 // cmp_ssa.go tests compare simplification operations.
12 //go:noinline
17 //go:noinline
divbyzero.go 22 //go:noinline
27 //go:noinline
32 //go:noinline
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
fp.go 3 // Copyright 2015 The Go Authors. All rights reserved.
16 //go:noinline
39 //go:noinline
82 //go:noinline
87 //go:noinline
92 //go:noinline
97 //go:noinline
102 //go:noinline
107 //go:noinline
112 //go:noinlin
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/testterminal18153/
terminal_test.go 1 // Copyright 2016 The Go Authors. All rights reserved.
7 // This test is run by src/cmd/dist/test.go (cmd_go_test_terminal),
8 // and not by cmd/go's tests. This is because this test requires that
10 // dist doesn't run `cmd/go test` against this test directory if
  /prebuilts/go/darwin-x86/src/
make.rc 2 # Copyright 2012 The Go Authors. All rights reserved.
10 # GOROOT_FINAL: The expected final Go root, baked into binaries.
11 # The default is the location of the Go tree during the build.
22 # GO_GCFLAGS: Additional go tool compile arguments to use when
25 # GO_LDFLAGS: Additional go tool link arguments to use when
29 # to include all cgo related files, .c and .go file with "cgo"
39 rm -f ./runtime/runtime_defs.go
44 echo '##### Building Go bootstrap tool.'
49 if(! test -x $GOROOT_BOOTSTRAP/bin/go){
50 echo 'ERROR: Cannot find '$GOROOT_BOOTSTRAP'/bin/go.' >[1=2
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
chanbarrier_test.go 1 // Copyright 2015 The Go Authors. All rights reserved.
30 go func() {
37 go func() {
66 go func() {
noasm.go 1 // Copyright 2013 The Go Authors. All rights reserved.
6 // These routines have corresponding stubs in stubs_asm.go.
12 import _ "unsafe" // for go:linkname
37 //go:linkname bytes_Compare bytes.Compare
os_linux_mips64x.go 1 // Copyright 2015 The Go Authors. All rights reserved.
23 //go:nosplit
50 //go:nosplit
51 //go:nowritebarrierrec
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
finalizer_test.go 1 // Copyright 2012 The Go Authors. All rights reserved.
16 go func() {
36 go func() {
56 go func() {
  /prebuilts/go/darwin-x86/src/sort/
zfuncversion.go 1 // DO NOT EDIT; AUTO-GENERATED from sort.go using genzfunc.go
3 // Copyright 2016 The Go Authors. All rights reserved.
9 // Auto-generated variant of sort.go:insertionSort
18 // Auto-generated variant of sort.go:siftDown
37 // Auto-generated variant of sort.go:heapSort
51 // Auto-generated variant of sort.go:medianOfThree
64 // Auto-generated variant of sort.go:swapRange
71 // Auto-generated variant of sort.go:doPivot
135 // Auto-generated variant of sort.go:quickSor
    [all...]
  /prebuilts/go/darwin-x86/test/chan/
select6.go 3 // Copyright 2011 The Go Authors. All rights reserved.
20 go func() { <-c1 }()
21 go func() {
30 go func() { c2 <- true }()
select7.go 3 // Copyright 2011 The Go Authors. All rights reserved.
33 go recv(c)
40 go recv(c)
49 go recv(c)
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue16249.go 3 // Copyright 2016 The Go Authors. All rights reserved.
17 //go:noinline
24 //go:noinline
42 //go:noinline

Completed in 582 milliseconds

<<21222324252627282930>>