OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Flushable
(Results
1 - 25
of
29
) sorted by null
1
2
/libcore/luni/src/main/java/java/io/
Flushable.java
24
public interface
Flushable
{
OutputStream.java
48
public abstract class OutputStream implements Closeable,
Flushable
{
Writer.java
37
public abstract class Writer implements Appendable, Closeable,
Flushable
{
Console.java
26
public final class Console implements
Flushable
{
/external/guava/guava/src/com/google/common/io/
Flushables.java
21
import java.io.
Flushable
;
27
* Utility methods for working with {@link
Flushable
} objects.
40
* Flush a {@link
Flushable
}, with control over whether an
46
* @param
flushable
the {@code
Flushable
} object to be flushed.
50
* {@link
Flushable
#flush} throws an {@code IOException}.
53
public static void flush(
Flushable
flushable
, boolean swallowIOException)
56
flushable
.flush();
60
"IOException thrown while flushing
Flushable
.", e)
[
all
...]
AppendableWriter.java
20
import java.io.
Flushable
;
26
* is {@link
Flushable
} or {@link Closeable}, flush()es and close()s will also
60
if (target instanceof
Flushable
) {
61
((
Flushable
) target).flush();
/external/guava/guava-tests/test/com/google/common/io/
CloseablesTest.java
28
import java.io.
Flushable
;
35
* IOExceptions on Closeable.close() or
Flushable
.flush() are not
43
private
Flushable
mockFlushable;
117
mockFlushable = createStrictMock(
Flushable
.class);
136
// Set up a
flushable
to expect to be flushed and closed, and optionally to
169
// Flush the
flushable
using the Flushables, passing in the swallowException
172
private void doFlush(
Flushable
flushable
, boolean swallowException,
175
Flushables.flush(
flushable
, swallowException);
184
verify(
flushable
);
[
all
...]
AppendableWriterTest.java
20
import java.io.
Flushable
;
31
/** Helper class for testing behavior with
Flushable
and Closeable targets. */
32
private static class SpyAppendable implements Appendable,
Flushable
, Closeable {
/external/owasp/sanitizer/src/main/org/owasp/html/
HtmlStreamRenderer.java
33
import java.io.
Flushable
;
128
if (output instanceof
Flushable
) {
130
((
Flushable
) output).flush();
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaSourceWriter.java
20
import java.io.
Flushable
;
46
public class JavaSourceWriter implements Closeable,
Flushable
{
/libcore/luni/src/main/java/java/util/
Formatter.java
23
import java.io.
Flushable
;
528
public final class Formatter implements Closeable,
Flushable
{
[
all
...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
FormatterTest.java
24
import java.io.
Flushable
;
99
class MockDestination implements Appendable,
Flushable
{
651
assertTrue(f instanceof
Flushable
);
661
// For destination that does not implement
Flushable
[
all
...]
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/20/
android.jar
/prebuilts/sdk/9/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/7/
android.jar
/prebuilts/sdk/8/
android.jar
/prebuilts/tools/common/api-versions/android-1/
android.jar
/prebuilts/tools/common/api-versions/android-2/
android.jar
/external/chromium_org/third_party/libaddressinput/src/java/
android.jar
/prebuilts/sdk/6/
android.jar
Completed in 649 milliseconds
1
2