HomeSort by relevance Sort by last modified time
    Searched refs:GOROOT (Results 76 - 100 of 197) sorted by null

1 2 34 5 6 7 8

  /prebuilts/go/linux-x86/src/cmd/doc/
dirs.go 56 // walk walks the trees in GOROOT and GOPATH.
58 d.bfsWalkRoot(build.Default.GOROOT)
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
sym.go 54 ctxt.LineHist.GOROOT = GOROOT
  /external/regex-re2/doc/
mksyntaxgo 4 out=$GOROOT/src/pkg/regexp/syntax/doc.go
  /prebuilts/build-tools/
build-prebuilts.sh 88 GOROOT=$(pwd)/.. ../bin/go install -race std
  /prebuilts/go/darwin-x86/misc/cgo/testcshared/
test.bash 19 goroot=$(go env GOROOT)
20 if [ ! -d "$goroot" ]; then
21 echo 'misc/cgo/testcshared/test.bash cannot find GOROOT' 1>&2
22 echo '$GOROOT:' "$GOROOT" 1>&2
23 echo 'go env GOROOT:' "$goroot" 1>&2
41 rm -rf pkg "${goroot}/${installdir}"
  /prebuilts/go/darwin-x86/src/cmd/go/
bug.go 80 printCmdOut(w, "GOROOT/bin/go version: ", filepath.Join(runtime.GOROOT(), "bin/go"), "version")
81 printCmdOut(w, "GOROOT/bin/go tool compile -V: ", filepath.Join(runtime.GOROOT(), "bin/go"), "tool", "compile", "-V")
go_test.go 180 if strings.HasPrefix(e, "GOROOT=") || strings.HasPrefix(e, "GOPATH=") || strings.HasPrefix(e, "GOBIN=") {
227 if tg.inParallel && (name == "GOROOT" || name == "GOPATH" || name == "GOBIN") && (strings.HasPrefix(val, "testdata") || strings.HasPrefix(val, "./testdata")) {
729 sys := runtime.GOROOT() + "/src/runtime/internal/sys/sys.go"
738 zversion := runtime.GOROOT() + "/src/runtime/internal/sys/zversion.go"
763 tg.cd(runtime.GOROOT() + "/src")
768 // $GOROOT/src shows up if there are any .go files there.
775 t.Errorf("package in GOROOT not listed as standard: %v", line)
901 t.Skip("don't install into GOROOT in short mode")
    [all...]
tool.go 108 // Set $GOROOT, mainly for go tool dist.
109 Env: mergeEnvLists([]string{"GOROOT=" + goroot}, os.Environ()),
  /prebuilts/go/darwin-x86/src/
race.bat 18 set GOROOT=%CD%\..
run.bat 15 :: we disallow local import for non-local packages, if %GOROOT% happens
  /prebuilts/go/linux-x86/misc/cgo/testcshared/
test.bash 19 goroot=$(go env GOROOT)
20 if [ ! -d "$goroot" ]; then
21 echo 'misc/cgo/testcshared/test.bash cannot find GOROOT' 1>&2
22 echo '$GOROOT:' "$GOROOT" 1>&2
23 echo 'go env GOROOT:' "$goroot" 1>&2
41 rm -rf pkg "${goroot}/${installdir}"
  /prebuilts/go/linux-x86/src/cmd/go/
bug.go 80 printCmdOut(w, "GOROOT/bin/go version: ", filepath.Join(runtime.GOROOT(), "bin/go"), "version")
81 printCmdOut(w, "GOROOT/bin/go tool compile -V: ", filepath.Join(runtime.GOROOT(), "bin/go"), "tool", "compile", "-V")
go_test.go 180 if strings.HasPrefix(e, "GOROOT=") || strings.HasPrefix(e, "GOPATH=") || strings.HasPrefix(e, "GOBIN=") {
227 if tg.inParallel && (name == "GOROOT" || name == "GOPATH" || name == "GOBIN") && (strings.HasPrefix(val, "testdata") || strings.HasPrefix(val, "./testdata")) {
729 sys := runtime.GOROOT() + "/src/runtime/internal/sys/sys.go"
738 zversion := runtime.GOROOT() + "/src/runtime/internal/sys/zversion.go"
763 tg.cd(runtime.GOROOT() + "/src")
768 // $GOROOT/src shows up if there are any .go files there.
775 t.Errorf("package in GOROOT not listed as standard: %v", line)
901 t.Skip("don't install into GOROOT in short mode")
    [all...]
tool.go 108 // Set $GOROOT, mainly for go tool dist.
109 Env: mergeEnvLists([]string{"GOROOT=" + goroot}, os.Environ()),
  /prebuilts/go/linux-x86/src/
race.bat 18 set GOROOT=%CD%\..
run.bat 15 :: we disallow local import for non-local packages, if %GOROOT% happens
  /prebuilts/go/darwin-x86/src/go/build/
build.go 33 GOROOT string // Go root
208 if p == "" || p == ctxt.GOROOT {
210 // If the path is the GOROOT, ignore it.
211 // People sometimes set GOPATH=$GOROOT.
240 if ctxt.GOROOT != "" {
241 dir := ctxt.joinPath(ctxt.GOROOT, "src")
256 // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables
257 // if set, or else the compiled code's GOARCH, GOOS, and GOROOT.
269 if filepath.Clean(def) == filepath.Clean(runtime.GOROOT()) {
270 // Don't set the default GOPATH to GOROOT,
    [all...]
  /prebuilts/go/linux-x86/src/go/build/
build.go 33 GOROOT string // Go root
208 if p == "" || p == ctxt.GOROOT {
210 // If the path is the GOROOT, ignore it.
211 // People sometimes set GOPATH=$GOROOT.
240 if ctxt.GOROOT != "" {
241 dir := ctxt.joinPath(ctxt.GOROOT, "src")
256 // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables
257 // if set, or else the compiled code's GOARCH, GOOS, and GOROOT.
269 if filepath.Clean(def) == filepath.Clean(runtime.GOROOT()) {
270 // Don't set the default GOPATH to GOROOT,
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
extern.go 158 The GOARCH, GOOS, GOPATH, and GOROOT environment variables complete
161 GOARCH, GOOS, and GOROOT are recorded at compile time and made available by
227 // GOROOT returns the root of the Go tree.
228 // It uses the GOROOT environment variable, if set,
230 func GOROOT() string {
231 s := gogetenv("GOROOT")
  /prebuilts/go/linux-x86/src/runtime/
extern.go 158 The GOARCH, GOOS, GOPATH, and GOROOT environment variables complete
161 GOARCH, GOOS, and GOROOT are recorded at compile time and made available by
227 // GOROOT returns the root of the Go tree.
228 // It uses the GOROOT environment variable, if set,
230 func GOROOT() string {
231 s := gogetenv("GOROOT")
  /prebuilts/go/darwin-x86/src/cmd/vet/
vet_test.go 69 errchk := filepath.Join(runtime.GOROOT(), "test", "errchk")
84 // $(GOROOT)/test/errchk ./testvet -shadow -printfuncs='Warn:1,Warnf:1' testdata/*.go testdata/*.s
  /prebuilts/go/linux-x86/src/cmd/vet/
vet_test.go 69 errchk := filepath.Join(runtime.GOROOT(), "test", "errchk")
84 // $(GOROOT)/test/errchk ./testvet -shadow -printfuncs='Warn:1,Warnf:1' testdata/*.go testdata/*.s
  /prebuilts/go/darwin-x86/src/cmd/nm/
nm_test.go 84 exepath := filepath.Join(runtime.GOROOT(), "src", "debug", f)
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
exportdata.go 18 // See $GOROOT/include/ar.h.
  /prebuilts/go/linux-x86/src/cmd/nm/
nm_test.go 84 exepath := filepath.Join(runtime.GOROOT(), "src", "debug", f)

Completed in 636 milliseconds

1 2 34 5 6 7 8