Lines Matching refs:input
126 input []string
131 input: []string{},
136 input: []string{"a"},
141 input: []string{"a", "b"},
150 out := JoinWithPrefix(testCase.input, prefix)
153 t.Errorf(" input: %#v", testCase.input)
163 input := []string{"a", "b", "c"}
189 out := IndexList(testCase.key, input)
193 t.Errorf(" input: %#v", input)
202 input := []string{"a"}
220 out := InList(testCase.key, input)
224 t.Errorf(" input: %#v", input)
268 input := []string{"a", "b", "c", "c", "b", "d", "a"}
270 remainder, filtered := FilterList(input, filter)
275 t.Errorf(" input: %#v", input)
284 t.Errorf(" input: %#v", input)
292 input := []string{"a", "b", "c", "d", "a", "c", "d"}
295 out := RemoveListFromList(input, filter)
298 t.Errorf(" input: %#v", input)
309 input []string
316 input: []string{"a", "b", "c"},
323 input: []string{"a", "b", "a", "c", "a"},
330 input: []string{"a", "b", "a", "c", "a"},
337 input: []string{"a", "a", "a", "a"},
345 found, out := RemoveFromList(testCase.key, testCase.input)
349 t.Errorf(" input: %#v", testCase.input)
356 t.Errorf(" input: %#v", testCase.input)