Lines Matching refs:out

26 	out []string
30 out: []string{"a"},
34 out: []string{"a", "b"},
38 out: []string{"a"},
42 out: []string{"a", "b"},
46 out: []string{"b", "a"},
50 out: []string{"a", "b"},
54 out: []string{"a", "b"},
58 out: []string{"liblog", "libdl", "libc++", "libc", "libm"},
65 out := imp(in)
66 if !reflect.DeepEqual(out, want) {
70 t.Errorf(" got: %#v", out)
76 f(t, firstUniqueStringsList, testCase.in, testCase.out)
79 f(t, firstUniqueStringsMap, testCase.in, testCase.out)
86 out []string
90 out: []string{"a"},
94 out: []string{"a", "b"},
98 out: []string{"a"},
102 out: []string{"b", "a"},
106 out: []string{"b", "a"},
110 out: []string{"a", "b"},
114 out: []string{"a", "b"},
118 out: []string{"liblog", "libc++", "libdl", "libc", "libm"},
124 out := LastUniqueStrings(testCase.in)
125 if !reflect.DeepEqual(out, testCase.out) {
128 t.Errorf(" expected: %#v", testCase.out)
129 t.Errorf(" got: %#v", out)
161 out := JoinWithPrefix(testCase.input, prefix)
162 if out != testCase.expected {
167 t.Errorf(" got: %#v", out)
200 out := IndexList(testCase.key, input)
201 if out != testCase.expected {
206 t.Errorf(" got: %#v", out)
231 out := InList(testCase.key, input)
232 if out != testCase.expected {
237 t.Errorf(" got: %#v", out)
266 out := HasAnyPrefix(testCase.str, prefixes)
267 if out != testCase.expected {
272 t.Errorf(" got: %#v", out)
306 out := RemoveListFromList(input, filter)
307 if !reflect.DeepEqual(out, expected) {
312 t.Errorf(" got: %#v", out)
356 found, out := RemoveFromList(testCase.key, testCase.input)
364 if !reflect.DeepEqual(out, testCase.expectedOut) {
369 t.Errorf(" got: %#v", out)