Home
last modified time | relevance | path

Searched refs:printStream (Results 1 – 2 of 2) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DPrintStreamTest.java565 PrintStream printStream = new PrintStream(out); in test_appendChar() local
566 printStream.append(testChar); in test_appendChar()
567 printStream.flush(); in test_appendChar()
569 printStream.close(); in test_appendChar()
578 PrintStream printStream = new PrintStream(out); in test_appendCharSequence() local
579 printStream.append(testString); in test_appendCharSequence()
580 printStream.flush(); in test_appendCharSequence()
582 printStream.close(); in test_appendCharSequence()
591 PrintStream printStream = new PrintStream(out); in test_appendCharSequenceIntInt() local
592 printStream.append(testString, 1, 3); in test_appendCharSequenceIntInt()
[all …]
/libcore/ojluni/src/main/java/java/lang/
DThrowable.java729 private final PrintStream printStream; field in Throwable.WrappedPrintStream
731 WrappedPrintStream(PrintStream printStream) { in WrappedPrintStream() argument
732 this.printStream = printStream; in WrappedPrintStream()
736 return printStream; in lock()
740 printStream.println(o); in println()