Lines Matching refs:out

27 	out []string
31 out: []string{"a"},
35 out: []string{"a", "b"},
39 out: []string{"a"},
43 out: []string{"a", "b"},
47 out: []string{"b", "a"},
51 out: []string{"a", "b"},
55 out: []string{"a", "b"},
59 out: []string{"liblog", "libdl", "libc++", "libc", "libm"},
66 out := imp(in)
67 if !reflect.DeepEqual(out, want) {
71 t.Errorf(" got: %#v", out)
77 f(t, firstUniqueStringsList, testCase.in, testCase.out)
80 f(t, firstUniqueStringsMap, testCase.in, testCase.out)
87 out []string
91 out: []string{"a"},
95 out: []string{"a", "b"},
99 out: []string{"a"},
103 out: []string{"b", "a"},
107 out: []string{"b", "a"},
111 out: []string{"a", "b"},
115 out: []string{"a", "b"},
119 out: []string{"liblog", "libc++", "libdl", "libc", "libm"},
125 out := LastUniqueStrings(testCase.in)
126 if !reflect.DeepEqual(out, testCase.out) {
129 t.Errorf(" expected: %#v", testCase.out)
130 t.Errorf(" got: %#v", out)
162 out := JoinWithPrefix(testCase.input, prefix)
163 if out != testCase.expected {
168 t.Errorf(" got: %#v", out)
201 out := IndexList(testCase.key, input)
202 if out != testCase.expected {
207 t.Errorf(" got: %#v", out)
232 out := InList(testCase.key, input)
233 if out != testCase.expected {
238 t.Errorf(" got: %#v", out)
267 out := HasAnyPrefix(testCase.str, prefixes)
268 if out != testCase.expected {
273 t.Errorf(" got: %#v", out)
315 out := RemoveListFromList(input, filter)
316 if !reflect.DeepEqual(out, expected) {
321 t.Errorf(" got: %#v", out)
365 found, out := RemoveFromList(testCase.key, testCase.input)
373 if !reflect.DeepEqual(out, testCase.expectedOut) {
378 t.Errorf(" got: %#v", out)