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

123

/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/okhttp/okio/src/test/java/okio/
H A DDeflaterSinkTest.java39 OkBuffer inflated = inflate(sink);
51 OkBuffer inflated = inflate(sink);
63 OkBuffer inflated = inflate(sink);
75 OkBuffer inflated = inflate(sink);
87 assertEquals(repeat('a', byteCount), inflate(buffer).readUtf8(byteCount));
113 * Uses streaming decompression to inflate {@code deflated}. The input must
116 private OkBuffer inflate(OkBuffer deflated) throws IOException { method in class:DeflaterSinkTest
H A DInflaterSourceTest.java30 @Test public void inflate() throws Exception { method in class:InflaterSourceTest
33 OkBuffer inflated = inflate(deflated);
41 inflate(deflated);
66 OkBuffer inflated = inflate(deflated);
73 OkBuffer inflated = inflate(deflated);
95 private OkBuffer inflate(OkBuffer deflated) throws IOException { method in class:InflaterSourceTest
/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/chromium_org/third_party/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);
/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);
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketDeflateFramer.cpp195 PassOwnPtr<InflateResultHolder> WebSocketDeflateFramer::inflate(WebSocketFrame& frame) function in class:blink::WebSocketDeflateFramer
H A DWebSocketPerMessageDeflate.cpp217 bool WebSocketPerMessageDeflate::inflate(WebSocketFrame& frame) function in class:blink::WebSocketPerMessageDeflate
240 m_failureReason = "Failed to inflate a frame";
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DRoundedRect.h94 void inflate(int size) { m_rect.inflate(size); } function in class:blink::RoundedRect
H A DFloatRoundedRect.h97 void inflate(float size) { m_rect.inflate(size); } function in class:blink::FloatRoundedRect
H A DIntRect.h146 void inflate(int d) { inflateX(d); inflateY(d); } function in class:blink::IntRect
/external/freetype/src/gzip/
H A Dinflate.c0 /* inflate.c -- zlib interface to inflate modules
29 /* inflate private state */
33 inflate_mode mode; /* current inflate mode */
63 Tracev((stderr, "inflate: reset\n"));
77 Tracev((stderr, "inflate: end\n"));
131 Tracev((stderr, "inflate: allocated\n"));
147 ZEXPORT(int) inflate( /* z, f) */ function
187 Tracev((stderr, "inflate: zlib header ok\n"));
260 Tracev((stderr, "inflate
[all...]
H A Dzconf.h20 # define inflate z_inflate macro
135 The memory requirements for inflate are (in bytes) 1 << windowBits
/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/chromium_org/third_party/zlib/
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
589 int ZEXPORT inflate(strm, flush) function
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_inflate.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
605 int ZEXPORT inflate( function
[all...]
/external/qemu/distrib/zlib-1.2.8/
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
605 int ZEXPORT inflate(strm, flush) function
[all...]
/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

Completed in 244 milliseconds

123