Home
last modified time | relevance | path

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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
DInflaterTest.java298 Deflater defEmpty = new Deflater(3); in test_inflate$B() local
299 defEmpty.setInput(emptyArray); in test_inflate$B()
300 while (!(defEmpty.needsInput())) { in test_inflate$B()
301 x += defEmpty.deflate(outPutBuf, x, outPutBuf.length - x); in test_inflate$B()
303 defEmpty.finish(); in test_inflate$B()
304 while (!(defEmpty.finished())) { in test_inflate$B()
305 x += defEmpty.deflate(outPutBuf, x, outPutBuf.length - x); in test_inflate$B()
309 x, defEmpty.getTotalOut()); in test_inflate$B()
312 emptyArray.length, defEmpty.getTotalIn()); in test_inflate$B()
313 defEmpty.end(); in test_inflate$B()