HomeSort by relevance Sort by last modified time
    Searched full:inflate (Results 1 - 25 of 1177) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
InflaterTest.java 46 Inflater inflate = new Inflater(); local
47 inflate.setInput(byteArray);
48 inflate.end();
50 inflate.reset();
51 inflate.setInput(byteArray);
55 assertEquals("inflate can still be used after end is called", 1, r);
69 Inflater inflate = new Inflater(false); local
72 while (!(inflate.finished())) {
73 if (inflate.needsInput()) {
74 inflate.setInput(outPutBuff1)
120 Inflater inflate = new Inflater(); local
149 Inflater inflate = new Inflater(); local
206 Inflater inflate = new Inflater(); local
260 Inflater inflate = new Inflater(); local
363 Inflater inflate = new Inflater(); local
479 Inflater inflate = new Inflater(); local
492 Inflater inflate = new Inflater(true); local
540 Inflater inflate = new Inflater(); local
567 Inflater inflate = new Inflater(); local
594 Inflater inflate = new Inflater(); local
698 Inflater inflate = new Inflater(); local
712 Inflater inflate = new Inflater(); local
1093 Inflater inflate = new Inflater(); local
    [all...]
  /external/libpng/contrib/pngminim/encoder/
dummy_inflate.c 3 int ZEXPORT inflate(strm, flush) function
  /external/qemu/distrib/zlib-1.2.3/
sources.make 2 ZLIB_SOURCES := adler32.c compress.c crc32.c deflate.c gzio.c infback.c inffast.c inflate.c inftrees.c trees.c uncompr.c zutil.c
inflate.h 0 /* inflate.h -- internal inflate state definition
12 trailer decoding by inflate(). NO_GZIP would be used to avoid linking in
19 /* Possible inflate modes between inflate() calls */
33 TYPEDO, /* i: same, but skip check to exit inflate on new block */
49 MEM, /* got an inflate() memory error -- remain here until reset */
50 SYNC /* looking for synchronization bytes to restart inflate() */
76 /* state maintained between inflate() calls. Approximately 7K bytes. */
78 inflate_mode mode; /* current inflate mode *
    [all...]
  /external/zlib/examples/
README.examples 6 - calculates the maximum table space used in inflate tree
22 - illustrates the use of the Z_BLOCK flush parameter for inflate()
27 - illustrates the use of the Z_BLOCK flush parameter for inflate()
39 - describes in excruciating detail the use of deflate() and inflate()
43 - illustrates the proper use of deflate() and inflate()
  /frameworks/base/core/java/android/view/
ViewStub.java 29 * A ViewStub is an invisible, zero-sized View that can be used to lazily inflate
32 * When a ViewStub is made visible, or when {@link #inflate()} is invoked, the layout resource
35 * {@link #inflate()} is invoked.
38 * parameters. Similarly, you can define/override the inflate View's id by using the
59 * View inflated = stub.inflate();
62 * When {@link #inflate()} is invoked, the ViewStub is replaced by the inflated View
149 * {@link #inflate()} to replace this StubbedView
152 * @return The layout resource identifier used to inflate the new View.
156 * @see #inflate()
164 * Specifies the layout resource to inflate when this StubbedView becomes visible or invisibl
213 inflate(); method
225 public View inflate() { method in class:ViewStub
    [all...]
  /development/ndk/platforms/android-3/arch-arm/symbols/
libz.so.functions.txt 46 inflate
  /development/ndk/platforms/android-9/arch-x86/symbols/
libz.so.functions.txt 51 inflate
  /external/zlib/contrib/infback9/
inflate9.h 1 /* inflate9.h -- internal inflate state definition
11 /* Possible inflate modes between inflate() calls */
34 /* state maintained between inflate() calls. Approximately 7K bytes. */
  /external/zlib/old/os2/
zlib.def 29 inflate
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestViewGroupMarginMixed.java 15 return inflater.inflate(R.layout.view_group_margin_mixed, container, false);
BiDiTestViewPadding.java 15 return inflater.inflate(R.layout.view_padding, container, false);
BiDiTestViewPaddingMixed.java 15 return inflater.inflate(R.layout.view_padding_mixed, container, false);
  /external/skia/include/views/
SkViewInflate.h 32 as a view, otherwise assume root is that view, and just "inflate" it.
36 SkView* inflate(const SkDOM& dom, const SkDOM::Node* node, SkView* root = NULL);
37 SkView* inflate(const char xml[], size_t len, SkView* root = NULL);
50 Do not call "inflate" on the view, just return it. This will
54 /** Base implementation calls view->inflate(dom, node). Subclasses may override this
  /external/zlib/
inflate.h 0 /* inflate.h -- internal inflate state definition
12 trailer decoding by inflate(). NO_GZIP would be used to avoid linking in
19 /* Possible inflate modes between inflate() calls */
33 TYPEDO, /* i: same, but skip check to exit inflate on new block */
51 MEM, /* got an inflate() memory error -- remain here until reset */
52 SYNC /* looking for synchronization bytes to restart inflate() */
80 /* state maintained between inflate() calls. Approximately 10K bytes. */
82 inflate_mode mode; /* current inflate mode *
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
LayoutInflaterTest.java 282 method = "inflate",
293 View view = mLayoutInflater.inflate(
298 view = mLayoutInflater.inflate(-1, null);
310 view = mLayoutInflater.inflate(R.layout.inflater_layout,
320 method = "inflate",
331 View view = mLayoutInflater.inflate(
336 view = mLayoutInflater.inflate(-1, null, false);
349 view = mLayoutInflater.inflate(R.layout.inflater_layout,
355 view = mLayoutInflater.inflate(R.layout.inflater_layout,
365 method = "inflate",
    [all...]
ViewStubTest.java 131 // does not call inflate
138 //assure the inflate is called
210 viewStub.inflate();
225 viewStub.inflate();
258 notes = "Test {@link ViewStub#inflate()}",
259 method = "inflate",
272 View view = viewStub.inflate();
285 notes = "Test abnormal condition of {@link ViewStub#inflate()}",
286 method = "inflate",
289 @ToBeFixed(bug="", explanation="should add javadoc for ViewStub#inflate(): it will"
    [all...]
  /external/skia/src/views/
SkViewInflate.cpp 51 view->inflate(dom, node);
54 SkView* SkViewInflate::inflate(const SkDOM& dom, const SkDOM::Node* node, SkView* root) function in class:SkViewInflate
94 SkView* SkViewInflate::inflate(const char xml[], size_t len, SkView* root) function in class:SkViewInflate
99 return node ? this->inflate(dom, node, root) : NULL;
131 SkDebugf("inflate: listenTo(\"%s\")\n", iter->fStr);
136 SkDebugf("inflate: broadcastFrom(\"%s\")\n", iter->fStr);
  /external/zlib/win32/
zlib.def 9 inflate
  /frameworks/base/docs/html/resources/articles/
layout-tricks-stubs.jd 16 This means that a <code>ViewStub</code> is very cheap to inflate and very cheap
47 <code>android:id</code> attribute, to later inflate the stub, and an
49 to include and inflate. A stub lets you use a third attribute,
65 <p>When you are ready to inflate the stub, simply invoke the
66 {@link android.view.ViewStub#inflate()} method. You can also simply change the
68 {@link android.view.View#INVISIBLE} and the stub will inflate. Note however that the
69 <code>inflate()</code> method has the benefit of returning the root
70 <code>View</code> of the inflate layout:</p>
74 View importPanel = ((ViewStub) findViewById(R.id.stub_import)).inflate();</pre>
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterTest.java 43 assertEquals(0, inflater.inflate(decompressed));
49 assertEquals(0, inflater.inflate(decompressed));
56 assertEquals(0, inflater.inflate(decompressed));
65 totalInflated += inflater.inflate(decompressed, totalInflated,
  /external/kernel-headers/original/linux/
zlib.h 36 /* zlib inflate based on ZLIB_VERSION "1.2.3" */
49 zlib_inflate itself to inflate the data.
145 #define Z_BLOCK 6 /* Only for inflate at present */
146 /* Allowed flush values; see deflate() and inflate() below for details */
320 inflate. If zalloc and zfree are set to NULL, inflateInit updates them to
327 the zlib header if present: this will be done by inflate(). (So next_in and
334 inflate decompresses as much data as possible, and stops when the input
339 The detailed semantics are as follows. inflate performs one or both of the
345 will resume at this point for the next call of inflate().
348 accordingly. inflate() provides as much output as possible, until ther
    [all...]
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/lib/
libz.so 
  /prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/lib/
libz.so 
  /prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/lib/
libz.so 

Completed in 655 milliseconds

1 2 3 4 5 6 7 8 91011>>