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

12

/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DSimpleInflater.java47 public void inflate(int menuRes) { method in class:SimpleInflater
/frameworks/base/graphics/java/android/graphics/drawable/
H A DMipmapDrawable.java131 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:MipmapDrawable
134 super.inflate(r, parser, attrs);
H A DColorDrawable.java158 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ColorDrawable
160 super.inflate(r, parser, attrs);
H A DLevelListDrawable.java86 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:LevelListDrawable
89 super.inflate(r, parser, attrs);
H A DStateListDrawable.java113 public void inflate(Resources r, XmlPullParser parser, method in class:StateListDrawable
H A DAnimationDrawable.java236 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:AnimationDrawable
H A DClipDrawable.java75 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ClipDrawable
77 super.inflate(r, parser, attrs);
H A DInsetDrawable.java76 @Override public void inflate(Resources r, XmlPullParser parser, method in class:InsetDrawable
H A DNinePatchDrawable.java280 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:NinePatchDrawable
282 super.inflate(r, parser, attrs);
H A DRotateDrawable.java202 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:RotateDrawable
H A DScaleDrawable.java87 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ScaleDrawable
89 super.inflate(r, parser, attrs);
H A DAnimatedRotateDrawable.java221 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:AnimatedRotateDrawable
H A DBitmapDrawable.java435 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:BitmapDrawable
437 super.inflate(r, parser, attrs);
H A DShapeDrawable.java316 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ShapeDrawable
318 super.inflate(r, parser, attrs);
H A DDrawable.java885 drawable.inflate(r, parser, attrs);
909 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:Drawable
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DBridgeInflater.java155 public View inflate(int resource, ViewGroup root) { method in class:BridgeInflater
184 return inflate(bridgeParser, root);
/frameworks/base/core/java/android/content/res/
H A DColorStateList.java150 colorStateList.inflate(r, parser, attrs);
173 private void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ColorStateList
/frameworks/base/core/java/android/view/
H A DViewStub.java30 * A ViewStub is an invisible, zero-sized View that can be used to lazily inflate
33 * When a ViewStub is made visible, or when {@link #inflate()} is invoked, the layout resource
36 * {@link #inflate()} is invoked.
39 * parameters. Similarly, you can define/override the inflate View's id by using the
60 * View inflated = stub.inflate();
63 * When {@link #inflate()} is invoked, the ViewStub is replaced by the inflated View
153 * {@link #inflate()} to replace this StubbedView
156 * @return The layout resource identifier used to inflate the new View.
160 * @see #inflate()
168 * Specifies the layout resource to inflate whe
246 public View inflate() { method in class:ViewStub
[all...]
H A DLayoutInflater.java326 * which is not allowed by the {@link Filter}, the {@link #inflate(int, ViewGroup)} call will
351 public View inflate(int resource, ViewGroup root) { method in class:LayoutInflater
352 return inflate(resource, root, root != null);
371 public View inflate(XmlPullParser parser, ViewGroup root) { method in class:LayoutInflater
372 return inflate(parser, root, root != null);
392 public View inflate(int resource, ViewGroup root, boolean attachToRoot) { method in class:LayoutInflater
396 return inflate(parser, root, attachToRoot);
424 public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot) { method in class:LayoutInflater
H A DMenuInflater.java101 * @param menu The Menu to inflate into. The items and submenus will be
104 public void inflate(int menuRes, Menu menu) { method in class:MenuInflater
/frameworks/base/core/java/android/webkit/
H A DWebHistoryItemClassic.java201 /*package*/ void inflate(int nativeFrame) { method in class:WebHistoryItemClassic
202 mNativeBridge = inflate(nativeFrame, mFlattenedData);
210 /* Natively inflate this item, this method is called in the WebCore thread.
212 private native int inflate(int nativeFrame, byte[] data); method in class:WebHistoryItemClassic
/frameworks/base/core/java/android/widget/
H A DPopupMenu.java85 * @return a {@link MenuInflater} that can be used to inflate menu items from XML into the
96 * popupMenu.getMenuInflater().inflate(menuRes, popupMenu.getMenu()).
97 * @param menuRes Menu resource to inflate
99 public void inflate(int menuRes) { method in class:PopupMenu
100 getMenuInflater().inflate(menuRes, mMenu);
/frameworks/native/include/gui/
H A DISurfaceTexture.h134 inline void inflate(uint32_t inWidth, uint32_t inHeight, function in struct:android::ISurfaceTexture::QueueBufferOutput
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java40 * @param T The type of the items to inflate
219 public T inflate(int resource, P root) { method in class:GenericInflater
220 return inflate(resource, root, root != null);
239 public T inflate(XmlPullParser parser, P root) { method in class:GenericInflater
240 return inflate(parser, root, root != null);
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
/frameworks/base/core/tests/coretests/src/com/android/internal/widget/
H A DSizeAdaptiveLayoutTest.java46 // inflate the layout
53 private void inflate(int resource){ method in class:SizeAdaptiveLayoutTest
54 mSizeAdaptiveLayout = (SizeAdaptiveLayout) mInflater.inflate(resource, null);
72 inflate(R.layout.size_adaptive);
80 inflate(R.layout.size_adaptive);
97 inflate(R.layout.size_adaptive);
114 inflate(R.layout.size_adaptive);
131 inflate(R.layout.size_adaptive);
150 inflate(R.layout.size_adaptive_text);
164 inflate(
[all...]

Completed in 4546 milliseconds

12