Home | History | Annotate | Download | only in zip

Lines Matching defs:needsInput

213         // needsInput should never return true after finish() is called
215 assertFalse("needsInput() should return false after finish() is called", defl
216 .needsInput());
350 * java.util.zip.Deflater#needsInput()
355 "needsInput give the wrong boolean value as a result of no input buffer",
356 defl.needsInput());
360 "needsInput give wrong boolean value as a result of a full input buffer",
361 defl.needsInput());
363 while (!defl.needsInput()) {
369 "needsInput give wrong boolean value as a result of an empty input buffer",
370 defl.needsInput());
376 // needsInput should NOT return true after finish() has been
380 "needsInput gave wrong boolean value as a result of finish() being called",
381 defl.needsInput());
515 while (!defl.needsInput()) {
562 .needsInput());
563 // The second setInput() should be ignored since needsInput() return
600 assertFalse("the array buffer in setInput() is empty", defl.needsInput());
601 // The second setInput() should be ignored since needsInput() return
659 while (!defl.needsInput()) {
672 while (!defl.needsInput()) {
723 while (!mdefl.needsInput()) {
774 while (!defl.needsInput()) {
791 while (!mdefl.needsInput()) {
813 while (!defl.needsInput()) {
826 while (!defl.needsInput()) {
839 while (!defl.needsInput()) {
854 if (infl.needsInput()) {
871 if (infl.needsInput()) {
921 while (!defl.needsInput()) {
937 while (!defl.needsInput()) {
1048 defl.needsInput();