HomeSort by relevance Sort by last modified time
    Searched refs:inflate (Results 101 - 125 of 1263) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
UniqueIds.java 45 Button button = (Button) inflater.inflate(R.layout.button_template, null);
49 button = (Button) inflater.inflate(R.layout.button_template, null);
  /frameworks/support/v7/appcompat/src/android/support/v7/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);
  /libcore/luni/src/main/native/
ZipUtilities.cpp 45 bool inflate) {
54 if (inflate) {
  /packages/apps/Calendar/src/com/android/calendar/
EmailAddressAdapter.java 45 return mInflater.inflate(R.layout.email_autocomplete_item, parent, false);
50 return mInflater.inflate(R.layout.email_autocomplete_item_loading, parent, false);
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
LevelListDrawableTest.java 116 mLevelListDrawable.inflate(mResources, parser, Xml.asAttributeSet(parser));
129 mLevelListDrawable.inflate(mResources, parser, Xml.asAttributeSet(parser));
139 mLevelListDrawable.inflate(mResources, parser, Xml.asAttributeSet(parser));
148 mLevelListDrawable.inflate(null, parser, Xml.asAttributeSet(parser));
154 mLevelListDrawable.inflate(mResources, null, Xml.asAttributeSet(parser));
160 mLevelListDrawable.inflate(mResources, parser, null);
AnimationDrawableTest.java 286 mAnimationDrawable.inflate(mResources, parser, Xml.asAttributeSet(parser));
299 mAnimationDrawable.inflate(mResources, parser, Xml.asAttributeSet(parser));
317 mAnimationDrawable.inflate(mResources, parser, Xml.asAttributeSet(parser));
327 mAnimationDrawable.inflate(null, parser, Xml.asAttributeSet(parser));
334 mAnimationDrawable.inflate(mResources, null, Xml.asAttributeSet(parser));
341 mAnimationDrawable.inflate(mResources, parser, null);
StateListDrawableTest.java 160 mStateListDrawable.inflate(mResources, parser, Xml.asAttributeSet(parser));
181 mStateListDrawable.inflate(mResources, parser, Xml.asAttributeSet(parser));
199 mStateListDrawable.inflate(mResources, parser, Xml.asAttributeSet(parser));
208 mStateListDrawable.inflate(null, parser, Xml.asAttributeSet(parser));
214 mStateListDrawable.inflate(mResources, null, Xml.asAttributeSet(parser));
220 mStateListDrawable.inflate(mResources, parser, null);
  /external/zlib/src/watcom/
watcom_f.mak 9 infback.c inffast.c inflate.c inftrees.c &
14 infback.obj inffast.obj inflate.obj inftrees.obj &
31 wlib -b -c $(ZLIB_LIB) -+inffast.obj -+inflate.obj -+inftrees.obj
  /external/zlib/src/contrib/pascal/
example.pas 226 * Test inflate with small buffers
252 err := inflate(d_stream, Z_NO_FLUSH);
255 CHECK_ERR(err, 'inflate');
262 EXIT_ERR('bad inflate')
264 WriteLn('inflate(): ', PChar(uncompr));
321 * Test inflate with large buffers
345 err := inflate(d_stream, Z_NO_FLUSH);
348 CHECK_ERR(err, 'large inflate');
356 WriteLn('bad large inflate: ', d_stream.total_out);
427 inflate(d_stream, Z_NO_FLUSH)
    [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...]
  /cts/tests/tests/view/src/android/view/cts/
ViewStubTest.java 87 // does not call inflate
94 //assure the inflate is called
142 viewStub.inflate();
152 viewStub.inflate();
179 View view = viewStub.inflate();
196 viewStub.inflate();
205 stub.inflate();
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-ShareActionProvider/ActionBarCompat-ShareActionProviderSample/src/main/java/com/example/android/actionbarcompat/shareactionprovider/
MainActivity.java 77 // Inflate the menu resource
78 getMenuInflater().inflate(R.menu.main_menu, menu);
122 // The view we need to inflate changes based on the type of content
125 // Inflate item layout for text
127 .inflate(R.layout.item_text, container, false);
137 // Inflate item layout for images
139 .inflate(R.layout.item_image, container, false);
  /development/samples/browseable/ShareActionProvider/src/com.example.android.actionbarcompat.shareactionprovider/
MainActivity.java 77 // Inflate the menu resource
78 getMenuInflater().inflate(R.menu.main_menu, menu);
122 // The view we need to inflate changes based on the type of content
125 // Inflate item layout for text
127 .inflate(R.layout.item_text, container, false);
137 // Inflate item layout for images
139 .inflate(R.layout.item_image, container, false);
  /frameworks/base/core/java/android/view/
ViewStub.java 30 * 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 when this StubbedView becomes visible or invisibl
235 inflate(); method
247 public View inflate() { method in class:ViewStub
    [all...]
  /packages/apps/Camera/src/com/android/camera/
OnScreenHint.java 106 LayoutInflater inflate = local
109 View v = inflate.inflate(R.layout.on_screen_hint, null);
  /packages/apps/Camera2/src/com/android/camera/
OnScreenHint.java 108 LayoutInflater inflate = local
111 View v = inflate.inflate(R.layout.on_screen_hint, null);
  /packages/apps/Contacts/src/com/android/contacts/widget/
PinnedHeaderListDemoActivity.java 58 return inflater.inflate(R.layout.list_section, null);
71 return inflater.inflate(android.R.layout.simple_list_item_1, null);
83 View view = inflater.inflate(R.layout.list_section, parent, false);
  /packages/apps/LegacyCamera/src/com/android/camera/
OnScreenHint.java 109 LayoutInflater inflate = local
112 View v = inflate.inflate(R.layout.on_screen_hint, null);
  /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);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ExternalSource.java 94 public void inflate(Context context, int inflateLevel) { method in class:ExternalSource
104 inflate(context, parser); method
115 * Inflate this {@link ContactsSource} from the given parser. This may only
118 protected void inflate(Context context, XmlPullParser parser) { method in class:ExternalSource
158 // Inflate a specific column as summary when requested
169 // Inflate social summary when requested
174 // Inflate specific column as summary
  /developers/samples/android/ui/holo/BorderlessButtons/BorderlessButtonsSample/src/main/java/com/example/android/borderlessbuttons/
MainActivity.java 82 convertView = getLayoutInflater().inflate(R.layout.list_item, container, false);
114 getMenuInflater().inflate(R.menu.main, menu);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentHideShow.java 75 View v = inflater.inflate(R.layout.labeled_text_edit, container, false);
101 View v = inflater.inflate(R.layout.labeled_text_edit, container, false);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentHideShowSupport.java 76 View v = inflater.inflate(R.layout.labeled_text_edit, container, false);
102 View v = inflater.inflate(R.layout.labeled_text_edit, container, false);
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiDirectServicesList.java 33 return inflater.inflate(R.layout.devices_list, container, false);
70 v = vi.inflate(android.R.layout.simple_list_item_2, null);
  /development/samples/browseable/BorderlessButtons/src/com.example.android.borderlessbuttons/
MainActivity.java 82 convertView = getLayoutInflater().inflate(R.layout.list_item, container, false);
114 getMenuInflater().inflate(R.menu.main, menu);

Completed in 1282 milliseconds

1 2 3 45 6 7 8 91011>>