Lines Matching refs:output
238 output := fmt.Sprint(v...)
239 s.Output(2, output)
245 output := fmt.Sprintf(format, v...)
246 s.Output(2, output)
252 output := fmt.Sprintln(v...)
253 s.Output(2, output)
259 output := fmt.Sprint(v...)
260 s.VerboseOutput(2, output)
266 output := fmt.Sprintf(format, v...)
267 s.VerboseOutput(2, output)
273 output := fmt.Sprintln(v...)
274 s.VerboseOutput(2, output)
280 output := fmt.Sprint(v...)
281 s.Output(2, output)
282 panic(fatalLog{errors.New(output)})
288 output := fmt.Sprintf(format, v...)
289 s.Output(2, output)
290 panic(fatalLog{errors.New(output)})
296 output := fmt.Sprintln(v...)
297 s.Output(2, output)
298 panic(fatalLog{errors.New(output)})
303 output := fmt.Sprint(v...)
304 s.Output(2, output)
305 panic(output)
310 output := fmt.Sprintf(format, v...)
311 s.Output(2, output)
312 panic(output)
317 output := fmt.Sprintln(v...)
318 s.Output(2, output)
319 panic(output)