Searched refs:newWriterSupplier (Results 1 - 3 of 3) sorted by relevance

/external/guava/guava/src/com/google/common/io/
H A DFiles.java163 public static OutputSupplier<OutputStreamWriter> newWriterSupplier(File file, method in class:Files
165 return newWriterSupplier(file, charset, false);
178 public static OutputSupplier<OutputStreamWriter> newWriterSupplier(File file, method in class:Files
180 return CharStreams.newWriterSupplier(newOutputStreamSupplier(file, append),
300 CharStreams.copy(from, newWriterSupplier(to, charset));
343 CharStreams.write(from, newWriterSupplier(to, charset, append));
H A DCharStreams.java104 public static OutputSupplier<OutputStreamWriter> newWriterSupplier( method in class:CharStreams
/external/guava/guava-tests/test/com/google/common/io/
H A DCharStreamsTest.java53 = CharStreams.newWriterSupplier(ByteStreamsTest.BROKEN_WRITE, UTF_8);
59 = CharStreams.newWriterSupplier(ByteStreamsTest.BROKEN_CLOSE_OUTPUT, UTF_8);
65 = CharStreams.newWriterSupplier(ByteStreamsTest.BROKEN_GET_OUTPUT, UTF_8);

Completed in 104 milliseconds