Home | History | Annotate | Download | only in vet

Lines Matching refs:Arguments

85 // The last parameter before variadic arguments is assumed to be
103 // fixed arguments.
228 firstArg := idx + 1 // Arguments are immediately after format string.
264 // There should be no leftover arguments.
319 arg += s.firstArg - 1 // We want to zero-index the actual arguments.
358 // at the actual arguments present in the call. The result is nil if there is an error.
460 // okPrintfArg compares the formatState to the arguments actually present,
578 // it may be beyond the list of arguments or in a terminal slice... argument, which
594 return false // We just can't tell; there could be many more arguments.
599 // There are bad indexes in the format or there are fewer arguments than the format needs.
601 arg := argNum - state.firstArg + 1 // People think of arguments as 1-indexed.