HomeSort by relevance Sort by last modified time
    Searched refs:Do (Results 1 - 25 of 842) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/issue10066.dir/
b.go 6 a.Do()
a.go 5 func Do() {
  /prebuilts/go/linux-x86/test/fixedbugs/issue10066.dir/
b.go 6 a.Do()
a.go 5 func Do() {
  /build/make/core/
host_test_internal.mk 16 $(error $(LOCAL_PATH): Do not set LOCAL_MODULE_PATH when building test $(LOCAL_MODULE))
20 $(error $(LOCAL_PATH): Do not set LOCAL_MODULE_PATH_32 when building test $(LOCAL_MODULE))
24 $(error $(LOCAL_PATH): Do not set LOCAL_MODULE_PATH_64 when building test $(LOCAL_MODULE))
target_test_internal.mk 21 $(error $(LOCAL_PATH): Do not set LOCAL_MODULE_PATH when building test $(LOCAL_MODULE))
25 $(error $(LOCAL_PATH): Do not set LOCAL_MODULE_PATH_32 when building test $(LOCAL_MODULE))
29 $(error $(LOCAL_PATH): Do not set LOCAL_MODULE_PATH_64 when building test $(LOCAL_MODULE))
  /prebuilts/go/darwin-x86/test/fixedbugs/issue10700.dir/
test.go 12 Do()
19 func (me *HasAMethod) Do() {
24 x.Do() // ERROR "x\.Do undefined \(type \*Imported is pointer to interface, not interface\)"
25 x.do() // ERROR "x\.do undefined \(type \*Imported is pointer to interface, not interface\)"
26 (*x).Do()
30 y.Do()
31 y.do() // ERROR "y\.do undefined \(type \*HasAMethod has no field or method do, but does have Do\)
    [all...]
other.go 8 Do()
  /prebuilts/go/linux-x86/test/fixedbugs/issue10700.dir/
test.go 12 Do()
19 func (me *HasAMethod) Do() {
24 x.Do() // ERROR "x\.Do undefined \(type \*Imported is pointer to interface, not interface\)"
25 x.do() // ERROR "x\.do undefined \(type \*Imported is pointer to interface, not interface\)"
26 (*x).Do()
30 y.Do()
31 y.do() // ERROR "y\.do undefined \(type \*HasAMethod has no field or method do, but does have Do\)
    [all...]
other.go 8 Do()
  /prebuilts/go/darwin-x86/src/sync/
once.go 17 // Do calls the function f if and only if Do is being called for the
20 // if once.Do(f) is called multiple times, only the first call will invoke f,
24 // Do is intended for initialization that must be run exactly once. Since f
26 // arguments to a function to be invoked by Do:
27 // config.once.Do(func() { config.init(filename) })
29 // Because no call to Do returns until the one call to f returns, if f causes
30 // Do to be called, it will deadlock.
32 // If f panics, Do considers it to have returned; future calls of Do retur
    [all...]
once_test.go 19 once.Do(func() { o.Increment() })
47 t.Fatalf("Once.Do did not panic")
50 once.Do(func() {
55 once.Do(func() {
56 t.Fatalf("Once.Do called twice")
65 once.Do(f)
  /prebuilts/go/linux-x86/src/sync/
once.go 17 // Do calls the function f if and only if Do is being called for the
20 // if once.Do(f) is called multiple times, only the first call will invoke f,
24 // Do is intended for initialization that must be run exactly once. Since f
26 // arguments to a function to be invoked by Do:
27 // config.once.Do(func() { config.init(filename) })
29 // Because no call to Do returns until the one call to f returns, if f causes
30 // Do to be called, it will deadlock.
32 // If f panics, Do considers it to have returned; future calls of Do retur
    [all...]
once_test.go 19 once.Do(func() { o.Increment() })
47 t.Fatalf("Once.Do did not panic")
50 once.Do(func() {
55 once.Do(func() {
56 t.Fatalf("Once.Do called twice")
65 once.Do(f)
  /prebuilts/go/darwin-x86/src/internal/singleflight/
singleflight_test.go 18 v, err, _ := g.Do("key", func() (interface{}, error) {
22 t.Errorf("Do = %v; want %v", got, want)
25 t.Errorf("Do error = %v", err)
32 v, err, _ := g.Do("key", func() (interface{}, error) {
36 t.Errorf("Do error = %v; want someErr %v", err, someErr)
56 time.Sleep(10 * time.Millisecond) // let more goroutines enter Do
69 v, err, _ := g.Do("key", fn)
71 t.Errorf("Do error: %v", err)
75 t.Errorf("Do = %T %v; want %q", v, v, "bar")
81 // least reached the line before the Do
    [all...]
  /prebuilts/go/linux-x86/src/internal/singleflight/
singleflight_test.go 18 v, err, _ := g.Do("key", func() (interface{}, error) {
22 t.Errorf("Do = %v; want %v", got, want)
25 t.Errorf("Do error = %v", err)
32 v, err, _ := g.Do("key", func() (interface{}, error) {
36 t.Errorf("Do error = %v; want someErr %v", err, someErr)
56 time.Sleep(10 * time.Millisecond) // let more goroutines enter Do
69 v, err, _ := g.Do("key", fn)
71 t.Errorf("Do error: %v", err)
75 t.Errorf("Do = %T %v; want %q", v, v, "bar")
81 // least reached the line before the Do
    [all...]
  /external/curl/docs/cmdline-opts/
proxy-insecure.d 2 Help: Do HTTPS proxy connections without verifying the proxy
raw.d 2 Help: Do HTTP "raw"; no transfer decoding
  /prebuilts/go/darwin-x86/src/time/
export_windows_test.go 9 localOnce.Do(func() { initLocalFromTZI(&aus) })
14 localOnce.Do(func() { initLocalFromTZI(&usPacific) })
  /prebuilts/go/linux-x86/src/time/
export_windows_test.go 9 localOnce.Do(func() { initLocalFromTZI(&aus) })
14 localOnce.Do(func() { initLocalFromTZI(&usPacific) })
  /prebuilts/go/darwin-x86/test/fixedbugs/bug448.dir/
pkg1.go 9 func Do() int {
  /prebuilts/go/linux-x86/test/fixedbugs/bug448.dir/
pkg1.go 9 func Do() int {
  /test/vts-testcase/fuzz/config/audio/V2_0/iface_fuzzer/
Android.mk 2 # Do not edit manually.
  /test/vts-testcase/fuzz/config/audio/common/V2_0/iface_fuzzer/
Android.mk 2 # Do not edit manually.
  /test/vts-testcase/fuzz/config/audio/effect/V2_0/iface_fuzzer/
Android.mk 2 # Do not edit manually.

Completed in 786 milliseconds

1 2 3 4 5 6 7 8 91011>>