Searched refs:inflate (Results 1 - 25 of 102) sorted by relevance

12345

/external/zlib/src/contrib/dotzlib/DotZLib/
H A DInflater.cs16 /// Implements a data decompressor, using the inflate algorithm in the ZLib dll
25 private static extern int inflate(ref ZStream sz, int flush); method in class:DotZLib.Inflater
67 err = inflate(ref _ztream, (int)FlushTypes.None);
72 err = inflate(ref _ztream, (int)FlushTypes.None);
89 err = inflate(ref _ztream, (int)FlushTypes.Finish);
99 /// Closes the internal zlib inflate stream
/external/okhttp/okio/okio/src/test/java/okio/
H A DInflaterSourceTest.java31 @Test public void inflate() throws Exception { method in class:InflaterSourceTest
34 Buffer inflated = inflate(deflated);
42 inflate(deflated);
67 Buffer inflated = inflate(deflated);
74 Buffer inflated = inflate(deflated);
105 private Buffer inflate(Buffer deflated) throws IOException { method in class:InflaterSourceTest
H A DDeflaterSinkTest.java39 Buffer inflated = inflate(sink);
51 Buffer inflated = inflate(sink);
63 Buffer inflated = inflate(sink);
75 Buffer inflated = inflate(sink);
87 assertEquals(repeat('a', byteCount), inflate(buffer).readUtf8(byteCount));
103 Buffer inflated = inflate(sink);
131 * Uses streaming decompression to inflate {@code deflated}. The input must
134 private Buffer inflate(Buffer deflated) throws IOException { method in class:DeflaterSinkTest
/external/skia/include/views/
H A DSkViewInflate.h25 as a view, otherwise assume root is that view, and just "inflate" it.
29 SkView* inflate(const SkDOM& dom, const SkDOM::Node* node, SkView* root = NULL);
30 SkView* inflate(const char xml[], size_t len, SkView* root = NULL);
43 Do not call "inflate" on the view, just return it. This will
47 /** Base implementation calls view->inflate(dom, node). Subclasses may override this
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DCustomView.java13 inflate(context, R.layout.inner_merge, this);
/external/zlib/src/contrib/delphi/
H A Dzlibd32.mak22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
24 OBJP2 = +gzwrite.obj+infback.obj+inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
49 infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
52 inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
55 inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
/external/zlib/src/contrib/pascal/
H A Dzlibd32.mak22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
24 OBJP2 = +gzwrite.obj+infback.obj+inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
49 infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
52 inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
55 inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
H A Dexample.pas226 * Test inflate with small buffers
252 err := inflate(d_stream, Z_NO_FLUSH);
255 CHECK_ERR(err, 'inflate');
262 EXIT_ERR('bad inflate')
264 WriteLn('inflate(): ', PChar(uncompr));
321 * Test inflate with large buffers
345 err := inflate(d_stream, Z_NO_FLUSH);
348 CHECK_ERR(err, 'large inflate');
356 WriteLn('bad large inflate: ', d_stream.total_out);
427 inflate(d_strea
[all...]
/external/zlib/src/watcom/
H A Dwatcom_l.mak9 infback.c inffast.c inflate.c inftrees.c &
14 infback.obj inffast.obj inflate.obj inftrees.obj &
31 wlib -b -c $(ZLIB_LIB) -+inffast.obj -+inflate.obj -+inftrees.obj
H A Dwatcom_f.mak9 infback.c inffast.c inflate.c inftrees.c &
14 infback.obj inffast.obj inflate.obj inftrees.obj &
31 wlib -b -c $(ZLIB_LIB) -+inffast.obj -+inflate.obj -+inftrees.obj
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DNameValueBlockReader.java66 @Override public int inflate(byte[] buffer, int offset, int count)
68 int result = super.inflate(buffer, offset, count);
71 result = super.inflate(buffer, offset, count);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLayoutInflater.java42 public View inflate(int resource, ViewGroup root, boolean attachToRoot) { method in class:ShadowLayoutInflater
47 public View inflate(int resource, ViewGroup root) { method in class:ShadowLayoutInflater
48 return inflate(resource, root, root != null);
H A DShadowMenuInflater.java25 public void inflate(int resource, Menu root) { method in class:ShadowMenuInflater
H A DShadowResourceCursorAdapter.java84 return mInflater.inflate(mLayout, parent, false);
89 return mInflater.inflate(mDropDownLayout, parent, false);
H A DShadowViewStub.java66 public View inflate() { method in class:ShadowViewStub
73 View view = factory.inflate(mLayoutResource, parent, false);
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_uncompr.c48 err = inflate(&stream, Z_FINISH);
/external/replicaisland/src/com/replica/replicaisland/
H A DCustomToastSystem.java34 mView = inflater.inflate(R.layout.custom_toast, null);
/external/skia/src/views/
H A DSkViewInflate.cpp58 view->inflate(dom, node);
61 SkView* SkViewInflate::inflate(const SkDOM& dom, const SkDOM::Node* node, SkView* root) function in class:SkViewInflate
101 SkView* SkViewInflate::inflate(const char xml[], size_t len, SkView* root) function in class:SkViewInflate
106 return node ? this->inflate(dom, node, root) : NULL;
138 SkDebugf("inflate: listenTo(\"%s\")\n", iter->fStr);
143 SkDebugf("inflate: broadcastFrom(\"%s\")\n", iter->fStr);
H A DSkViewPriv.cpp18 void SkView::Artist::inflate(const SkDOM& dom, const SkDOM::Node* node) function in class:SkView::Artist
64 void SkView::Layout::inflate(const SkDOM& dom, const SkDOM::Node* node) function in class:SkView::Layout
/external/zlib/src/
H A Duncompr.c48 err = inflate(&stream, Z_FINISH);
/external/libpng/contrib/pngminim/decoder/
H A Dmakefile30 # Zlib (minimal inflate requirements - crc32 is used by libpng)
33 inffast$(C) inflate$(C) inftrees$(C) \
38 inflate.h inftrees.h zutil.h
50 inffast$(O) inflate$(O) inftrees$(O) \
/external/jmonkeyengine/engine/src/android/jme3test/android/
H A DDemoLaunchAdapter.java46 convertView = inflater.inflate(R.layout.demo_row, null);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DMenuInflaterTest.java21 new MenuInflater(Robolectric.application).inflate(R.menu.test, menu);
/external/freetype/src/gzip/
H A Dzlib.h297 inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to
304 the zlib header if present: this will be done by inflate(). (So next_in and
309 ZEXTERN(int) inflate OF((z_streamp strm, int flush));
311 inflate decompresses as much data as possible, and stops when the input
316 The detailed semantics are as follows. inflate performs one or both of the
322 will resume at this point for the next call of inflate().
325 accordingly. inflate() provides as much output as possible, until there
329 Before the call of inflate(), the application should ensure that at least
334 call of inflate(). If inflate return
[all...]
/external/okhttp/okio/okio/src/main/java/okio/
H A DInflaterSource.java67 int bytesInflated = inflater.inflate(tail.data, tail.limit, Segment.SIZE - tail.limit);

Completed in 760 milliseconds

12345