Home | History | Annotate | Download | only in os

Lines Matching defs:is

11  * distributed under the License is distributed on an "AS IS" BASIS,
88 InputStream is = file.getInputStream();
89 is.mark(testString.length);
90 is.read(buffer);
95 is.reset();
96 is.read(buffer);
128 InputStream is = file.getInputStream();
131 is.read(buffer, offset, count);
134 // this is what should happen
136 is.close();
173 InputStream is = file.getInputStream();
177 assertEquals(testString.length, is.read(buffer));
180 assertEquals(-1, is.read());
182 is.close();
189 // Tests that close() is idempotent
210 // this is what should happen
225 // this is what should happen
241 // this is what should happen