Searched defs:inflate (Results 1 - 25 of 30) sorted by relevance

12

/external/libpng/contrib/pngminim/encoder/
H A Ddummy_inflate.c3 int ZEXPORT inflate(strm, flush) function
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMenuInflater.java25 public void inflate(int resource, Menu root) { method in class:ShadowMenuInflater
H A DShadowViewStub.java66 public View inflate() { method in class:ShadowViewStub
73 View view = factory.inflate(mLayoutResource, parent, false);
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);
/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/skia/legacy/src/views/
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
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 DSkEvent.cpp124 void SkEvent::inflate(const SkDOM& dom, const SkDOM::Node* node) function in class:SkEvent
142 SkDEBUGCODE(SkDebugf("SkEvent::inflate unrecognized subelement <%s>\n", dom.getName(node));)
149 SkDEBUGCODE(SkDebugf("SkEvent::inflate missing required \"name\" attribute in <data> subelement\n");)
170 SkDebugf("SkEvent::inflate <data name=\"%s\"> subelement missing required type attribute [S32 | scalar | string]\n", name);
/external/skia/src/views/
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
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 DSkEvent.cpp124 void SkEvent::inflate(const SkDOM& dom, const SkDOM::Node* node) function in class:SkEvent
142 SkDEBUGCODE(SkDebugf("SkEvent::inflate unrecognized subelement <%s>\n", dom.getName(node));)
149 SkDEBUGCODE(SkDebugf("SkEvent::inflate missing required \"name\" attribute in <data> subelement\n");)
170 SkDebugf("SkEvent::inflate <data name=\"%s\"> subelement missing required type attribute [S32 | scalar | string]\n", name);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DMenuLoader.java121 menuNode.inflate(context, root);
180 public void inflate(Context context, Menu root) throws Exception { method in class:MenuLoader.MenuNode
H A DPreferenceLoader.java75 return (PreferenceScreen) prefNode.inflate(context, null);
102 public Preference inflate(Context context, Preference parent) throws Exception { method in class:PreferenceLoader.PreferenceNode
106 child.inflate(context, preference);
H A DViewLoader.java105 return viewNode.inflate(context, parent);
170 public View inflate(Context context, View parent) throws Exception { method in class:ViewLoader.ViewNode
174 child.inflate(context, view);
216 throw new RuntimeException("Cannot inflate a fragment unless the activity is a FragmentActivity");
/external/webkit/Source/WebCore/platform/graphics/
H A DRoundedIntRect.h88 void inflate(int size) { m_rect.inflate(size); } function in class:WebCore::RoundedIntRect
89 void inflateWithRadii(int size) { m_rect.inflate(size); m_radii.expand(size); }
H A DFloatRect.h131 void inflate(float d) { inflateX(d); inflateY(d); } function in class:WebCore::FloatRect
H A DIntRect.h164 void inflate(int d) { inflateX(d); inflateY(d); } function in class:WebCore::IntRect
/external/qemu/distrib/zlib-1.2.3/
H A Dinflate.c0 /* inflate.c -- zlib decompression
10 * - First version -- complete rewrite of inflate to simplify code, avoid
13 * improve code readability and style over the previous zlib inflate code
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
39 * buffer and bit count in inflate()--for speed when inflate_fast() not used
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
53 * source file infback.c to provide a call-back interface to inflate fo
554 int ZEXPORT inflate(strm, flush) function
[all...]
H A Dzconf.h20 # define inflate z_inflate macro
159 The memory requirements for inflate are (in bytes) 1 << windowBits
/external/zlib/src/contrib/delphi/
H A DZLib.pas206 {$L inflate.obj}
246 // inflate decompresses data
249 function inflate(var strm: TZStreamRec; flush: Integer): Integer; external; function
347 while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do
380 if DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END then
517 CCheck(inflate(FZRec, 0));
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas110 function inflate(var strm: z_stream; flush: Integer): Integer; function
182 {$L inflate.obj}
208 function inflate; external; function
/external/zlib/src/
H A Dinflate.c0 /* inflate.c -- zlib decompression
10 * - First version -- complete rewrite of inflate to simplify code, avoid
13 * improve code readability and style over the previous zlib inflate code
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
39 * buffer and bit count in inflate()--for speed when inflate_fast() not used
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
53 * source file infback.c to provide a call-back interface to inflate fo
604 int ZEXPORT inflate(strm, flush) function
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dzconf.h20 # define inflate z_inflate macro
159 The memory requirements for inflate are (in bytes) 1 << windowBits
/external/open-vcdiff/src/zlib/
H A Dzconf.h20 # define inflate z_inflate macro
159 The memory requirements for inflate are (in bytes) 1 << windowBits
/external/openssl/crypto/comp/
H A Dc_zlib.c123 #define inflate p_inflate macro
235 err = inflate(&state->istream, Z_SYNC_FLUSH);
327 err = inflate(&stream, Z_FINISH);
363 "inflate");
566 ret = inflate(zin, 0);

Completed in 451 milliseconds

12