Lines Matching defs:format
43 * <tt>format</tt> methods is invoked, rather than whenever a newline character
108 * <tt>printf</tt>, or <tt>format</tt> methods will
142 * <tt>printf</tt>, or <tt>format</tt> methods will
352 * either on the underlying output stream or during a format
763 * the specified format string and arguments. If automatic flushing is
766 * <p> An invocation of this method of the form <tt>out.printf(format,
770 * out.format(format, args) </pre>
772 * @param format
773 * A format string as described in <a
777 * Arguments referenced by the format specifiers in the format
778 * string. If there are more arguments than format specifiers, the
788 * If a format string contains an illegal syntax, a format
790 * insufficient arguments given the format string, or other
797 * If the <tt>format</tt> is <tt>null</tt>
803 public PrintWriter printf(String format, Object ... args) {
804 return format(format, args);
809 * the specified format string and arguments. If automatic flushing is
812 * <p> An invocation of this method of the form <tt>out.printf(l, format,
816 * out.format(l, format, args) </pre>
823 * @param format
824 * A format string as described in <a
828 * Arguments referenced by the format specifiers in the format
829 * string. If there are more arguments than format specifiers, the
839 * If a format string contains an illegal syntax, a format
841 * insufficient arguments given the format string, or other
848 * If the <tt>format</tt> is <tt>null</tt>
854 public PrintWriter printf(Locale l, String format, Object ... args) {
855 return format(l, format, args);
859 * Writes a formatted string to this writer using the specified format
867 * @param format
868 * A format string as described in <a
872 * Arguments referenced by the format specifiers in the format
873 * string. If there are more arguments than format specifiers, the
883 * If a format string contains an illegal syntax, a format
885 * insufficient arguments given the format string, or other
892 * If the <tt>format</tt> is <tt>null</tt>
898 public PrintWriter format(String format, Object ... args) {
905 formatter.format(Locale.getDefault(), format, args);
918 * Writes a formatted string to this writer using the specified format
927 * @param format
928 * A format string as described in <a
932 * Arguments referenced by the format specifiers in the format
933 * string. If there are more arguments than format specifiers, the
943 * If a format string contains an illegal syntax, a format
945 * insufficient arguments given the format string, or other
952 * If the <tt>format</tt> is <tt>null</tt>
958 public PrintWriter format(Locale l, String format, Object ... args) {
964 formatter.format(l, format, args);