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

/openjdk7/jdk/test/java/io/BufferedInputStream/
H A DFill.java44 int shortFall; field in class:Fill.Source
47 Source(int shortFall) { argument
48 this.shortFall = shortFall;
56 int n = len - shortFall;
73 * shortFall fewer bytes than requested
75 static void go(int shortFall) throws Exception { argument
77 InputStream r = new BufferedInputStream(new Source(shortFall), 10);
82 System.err.println("Shortfall " + shortFall
/openjdk7/jdk/test/java/io/BufferedReader/
H A DFill.java44 int shortFall; field in class:Fill.Source
47 Source(int shortFall) { argument
48 this.shortFall = shortFall;
52 int n = len - shortFall;
69 * shortFall fewer characters than requested
71 static void go(int shortFall) throws Exception { argument
73 Reader r = new BufferedReader(new Source(shortFall), 10);
78 System.err.println("Shortfall " + shortFall

Completed in 35 milliseconds