Searched defs:newWriterSupplier (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/io/
H A DCharStreams.java104 public static OutputSupplier<OutputStreamWriter> newWriterSupplier( method in class:CharStreams
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));

Completed in 78 milliseconds