Home
last modified time | relevance | path

Searched refs:toCharset (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
DPrintStream.java98 private static Charset toCharset(String csn) in toCharset() method in PrintStream
182 this(requireNonNull(out, "Null output stream"), autoFlush, toCharset(encoding)); in PrintStream()
276 this(false, toCharset(csn), new FileOutputStream(fileName)); in PrintStream()
377 this(false, toCharset(csn), new FileOutputStream(file)); in PrintStream()
DPrintWriter.java81 private static Charset toCharset(String csn) in toCharset() method in PrintWriter
248 this(toCharset(csn), new File(fileName)); in PrintWriter()
349 this(toCharset(csn), file); in PrintWriter()
/libcore/ojluni/src/main/java/java/util/
DScanner.java587 this(source, toCharset(charsetName)); in Scanner()
610 private static Charset toCharset(String csn) { in toCharset() method in Scanner
748 this(Objects.requireNonNull(source), toCharset(charsetName)); in Scanner()
DFormatter.java1955 private static Charset toCharset(String csn) in toCharset() method in Formatter
2159 this(toCharset(csn), l, new File(fileName)); in Formatter()
2303 this(toCharset(csn), l, file); in Formatter()