HomeSort by relevance Sort by last modified time
    Searched defs:inflate (Results 51 - 75 of 209) sorted by null

1 23 4 5 6 7 8 9

  /packages/apps/Tag/src/com/android/apps/tag/record/
RecordUtils.java 71 TextView text = (TextView) inflater.inflate(R.layout.tag_text, parent, false);
91 inflater.inflate(R.layout.tag_divider, container);
113 View item = inflater.inflate(R.layout.tag_uri, parent, false);
  /frameworks/base/graphics/java/android/graphics/drawable/
BitmapDrawable.java 435 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:BitmapDrawable
437 super.inflate(r, parser, attrs);
ClipDrawable.java 76 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ClipDrawable
78 super.inflate(r, parser, attrs);
ScaleDrawable.java 88 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ScaleDrawable
90 super.inflate(r, parser, attrs);
ShapeDrawable.java 316 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ShapeDrawable
318 super.inflate(r, parser, attrs);
Drawable.java 891 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:Drawable
    [all...]
AnimationDrawable.java 224 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:AnimationDrawable
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
RotateDrawableTest.java 276 method = "inflate",
294 rotateDrawable.inflate(r, parser, attrs);
299 mRotateDrawable.inflate(null, null, null);
GradientDrawableTest.java 364 method = "inflate",
397 gradientDrawable.inflate(resources, parser, attrs);
412 gradientDrawable.inflate(null, null, null);
InsetDrawableTest.java 70 method = "inflate",
85 insetDrawable.inflate(r, parser, attrs);
95 insetDrawable.inflate(null, null, null);
LevelListDrawableTest.java 134 method = "inflate",
142 mLevelListDrawable.inflate(mResources, parser, Xml.asAttributeSet(parser));
155 mLevelListDrawable.inflate(mResources, parser, Xml.asAttributeSet(parser));
165 mLevelListDrawable.inflate(mResources, parser, Xml.asAttributeSet(parser));
173 method = "inflate",
178 + "LevelListDrawable#inflate(Resources, XmlPullParser, AttributeSet) when param r,"
183 mLevelListDrawable.inflate(null, parser, Xml.asAttributeSet(parser));
189 mLevelListDrawable.inflate(mResources, null, Xml.asAttributeSet(parser));
195 mLevelListDrawable.inflate(mResources, parser, null);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
PassFailButtons.java 267 builder.setView(inflater.inflate(viewId, null));
  /development/samples/NFCDemo/src/com/example/android/nfc/record/
SmartPoster.java 144 inflater.inflate(R.layout.tag_divider, container);
  /development/samples/NotePad/src/com/example/android/notepad/
NotesList.java 155 // Inflate menu from XML resource
157 inflater.inflate(R.menu.list_options_menu, menu);
331 // Inflate menu from XML resource
333 inflater.inflate(R.menu.list_context_menu, menu);
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
WiFiDirectActivity.java 116 inflater.inflate(R.menu.action_items, menu);
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
LookupActivity.java 166 inflater.inflate(R.menu.lookup, menu);
196 // Inflate the about message contents
197 View messageView = getLayoutInflater().inflate(R.layout.about, null, false);
  /external/qemu/distrib/zlib-1.2.3/
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
554 int ZEXPORT inflate(strm, flush) function
    [all...]
  /external/skia/src/views/
SkEvent.cpp 145 void SkEvent::inflate(const SkDOM& dom, const SkDOM::Node* node) function in class:SkEvent
163 SkDEBUGCODE(SkDebugf("SkEvent::inflate unrecognized subelement <%s>\n", dom.getName(node));)
170 SkDEBUGCODE(SkDebugf("SkEvent::inflate missing required \"name\" attribute in <data> subelement\n");)
191 SkDebugf("SkEvent::inflate <data name=\"%s\"> subelement missing required type attribute [S32 | scalar | string]\n", name);
  /external/webkit/Source/WebCore/platform/graphics/
IntRect.h 164 void inflate(int d) { inflateX(d); inflateY(d); } function in class:WebCore::IntRect
  /external/zlib/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/
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
589 int ZEXPORT inflate(strm, flush) function
    [all...]
  /frameworks/base/core/java/android/preference/
GenericInflater.java 40 * @param T The type of the items to inflate
209 * Inflate a new item hierarchy from the specified xml resource. Throws
219 public T inflate(int resource, P root) { method in class:GenericInflater
220 return inflate(resource, root, root != null);
224 * Inflate a new hierarchy from the specified xml node. Throws
239 public T inflate(XmlPullParser parser, P root) { method in class:GenericInflater
240 return inflate(parser, root, root != null);
244 * Inflate a new hierarchy from the specified xml resource. Throws
259 public T inflate(int resource, P root, boolean attachToRoot) { method in class:GenericInflater
263 return inflate(parser, root, attachToRoot)
290 public T inflate(XmlPullParser parser, P root, method in class:GenericInflater
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
ToggleSlider.java 59 View.inflate(context, R.layout.status_bar_toggle_slider, this);
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
TrackerActivity.java 83 menuInflater.inflate(R.menu.menu, menu);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
CustomBar.java 79 inflater.inflate(bridgeParser, this, true);

Completed in 3525 milliseconds

1 23 4 5 6 7 8 9