Searched defs:csn (Results 1 - 4 of 4) sorted by relevance

/dalvik/libcore/luni/src/main/java/java/io/
H A DPrintStream.java154 * character set named {@code csn} is used for character encoding.
159 * @param csn
164 * if {@code csn} is {@code null}.
169 * if the encoding specified by {@code csn} is not supported.
171 public PrintStream(File file, String csn) throws FileNotFoundException, argument
174 if (csn == null) {
177 if (!Charset.isSupported(csn)) {
180 encoding = csn;
203 * {@code fileName} as its target. The character set named {@code csn} is
209 * @param csn
221 PrintStream(String fileName, String csn) argument
[all...]
H A DPrintWriter.java147 * character set named {@code csn} is used for character encoding.
154 * @param csn
159 * if {@code csn} is {@code null}.
164 * if the encoding specified by {@code csn} is not supported.
166 public PrintWriter(File file, String csn) throws FileNotFoundException, argument
171 new FileOutputStream(file), 8192), csn),
203 * fileName} as its target. The character set named {@code csn} is used for
211 * @param csn
216 * if {@code csn} is {@code null}.
221 * if the encoding specified by {@code csn} i
223 PrintWriter(String fileName, String csn) argument
[all...]
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DPrintStreamTest.java56 public MockPrintStream(String fileName, String csn) throws FileNotFoundException, UnsupportedEncodingException { argument
57 super(fileName, csn);
/dalvik/libcore/luni/src/main/java/java/util/
H A DFormatter.java651 * @param csn
663 public Formatter(String fileName, String csn) throws FileNotFoundException, argument
665 this(new File(fileName), csn);
677 * @param csn
692 public Formatter(String fileName, String csn, Locale l) argument
695 this(new File(fileName), csn, l);
733 * @param csn
745 public Formatter(File file, String csn) throws FileNotFoundException, argument
747 this(file, csn, Locale.getDefault());
759 * @param csn
774 Formatter(File file, String csn, Locale l) argument
826 Formatter(OutputStream os, String csn) argument
846 Formatter(OutputStream os, String csn, Locale l) argument
[all...]

Completed in 152 milliseconds