Lines Matching refs:args

153    * @param args the list of arguments passed to the formatter. If there are more arguments than
156 public static void v(String tag, String format, Object... args) {
158 VvmLog.v(tag, String.format(format, args));
169 * @param args the list of arguments passed to the formatter. If there are more arguments than
172 public static void v(String tag, Throwable tr, String format, Object... args) {
174 VvmLog.v(tag, String.format(format, args), tr);
184 * @param args the list of arguments passed to the formatter. If there are more arguments than
187 public static void d(String tag, String format, Object... args) {
189 VvmLog.d(tag, String.format(format, args));
200 * @param args the list of arguments passed to the formatter. If there are more arguments than
203 public static void d(String tag, Throwable tr, String format, Object... args) {
205 VvmLog.d(tag, String.format(format, args), tr);
215 * @param args the list of arguments passed to the formatter. If there are more arguments than
218 public static void i(String tag, String format, Object... args) {
220 VvmLog.i(tag, String.format(format, args));
231 * @param args the list of arguments passed to the formatter. If there are more arguments than
234 public static void i(String tag, Throwable tr, String format, Object... args) {
236 VvmLog.i(tag, String.format(format, args), tr);
246 * @param args the list of arguments passed to the formatter. If there are more arguments than
249 public static void w(String tag, String format, Object... args) {
251 VvmLog.w(tag, String.format(format, args));
262 * @param args the list of arguments passed to the formatter. If there are more arguments than
265 public static void w(String tag, Throwable tr, String format, Object... args) {
267 VvmLog.w(tag, String.format(format, args), tr);
277 * @param args the list of arguments passed to the formatter. If there are more arguments than
280 public static void e(String tag, String format, Object... args) {
282 VvmLog.e(tag, String.format(format, args));
293 * @param args the list of arguments passed to the formatter. If there are more arguments than
296 public static void e(String tag, Throwable tr, String format, Object... args) {
298 VvmLog.e(tag, String.format(format, args), tr);
311 * @param args the list of arguments passed to the formatter. If there are more arguments than
314 public static void wtf(String tag, String format, Object... args) {
315 VvmLog.wtf(tag, String.format(format, args), new Error());
328 * @param args the list of arguments passed to the formatter. If there are more arguments than
331 public static void wtf(String tag, Throwable tr, String format, Object... args) {
332 VvmLog.wtf(tag, String.format(format, args), tr);