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

12 3 4 5 6 7 8 9

  /frameworks/base/graphics/java/android/graphics/drawable/
LevelListDrawable.java 86 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:LevelListDrawable
89 super.inflate(r, parser, attrs);
MipmapDrawable.java 131 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:MipmapDrawable
134 super.inflate(r, parser, attrs);
NinePatchDrawable.java 240 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:NinePatchDrawable
242 super.inflate(r, parser, attrs);
  /development/samples/AndroidBeamDemo/src/com/example/android/beam/
Beam.java 160 inflater.inflate(R.menu.options, menu);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List9.java 71 LayoutInflater inflate = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE); local
73 mDialogText = (TextView) inflate.inflate(R.layout.list_position, null);
  /development/samples/NFCDemo/src/com/example/android/nfc/
TagViewer.java 110 inflater.inflate(R.layout.tag_divider, content, true);
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
SearchableDictionary.java 131 inflater.inflate(R.menu.options_menu, menu);
WordActivity.java 68 inflater.inflate(R.menu.options_menu, menu);
  /external/webkit/Source/WebCore/platform/graphics/
FloatRect.h 131 void inflate(float d) { inflateX(d); inflateY(d); } function in class:WebCore::FloatRect
RoundedIntRect.h 88 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); }
  /external/zlib/contrib/pascal/
zlibpas.pas 88 function inflate(var strm: z_stream; flush: Integer): Integer; function
151 {$L inflate.obj}
172 function inflate; external; function
  /frameworks/base/core/java/android/view/
ViewStub.java 29 * A ViewStub is an invisible, zero-sized View that can be used to lazily inflate
32 * When a ViewStub is made visible, or when {@link #inflate()} is invoked, the layout resource
35 * {@link #inflate()} is invoked.
38 * parameters. Similarly, you can define/override the inflate View's id by using the
59 * View inflated = stub.inflate();
62 * When {@link #inflate()} is invoked, the ViewStub is replaced by the inflated View
149 * {@link #inflate()} to replace this StubbedView
152 * @return The layout resource identifier used to inflate the new View.
156 * @see #inflate()
164 * Specifies the layout resource to inflate when this StubbedView becomes visible or invisibl
213 inflate(); method
225 public View inflate() { method in class:ViewStub
    [all...]
  /frameworks/base/core/java/android/webkit/
WebHistoryItem.java 221 * Inflate this item.
225 /*package*/ void inflate(int nativeFrame) { method in class:WebHistoryItem
226 inflate(nativeFrame, mFlattenedData); method
236 /* Natively inflate this item, this method is called in the WebCore thread.
238 private native void inflate(int nativeFrame, byte[] data); method in class:WebHistoryItem
ZoomControlExternal.java 124 inflater.inflate(com.android.internal.R.layout.zoom_magnify, this, true);
  /frameworks/base/core/java/android/widget/
PopupMenu.java 85 * @return a {@link MenuInflater} that can be used to inflate menu items from XML into the
95 * Inflate a menu resource into this PopupMenu. This is equivalent to calling
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/base/core/tests/coretests/src/android/view/
InflateTest.java 46 // mInflater.inflate(mResId, null, null);
59 mView = mInflater.inflate(resourceId, null);
65 mInflater.inflate(resourceId, null);
67 mInflater.inflate(resourceId, null);
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestActivity.java 149 inflater.inflate(R.menu.main_menu, menu);
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
SimpleInflater.java 47 public void inflate(int menuRes) { method in class:SimpleInflater
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SimpleModel.java 75 inflater.inflate(R.menu.loader_menu, menu);
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBench.java 88 inflater.inflate(R.menu.loader_menu, menu);
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
BridgeInflater.java 155 public View inflate(int resource, ViewGroup root) { method in class:BridgeInflater
184 return inflate(bridgeParser, root);
  /packages/apps/Calendar/src/com/android/calendar/
CalendarSettingsActivity.java 93 inflater.inflate(R.menu.settings_title_bar, menu);
  /packages/apps/Camera/src/com/android/camera/
OnScreenHint.java 109 LayoutInflater inflate = local
112 View v = inflate.inflate(R.layout.on_screen_hint, null);
  /packages/apps/Contacts/src/com/android/contacts/activities/
GroupDetailActivity.java 120 inflater.inflate(R.menu.group_source, menu);
  /packages/apps/Tag/src/com/android/apps/tag/
TagViewer.java 86 TextView empty = (TextView) inflater.inflate(R.layout.tag_text, content, false);
97 TextView empty = (TextView) inflater.inflate(R.layout.tag_text, content, false);
104 inflater.inflate(R.layout.tag_divider, content, true);

Completed in 2175 milliseconds

12 3 4 5 6 7 8 9