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

<<21222324252627282930>>

  /prebuilts/go/linux-x86/test/
alg.go 3 // Copyright 2016 The Go Authors. All rights reserved.
15 //go:noinline
21 //go:noinline
27 //go:noinline
linkobj.go 4 // Copyright 2016 The Go Authors. All rights reserved.
24 dir, err := ioutil.TempDir("", "go-test-linkobj-")
38 writeFile("p1.go", `
45 writeFile("p2.go", `
57 writeFile("p3.go", `
79 run("go", "tool", "compile", pkg, "-D", ".", "-I", ".", "-l", "-o", "p1."+o, "-linkobj", "p1.lo", "p1.go")
80 run("go", "tool", "compile", pkg, "-D", ".", "-I", ".", "-l", "-o", "p2."+o, "-linkobj", "p2.lo", "p2.go")
81 run("go", "tool", "compile", pkg, "-D", ".", "-I", ".", "-l", "-o", "p3."+o, "-linkobj", "p3.lo", "p3.go"
    [all...]
notinheap2.go 3 // Copyright 2016 The Go Authors. All rights reserved.
7 // Test walk errors for go:notinheap.
11 //go:notinheap
40 //go:nowritebarrier
  /prebuilts/go/linux-x86/test/fixedbugs/
bug128.go 3 // Copyright 2009 The Go Authors. All rights reserved.
20 uetli:~/Source/go1/test/bugs gri$ 6g bug127.go
21 bug127.go:5: switch statement must have case labels
22 bug127.go:9: switch statement must have case labels
bug331.go 3 // Copyright 2011 The Go Authors. All rights reserved.
32 bug331.go:12: cannot use "hello" (type string) as type float64 in assignment
33 bug331.go:12: cannot use 0 (type float64) as type os.Error in assignment:
35 bug331.go:12: error in shape across RETURN
bug429_run.go 4 // Copyright 2014 The Go Authors. All rights reserved.
8 // Run the bug429.go test.
21 cmd := exec.Command("go", "run", filepath.Join("fixedbugs", "bug429.go"))
issue16008.go 3 // Copyright 2016 The Go Authors. All rights reserved.
39 // go:noinline
44 //go:noinline
51 //go:noinline
  /prebuilts/go/darwin-x86/src/runtime/
os_windows.go 1 // Copyright 2009 The Go Authors. All rights reserved.
17 //go:cgo_import_dynamic runtime._AddVectoredExceptionHandler AddVectoredExceptionHandler%2 "kernel32.dll"
18 //go:cgo_import_dynamic runtime._CloseHandle CloseHandle%1 "kernel32.dll"
19 //go:cgo_import_dynamic runtime._CreateEventA CreateEventA%4 "kernel32.dll"
20 //go:cgo_import_dynamic runtime._CreateIoCompletionPort CreateIoCompletionPort%4 "kernel32.dll"
21 //go:cgo_import_dynamic runtime._CreateThread CreateThread%6 "kernel32.dll"
22 //go:cgo_import_dynamic runtime._CreateWaitableTimerA CreateWaitableTimerA%3 "kernel32.dll"
23 //go:cgo_import_dynamic runtime._DuplicateHandle DuplicateHandle%7 "kernel32.dll"
24 //go:cgo_import_dynamic runtime._ExitProcess ExitProcess%1 "kernel32.dll"
25 //go:cgo_import_dynamic runtime._FreeEnvironmentStringsW FreeEnvironmentStringsW%1 "kernel32.dll
    [all...]
syscall_windows.go 1 // Copyright 2014 The Go Authors. All rights reserved.
42 //go:linkname compileCallback syscall.compileCallback
93 //go:linkname syscall_loadsystemlibrary syscall.loadsystemlibrary
94 //go:nosplit
126 //go:linkname syscall_loadlibrary syscall.loadlibrary
127 //go:nosplit
141 //go:linkname syscall_getprocaddress syscall.getprocaddress
142 //go:nosplit
156 //go:linkname syscall_Syscall syscall.Syscall
157 //go:nospli
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
os_windows.go 1 // Copyright 2009 The Go Authors. All rights reserved.
17 //go:cgo_import_dynamic runtime._AddVectoredExceptionHandler AddVectoredExceptionHandler%2 "kernel32.dll"
18 //go:cgo_import_dynamic runtime._CloseHandle CloseHandle%1 "kernel32.dll"
19 //go:cgo_import_dynamic runtime._CreateEventA CreateEventA%4 "kernel32.dll"
20 //go:cgo_import_dynamic runtime._CreateIoCompletionPort CreateIoCompletionPort%4 "kernel32.dll"
21 //go:cgo_import_dynamic runtime._CreateThread CreateThread%6 "kernel32.dll"
22 //go:cgo_import_dynamic runtime._CreateWaitableTimerA CreateWaitableTimerA%3 "kernel32.dll"
23 //go:cgo_import_dynamic runtime._DuplicateHandle DuplicateHandle%7 "kernel32.dll"
24 //go:cgo_import_dynamic runtime._ExitProcess ExitProcess%1 "kernel32.dll"
25 //go:cgo_import_dynamic runtime._FreeEnvironmentStringsW FreeEnvironmentStringsW%1 "kernel32.dll
    [all...]
syscall_windows.go 1 // Copyright 2014 The Go Authors. All rights reserved.
42 //go:linkname compileCallback syscall.compileCallback
93 //go:linkname syscall_loadsystemlibrary syscall.loadsystemlibrary
94 //go:nosplit
126 //go:linkname syscall_loadlibrary syscall.loadlibrary
127 //go:nosplit
141 //go:linkname syscall_getprocaddress syscall.getprocaddress
142 //go:nosplit
156 //go:linkname syscall_Syscall syscall.Syscall
157 //go:nospli
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/
alldocs.go 1 // Copyright 2011 The Go Authors. All rights reserved.
8 // Go is a tool for managing Go source code.
12 // go command [arguments]
19 // env print Go environment information
21 // fix run go tool fix on packages
23 // generate generate Go files by processing source
27 // run compile and run Go program
29 // tool run specified go tool
30 // version print Go versio
    [all...]
go_test.go 1 // Copyright 2015 The Go Authors. All rights reserved.
10 "go/build"
11 "go/format"
28 canRun = true // whether we can run go or ./testgo
56 // On the builders, skip the cmd/go
77 // The TestMain function creates a go command for testing purposes and
85 out, err := exec.Command("go", args...).CombinedOutput()
97 fmt.Fprintf(os.Stderr, "can't parse go env CGO_ENABLED output: %v\n", strings.TrimSpace(string(out)))
117 os.Setenv("HOME", "/test-go-home-does-not-exist")
224 // setenv sets an environment variable to use when running the test go
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
alldocs.go 1 // Copyright 2011 The Go Authors. All rights reserved.
8 // Go is a tool for managing Go source code.
12 // go command [arguments]
19 // env print Go environment information
21 // fix run go tool fix on packages
23 // generate generate Go files by processing source
27 // run compile and run Go program
29 // tool run specified go tool
30 // version print Go versio
    [all...]
go_test.go 1 // Copyright 2015 The Go Authors. All rights reserved.
10 "go/build"
11 "go/format"
28 canRun = true // whether we can run go or ./testgo
56 // On the builders, skip the cmd/go
77 // The TestMain function creates a go command for testing purposes and
85 out, err := exec.Command("go", args...).CombinedOutput()
97 fmt.Fprintf(os.Stderr, "can't parse go env CGO_ENABLED output: %v\n", strings.TrimSpace(string(out)))
117 os.Setenv("HOME", "/test-go-home-does-not-exist")
224 // setenv sets an environment variable to use when running the test go
    [all...]
  /prebuilts/go/darwin-x86/test/stress/
parsego.go 1 // Copyright 2013 The Go Authors. All rights reserved.
8 "go/ast"
9 "go/parser"
10 "go/token"
20 path.Ext(dir.Name()) == ".go"
25 !strings.HasSuffix(dir.Name(), "_test.go") // ignore test files
42 // filter function to select the desired .go files
61 panic("go ParseDir fail: " + err.Error())
72 Println("parsed go package", pkg)
139 "go",
    [all...]
  /prebuilts/go/linux-x86/test/stress/
parsego.go 1 // Copyright 2013 The Go Authors. All rights reserved.
8 "go/ast"
9 "go/parser"
10 "go/token"
20 path.Ext(dir.Name()) == ".go"
25 !strings.HasSuffix(dir.Name(), "_test.go") // ignore test files
42 // filter function to select the desired .go files
61 panic("go ParseDir fail: " + err.Error())
72 Println("parsed go package", pkg)
139 "go",
    [all...]
  /external/ppp/pppd/
ipv6cp.c 529 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
537 *go = *wo;
538 eui64_zero(go->hisid); /* last proposed interface identifier */
549 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
554 return (LENCIIFACEID(go->neg_ifaceid) +
555 LENCIVJ(go->neg_vj));
568 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
595 ADDCIIFACEID(CI_IFACEID, go->neg_ifaceid, go->ourid);
597 ADDCIVJ(CI_COMPRESSTYPE, go->neg_vj, go->vj_protocol)
616 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
688 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
825 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
904 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
1174 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
    [all...]
  /external/mksh/src/
misc.c 61 /*XXX this should go away */
380 Getopt go; local
402 ksh_getopt_reset(&go, GF_ERROR|GF_PLUSOPT);
403 while ((optc = ksh_getopt(argv, &go, opts)) != -1) {
404 set = tobool(!(go.info & GI_PLUS));
410 array = go.optarg;
416 if (go.optarg == NULL) {
427 i = option(go.optarg);
450 bi_errorf(Tf_sD_s, go.optarg,
464 chvt(&go);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
zero.go 2 // autogenerated from gen/zeroGen.go - do not edit!
13 //go:noinline
33 //go:noinline
53 //go:noinline
73 //go:noinline
93 //go:noinline
113 //go:noinline
133 //go:noinline
153 //go:noinline
173 //go:noinlin
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
zero.go 2 // autogenerated from gen/zeroGen.go - do not edit!
13 //go:noinline
33 //go:noinline
53 //go:noinline
73 //go:noinline
93 //go:noinline
113 //go:noinline
133 //go:noinline
153 //go:noinline
173 //go:noinlin
    [all...]
  /build/kati/testcase/
find_command_sorted.mk 2 # go: implement generic builtin find
multi_implicit_output_patterns.mk 1 # TODO(go): Fix
shell_var_with_args.mk 1 # TODO(go): Fix
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationThreadTest.java 161 private boolean go; field in class:CollationThreadTest.Control
165 go = true;
170 go = false;
174 boolean go() { method in class:CollationThreadTest.Control
175 return go;
202 while (!control.go()) {
207 while (control.go()) {
233 } while (control.go() && System.currentTimeMillis() < stopTime);

Completed in 1914 milliseconds

<<21222324252627282930>>