Lines Matching refs:print

37  * namely the ability to print representations of various data values
126 * Creates a new print stream. This stream will not flush automatically.
138 * Creates a new print stream.
154 * Creates a new print stream.
180 * Creates a new print stream, without automatic line flushing, with the
188 * The name of the file to use as the destination of this print
211 * Creates a new print stream, without automatic line flushing, with the
218 * The name of the file to use as the destination of this print
251 * Creates a new print stream, without automatic line flushing, with the
259 * The file to use as the destination of this print stream. If the
282 * Creates a new print stream, without automatic line flushing, with the
289 * The file to use as the destination of this print stream. If the
450 * encoding, use the <code>print(char)</code> or <code>println(char)</code>
454 * @see #print(char)
481 * encoding, use the <code>print(char)</code> or <code>println(char)</code>
588 public void print(boolean b) {
600 public void print(char c) {
614 public void print(int i) {
628 public void print(long l) {
642 public void print(float f) {
656 public void print(double d) {
670 public void print(char s[]) {
683 public void print(String s) {
700 public void print(Object obj) {
719 * though it invokes <code>{@link #print(boolean)}</code> and then
726 print(x);
733 * though it invokes <code>{@link #print(char)}</code> and then
740 print(x);
747 * though it invokes <code>{@link #print(int)}</code> and then
754 print(x);
761 * though it invokes <code>{@link #print(long)}</code> and then
768 print(x);
775 * though it invokes <code>{@link #print(float)}</code> and then
782 print(x);
789 * though it invokes <code>{@link #print(double)}</code> and then
796 print(x);
803 * behaves as though it invokes <code>{@link #print(char[])}</code> and
806 * @param x an array of chars to print.
810 print(x);
817 * though it invokes <code>{@link #print(String)}</code> and then
824 print(x);
833 * though it invokes <code>{@link #print(String)}</code> and then
841 print(s);
1062 * out.print(csq.toString()) </pre>
1081 print("null");
1083 print(csq.toString());
1096 * out.print(csq.subSequence(start, end).toString()) </pre>
1133 * out.print(c) </pre>
1143 print(c);