Searched refs:readLine (Results 1 - 25 of 383) sorted by relevance

1234567891011>>

/openjdk10/nashorn/samples/
H A DreadLine.js34 // readLine prints prompt and reads user response
35 var name = readLine("Your name please: ");
H A Djavabind.js40 // arguments "this" and prompt string of Console.readLine method are bound
41 var readName = bind.call(console.readLine, console, "Your name: ");
H A Dconsoleuse.js53 var str = console.readLine("enter something: ");
H A Dsecondssince.js41 var sec = Instant.parse(readLine()).
H A Djavaimporter.js53 while ((line = reader.readLine()) != null)
H A Dtry_with_resource.js62 while ((s = r.readLine()) != null) {
/openjdk10/nashorn/test/script/nosecurity/
H A Dreadprint.js31 var l = readLine()
/openjdk10/jdk/test/java/io/BufferedReader/
H A DReadLine.java27 * following the carriage return correctly after a readLine
52 if (!reader.readLine().equals(strings[i][1]))
70 // Need to ensure behavior of read() after a readLine() read of a CR/LF
77 reader.readLine();
82 // Need to ensure that a read(char[], int, int) following a readLine()
88 reader.readLine();
101 System.out.println("> " + reader.readLine());
104 String str = reader.readLine();
107 String newStr = reader.readLine();
H A DBigMark.java45 line = br.readLine();
52 line = br.readLine();
H A DEOL.java37 String l = br.readLine();
/openjdk10/jdk/test/java/io/InputStreamReader/
H A DGrowAfterEOF.java44 while (r.readLine() != null);
52 while (r.readLine() != null) {
/openjdk10/jdk/test/com/sun/tools/attach/
H A DApplication.java40 while (!br.readLine().equals(SHUTDOWN_MSG));
/openjdk10/jdk/test/java/io/DataInputStream/
H A DReadLinePushback.java26 @summary Make sure readLine would not push back -1.
38 String line = dis.readLine();
/openjdk10/jdk/test/java/lang/Runtime/exec/
H A DSpace.java38 String echo = reader.readLine();
/openjdk10/jdk/test/javax/script/
H A DTest7.js13 var firstLine = r.readLine();
/openjdk10/jdk/src/java.base/share/classes/java/io/
H A DDataInput.java515 String readLine() throws IOException; method in interface:DataInput
/openjdk10/jdk/test/java/io/LineNumberReader/
H A DReadReadLine.java45 while (r.readLine() != null)
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/internal/jshell/tool/
H A DIOContext.java39 public abstract String readLine(String prompt, String prefix) throws IOException, InputInterruptedException; method in class:IOContext
/openjdk10/jdk/test/com/sun/security/sasl/digest/
H A DClientCallbackHandler.java84 String result = readLine();
110 String result = readLine();
131 private String readLine() throws IOException { method in class:ClientCallbackHandler
133 (new InputStreamReader(System.in)).readLine();
/openjdk10/jdk/test/java/awt/Desktop/DesktopGtkLoadTest/
H A DDesktopGtkLoadTest.java54 while ((line = br.readLine()) != null) {
/openjdk10/jdk/test/com/sun/security/sasl/
H A DClientCallbackHandler.java84 String result = readLine();
110 String result = readLine();
131 private String readLine() throws IOException { method in class:ClientCallbackHandler
133 (new InputStreamReader(System.in)).readLine();
/openjdk10/jdk/test/java/io/RandomAccessFile/
H A DReadLine.java26 @summary check for correct implementation of RandomAccessFile.readLine
45 while ((line=raf.readLine()) != null) {
/openjdk10/jdk/test/java/net/URLClassLoader/
H A DURLParsing.java47 String firstLine = reader.readLine();
/openjdk10/jdk/test/sun/nio/cs/
H A DConvertSingle.java52 sstring = BR.readLine();
/openjdk10/jdk/test/javax/management/ImplementationVersion/
H A DImplVersionReader.java46 String trace = in.readLine();

Completed in 148 milliseconds

1234567891011>>