HomeSort by relevance Sort by last modified time
    Searched defs:needsDictionary (Results 1 - 8 of 8) sorted by null

  /dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
InflaterTest.java 127 if (inflateDiction.needsDictionary() == true) {
563 * @tests java.util.zip.Inflater#needsDictionary()
568 method = "needsDictionary",
572 // test method of java.util.zip.inflater.needsDictionary()
588 "method needsDictionary returned false when dictionary was used in deflater",
589 inflateDiction.needsDictionary());
597 "method needsDictionary returned true when dictionary was not used in deflater",
598 inflate.needsDictionary());
600 fail("Input to inflate is invalid or corrupted - needsDictionary");
605 assertFalse(inf.needsDictionary());
    [all...]
  /dalvik/libcore/archive/src/main/java/java/util/zip/
Inflater.java 54 private boolean needsDictionary; // Set by the inflateImpl native
253 boolean neededDict = needsDictionary;
254 needsDictionary = false;
256 if (needsDictionary && neededDict) {
278 public synchronized boolean needsDictionary() {
279 return needsDictionary;
302 needsDictionary = false;
311 * {@code needsDictionary()} can be called to determine whether the current
316 * @see #needsDictionary
327 * zero bytes inflated and {@link #needsDictionary()} return
    [all...]
  /dalvik/libcore/archive/src/main/native/
java_util_zip_Inflater.c 37 jfieldID needsDictionary;
194 fid2 = gCachedFields.needsDictionary;
322 gCachedFields.needsDictionary = (*env)->GetFieldID (env, clazz, "needsDictionary", "Z");
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 154 milliseconds