Home
last modified time | relevance | path

Searched refs:Scanner (Results 1 – 6 of 6) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DScannerTest.java59 import java.util.Scanner;
66 private Scanner s;
95 s = new Scanner(tmpFile); in test_ConstructorLjava_io_File()
101 s = new Scanner(tmpFile); in test_ConstructorLjava_io_File()
111 s = new Scanner(tmpFile); in test_ConstructorLjava_io_File()
117 s = new Scanner((File) null); in test_ConstructorLjava_io_File()
135 try (Scanner s = new Scanner(tmpFilePath)){ in test_ConstructorLjava_nio_file_Path()
146 try (Scanner s = new Scanner(nonExistentFilePath)) { in test_ConstructorLjava_nio_file_Path_Exception()
151 try (Scanner s = new Scanner((Path) null)) { in test_ConstructorLjava_nio_file_Path_Exception()
163 s = new Scanner(tmpFile, Charset.defaultCharset().name()); in test_ConstructorLjava_io_FileLjava_lang_String()
[all …]
DScannerParseLargeFileBenchmarkTest.java20 import java.util.Scanner;
33 Scanner scanner = new Scanner(reader).useDelimiter(delimiter); in testParseLargeFile()
DControlTest.java39 import java.util.Scanner;
422 Scanner scanner = new Scanner(file); in changeProperties()
DPropertiesTest.java41 import java.util.Scanner;
713 Scanner scanner = new Scanner(out.toString()); in test_storeLjava_io_WriterLjava_lang_String()
/libcore/ojluni/src/main/java/java/util/
DScanner.java305 public final class Scanner implements Iterator<String>, Closeable { class
539 private Scanner(Readable source, Pattern pattern) { in Scanner() method in Scanner
559 public Scanner(Readable source) { in Scanner() method in Scanner
571 public Scanner(InputStream source) { in Scanner() method in Scanner
586 public Scanner(InputStream source, String charsetName) { in Scanner() method in Scanner
619 public Scanner(File source) throws FileNotFoundException { in Scanner() method in Scanner
635 public Scanner(File source, String charsetName) in Scanner() method in Scanner
641 private Scanner(File source, CharsetDecoder dec) in Scanner() method in Scanner
678 public Scanner(Path source) in Scanner() method in Scanner
700 public Scanner(Path source, String charsetName) throws IOException { in Scanner() method in Scanner
[all …]
/libcore/
Dopenjdk_java_files.bp1167 "ojluni/src/main/java/java/util/Scanner.java",