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

1 2 3 4 56 7 8 9

  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
zconf.h 20 # define inflate z_inflate macro
159 The memory requirements for inflate are (in bytes) 1 << windowBits
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/
zconf.h 20 # define inflate z_inflate macro
159 The memory requirements for inflate are (in bytes) 1 << windowBits
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/
zconf.h 20 # define inflate z_inflate macro
159 The memory requirements for inflate are (in bytes) 1 << windowBits
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/
zconf.h 20 # define inflate z_inflate macro
159 The memory requirements for inflate are (in bytes) 1 << windowBits
  /cts/tests/src/android/app/cts/
DialogStubActivity.java 267 final LayoutInflater inflate = getLayoutInflater(); local
268 final View customTitleViewCustom = inflate.inflate(R.layout.alertdialog_custom_title, null);
269 final View textEntryView = inflate.inflate(R.layout.alert_dialog_text_entry_2, null);
InstrumentationTestActivity.java 174 inflater.inflate(R.menu.browser, menu);
  /frameworks/base/core/java/android/view/
LayoutInflater.java 326 * which is not allowed by the {@link Filter}, the {@link #inflate(int, ViewGroup)} call will
341 * Inflate a new view hierarchy from the specified xml resource. Throws
351 public View inflate(int resource, ViewGroup root) { method in class:LayoutInflater
352 return inflate(resource, root, root != null);
356 * Inflate a new view hierarchy from the specified xml node. Throws
371 public View inflate(XmlPullParser parser, ViewGroup root) { method in class:LayoutInflater
372 return inflate(parser, root, root != null);
376 * Inflate a new view hierarchy from the specified xml resource. Throws
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
    [all...]
MenuInflater.java 81 * Inflate a menu hierarchy from the specified XML resource. Throws
86 * @param menu The Menu to inflate into. The items and submenus will be
89 public void inflate(int menuRes, Menu menu) { method in class:MenuInflater
  /frameworks/base/core/java/android/widget/
MediaController.java 233 LayoutInflater inflate = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE); local
234 mRoot = inflate.inflate(com.android.internal.R.layout.media_controller, null);
TimePicker.java 143 inflater.inflate(layoutResourceId, this, true);
ZoomButtonsController.java 263 inflater.inflate(com.android.internal.R.layout.zoom_container, container);
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedRotateDrawable.java 221 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:AnimatedRotateDrawable
RotateDrawable.java 202 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:RotateDrawable
  /frameworks/base/policy/src/com/android/internal/policy/impl/
LockScreen.java 335 inflater.inflate(R.layout.keyguard_screen_tab_unlock, this, true);
337 inflater.inflate(R.layout.keyguard_screen_tab_unlock_land, this, true);
PasswordUnlockScreen.java 98 layoutInflater.inflate(R.layout.keyguard_screen_password_portrait, this, true);
100 layoutInflater.inflate(R.layout.keyguard_screen_password_landscape, this, true);
SimUnlockScreen.java 84 inflater.inflate(R.layout.keyguard_screen_sim_pin_landscape, this, true);
86 inflater.inflate(R.layout.keyguard_screen_sim_pin_portrait, this, true);
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ui/
DirListActivity.java 170 View row = inflater.inflate(R.layout.dirlist_row, null);
241 inflater.inflate(R.menu.gui_menu, menu);
  /packages/apps/Browser/src/com/android/browser/
BrowserSnapshotPage.java 94 View view = inflater.inflate(R.layout.snapshots, container, false);
113 View item = inflater.inflate(R.layout.snapshot_item, mGrid, false);
160 inflater.inflate(R.menu.snapshots_context, menu);
TitleBar.java 74 factory.inflate(R.layout.title_bar, this);
86 mAutoLogin = (AutologinBar) stub.inflate();
96 mSnapshotBar = (SnapshotBar) stub.inflate();
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactSelectionActivity.java 180 .inflate(R.layout.custom_action_bar, null);
225 inflater.inflate(R.menu.contact_picker_options, menu);
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallLogFragment.java 158 View view = inflater.inflate(R.layout.call_log_fragment, container, false);
269 inflater.inflate(R.menu.call_log_options, menu);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupDetailFragment.java 149 mRootView = inflater.inflate(R.layout.group_detail_fragment, container, false);
387 inflater.inflate(R.menu.view_group, menu);
  /packages/apps/Contacts/src/com/android/contacts/model/
ExternalAccountType.java 125 inflate(context, parser); method
282 * Inflate this {@link AccountType} from the given parser. This may only
285 protected void inflate(Context context, XmlPullParser parser) throws DefinitionException { method in class:ExternalAccountType
373 // Inflate a specific column as summary when requested
384 // Inflate social summary when requested
389 // Inflate specific column as summary
  /packages/apps/DeskClock/src/com/android/deskclock/
DeskClock.java 547 inflater.inflate(R.menu.desk_clock_menu, menu);
  /development/apps/Development/src/com/android/development/
AccountsTester.java 102 // to reinflate it. We only inflate a new View when the convertView supplied
105 convertView = mInflater.inflate(R.layout.account_list_item, null);
234 inflater.inflate(R.layout.account_list_context_menu, menu);
289 final View view = LayoutInflater.from(this).inflate(R.layout.get_auth_token_view,
330 final View view = LayoutInflater.from(this).inflate(R.layout.get_features_view,

Completed in 794 milliseconds

1 2 3 4 56 7 8 9