Lines Matching refs:input
138 input []string
143 input: []string{},
148 input: []string{"a"},
153 input: []string{"a", "b"},
162 out := JoinWithPrefix(testCase.input, prefix)
165 t.Errorf(" input: %#v", testCase.input)
175 input := []string{"a", "b", "c"}
201 out := IndexList(testCase.key, input)
205 t.Errorf(" input: %#v", input)
214 input := []string{"a"}
232 out := InList(testCase.key, input)
236 t.Errorf(" input: %#v", input)
280 input := []string{"a", "b", "c", "c", "b", "d", "a"}
282 remainder, filtered := FilterList(input, filter)
287 t.Errorf(" input: %#v", input)
296 t.Errorf(" input: %#v", input)
312 input := []string{"a", "b", "c", "d", "a", "c", "d"}
315 out := RemoveListFromList(input, filter)
318 t.Errorf(" input: %#v", input)
329 input []string
336 input: []string{"a", "b", "c"},
343 input: []string{"a", "b", "a", "c", "a"},
350 input: []string{"a", "b", "a", "c", "a"},
357 input: []string{"a", "a", "a", "a"},
365 found, out := RemoveFromList(testCase.key, testCase.input)
369 t.Errorf(" input: %#v", testCase.input)
376 t.Errorf(" input: %#v", testCase.input)