HomeSort by relevance Sort by last modified time
    Searched defs:inflate (Results 151 - 175 of 455) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/freetype/src/gzip/
zconf.h 20 # define inflate z_inflate macro
135 The memory requirements for inflate are (in bytes) 1 << windowBits
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/joints/
ConstantVolumeJoint.java 56 public void inflate(float factor) { method in class:ConstantVolumeJoint
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gzip/
zconf.h 20 # define inflate z_inflate macro
135 The memory requirements for inflate are (in bytes) 1 << windowBits
  /external/opencv3/3rdparty/zlib/
inflate.c 0 /* 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/pdfium/third_party/zlib_v128/
inflate.c 0 /* 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/skia/src/views/
SkEvent.cpp 124 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/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/widget/
DurationPicker.java 53 inflater.inflate(R.layout.duration_picker, this, true);
  /external/toybox/toys/pending/
compress.c 1 /* compress.c - deflate/inflate code for zip, gzip, zlib, and raw
5 * The inflate/deflate code lives here, so the various things that use it
164 if (bb->len < 1) perror_exit("inflate EOF");
298 static void inflate(struct bitbuf *bb) function
455 // Allocate memory for deflate/inflate.
565 inflate(bb);
  /external/zlib/src/contrib/delphi/
ZLib.pas 206 {$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/
zlibpas.pas 110 function inflate(var strm: z_stream; flush: Integer): Integer; function
182 {$L inflate.obj}
208 function inflate; external; function
  /external/zlib/src/
inflate.c 0 /* 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...]
  /frameworks/base/core/java/android/preference/
GenericInflater.java 41 * @param T The type of the items to inflate
210 * Inflate a new item hierarchy from the specified xml resource. Throws
220 public T inflate(@XmlRes int resource, P root) { method in class:GenericInflater
221 return inflate(resource, root, root != null);
225 * Inflate a new hierarchy from the specified xml node. Throws
240 public T inflate(XmlPullParser parser, P root) { method in class:GenericInflater
241 return inflate(parser, root, root != null);
245 * Inflate a new hierarchy from the specified xml resource. Throws
260 public T inflate(@XmlRes int resource, P root, boolean attachToRoot) { method in class:GenericInflater
264 return inflate(parser, root, attachToRoot)
291 public T inflate(XmlPullParser parser, P root, method in class:GenericInflater
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
LocalePickerWithRegion.java 232 inflater.inflate(R.menu.language_selection_list, menu);
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimationDrawable.java 289 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) method in class:AnimationDrawable
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
NumPadKey.java 99 inflater.inflate(contentResource, this, true);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
ToggleSlider.java 63 View.inflate(context, R.layout.status_bar_toggle_slider, this);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tv/pip/
PipControlButtonView.java 79 inflater.inflate(R.layout.tv_pip_control_button, this);
PipControlsView.java 107 inflater.inflate(R.layout.tv_pip_controls, this);
  /frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
NetworkActivity.java 170 inflater.inflate(R.menu.mainmenu, menu);
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
TrackerActivity.java 83 menuInflater.inflate(R.menu.menu, menu);
  /frameworks/base/tests/UsageStatsTest/src/com/android/tests/usagestats/
UsageStatsActivity.java 62 inflater.inflate(R.menu.main, menu);
126 .inflate(R.layout.row_item, parent, false);
  /frameworks/base/tools/aapt2/xml/
XmlDom.cpp 168 std::unique_ptr<XmlResource> inflate(std::istream* in, IDiagnostics* diag, const Source& source) { function in namespace:aapt::xml
229 std::unique_ptr<XmlResource> inflate(const void* data, size_t dataLen, IDiagnostics* diag, function in namespace:aapt::xml
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
BridgeInflater.java 194 public View inflate(int resource, ViewGroup root) { method in class:BridgeInflater
225 return inflate(bridgeParser, root);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
CustomBar.java 95 inflater.inflate(bridgeParser, this, true);
FrameworkActionBarWrapper.java 139 inflater.inflate(id, menuBuilder);
153 * The context used to inflate the popup menu.
159 * The Menu in which to inflate the user's menus.

Completed in 2091 milliseconds

1 2 3 4 5 67 8 91011>>