Lines Matching defs:format

180      * @param format the format string (see {@link java.util.Formatter#format})
183 * more arguments than required by {@code format},
186 public static int v(String tag, String format, Object... args) {
188 return Log.v(tag, String.format(format, args));
198 * @param format the format string (see {@link java.util.Formatter#format})
201 * more arguments than required by {@code format},
204 public static int v(String tag, Throwable tr, String format, Object... args) {
206 return Log.v(tag, String.format(format, args), tr);
215 * @param format the format string (see {@link java.util.Formatter#format})
218 * more arguments than required by {@code format},
221 public static int d(String tag, String format, Object... args) {
223 return Log.d(tag, String.format(format, args));
233 * @param format the format string (see {@link java.util.Formatter#format})
236 * more arguments than required by {@code format},
239 public static int d(String tag, Throwable tr, String format, Object... args) {
241 return Log.d(tag, String.format(format, args), tr);
250 * @param format the format string (see {@link java.util.Formatter#format})
253 * more arguments than required by {@code format},
256 public static int i(String tag, String format, Object... args) {
258 return Log.i(tag, String.format(format, args));
268 * @param format the format string (see {@link java.util.Formatter#format})
271 * more arguments than required by {@code format},
274 public static int i(String tag, Throwable tr, String format, Object... args) {
276 return Log.i(tag, String.format(format, args), tr);
285 * @param format the format string (see {@link java.util.Formatter#format})
288 * more arguments than required by {@code format},
291 public static int w(String tag, String format, Object... args) {
293 return Log.w(tag, String.format(format, args));
303 * @param format the format string (see {@link java.util.Formatter#format})
306 * more arguments than required by {@code format},
309 public static int w(String tag, Throwable tr, String format, Object... args) {
311 return Log.w(tag, String.format(format, args), tr);
320 * @param format the format string (see {@link java.util.Formatter#format})
323 * more arguments than required by {@code format},
326 public static int e(String tag, String format, Object... args) {
328 return Log.e(tag, String.format(format, args));
338 * @param format the format string (see {@link java.util.Formatter#format})
341 * more arguments than required by {@code format},
344 public static int e(String tag, Throwable tr, String format, Object... args) {
346 return Log.e(tag, String.format(format, args), tr);
359 * @param format the format string (see {@link java.util.Formatter#format})
362 * more arguments than required by {@code format},
365 public static int wtf(String tag, String format, Object... args) {
366 return Log.wtf(tag, String.format(format, args), new Error());
378 * @param format the format string (see {@link java.util.Formatter#format})
381 * more arguments than required by {@code format},
384 public static int wtf(String tag, Throwable tr, String format, Object... args) {
385 return Log.wtf(tag, String.format(format, args), tr);
395 * We got a report saying eBay sends a date in this format