Home
last modified time | relevance | path

Searched refs:Once2StringSlice (Results 1 – 2 of 2) sorted by relevance

/build/soong/android/
Donceper_test.go119 …a, b := once.Once2StringSlice(key, func() ([]string, []string) { return []string{"a"}, []string{"b…
120 …c, d := once.Once2StringSlice(key, func() ([]string, []string) { return []string{"c"}, []string{"d…
123 t.Errorf(`first call to Once2StringSlice should return ["a"], ["b"]: %q, %q`, a, b)
127 …t.Errorf(`second call to Once2StringSlice with the same key should return ["a"], ["b"]: %q, %q`, c…
Donceper.go88 func (once *OncePer) Once2StringSlice(key OnceKey, value func() ([]string, []string)) ([]string, []… func