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

1 2 3 4 5 67 8 9

  /external/zlib/
zconf.h 81 # define inflate z_inflate macro
231 The memory requirements for inflate are (in bytes) 1 << windowBits
  /frameworks/base/core/java/android/widget/
ActivityChooserView.java 220 inflater.inflate(R.layout.activity_chooser_view, this, true);
694 convertView = LayoutInflater.from(getContext()).inflate(
704 convertView = LayoutInflater.from(getContext()).inflate(
DatePicker.java 170 inflater.inflate(layoutResourceId, this, true);
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuItemImpl.java 566 setActionView(inflater.inflate(resId, new LinearLayout(context), false));
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContextView.java 178 inflater.inflate(R.layout.action_bar_title_item, this);
205 mClose = inflater.inflate(R.layout.action_mode_close_item, this, false);
  /frameworks/base/policy/src/com/android/internal/policy/impl/
SimPukUnlockScreen.java 84 inflater.inflate(
87 inflater.inflate(
PhoneWindow.java 251 mLayoutInflater.inflate(layoutResID, mContentParent);
309 * Return a LayoutInflater instance that can be used to inflate XML view layout
    [all...]
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
TestService.java 656 inf.inflate(R.xml.simple);
674 inf.inflate(R.xml.simple_large);
683 super("LayoutInflater", "Inflate layout resource");
696 inf.inflate(R.layout.small_layout, null);
705 super("LayoutInflaterLarge", "Inflate large layout resource");
718 inf.inflate(R.layout.large_layout, null);
727 super("LayoutInflaterView", "Inflate layout with 50 View objects");
740 inf.inflate(R.layout.view_layout, null);
749 super("LayoutInflaterButton", "Inflate layout with 50 Button objects");
762 inf.inflate(R.layout.button_layout, null)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksPage.java 267 inflater.inflate(R.menu.bookmarkscontext, menu);
375 mRoot = inflater.inflate(R.layout.bookmarks, container, false);
612 LinearLayout view = (LinearLayout) inflater.inflate(
TabBar.java 105 factory.inflate(R.layout.tab_bar, this);
275 mTabContent = inflater.inflate(R.layout.tab_title, this, true);
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventFragment.java 435 view = inflater.inflate(R.layout.edit_event_single_column, null);
437 view = inflater.inflate(R.layout.edit_event, null);
443 View actionBarButtons = inflater.inflate(R.layout.edit_event_custom_actionbar,
495 inflater.inflate(R.menu.edit_event_title_bar, menu);
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageViewFragment.java 243 inflater.inflate(R.menu.message_view_fragment_option, menu);
429 popup.getMenuInflater().inflate(R.menu.message_header_overflow_menu,
  /packages/apps/Phone/src/com/android/phone/
CallCard.java 120 // Inflate the contents of this CallCard, and add it (to ourself) as a child.
122 inflater.inflate(
    [all...]
InCallTouchUi.java 135 // Inflate our contents, and add it (to ourself) as a child.
137 inflater.inflate(
685 mAudioModePopup.getMenuInflater().inflate(R.menu.incall_audio_mode_menu,
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
RunningProcessesView.java 282 View v = mInflater.inflate(R.layout.running_processes_item, parent, false);
400 inflater.inflate(R.layout.running_processes_view, this);
  /packages/apps/Stk/src/com/android/stk/
StkAppService.java 614 LayoutInflater inflate = (LayoutInflater) mContext local
616 View v = inflate.inflate(R.layout.stk_event_msg, null);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
ContactHeaderWidget.java 172 inflater.inflate(R.layout.contact_header, this);
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadList.java 288 inflater.inflate(R.menu.download_menu, menu);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
zconf.h 68 # define inflate z_inflate macro
222 The memory requirements for inflate are (in bytes) 1 << windowBits
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DrawableTest.java 594 method = "inflate",
609 mockDrawable.inflate(mResources, parser, attrs);
LayerDrawableTest.java 84 method = "inflate",
88 @ToBeFixed(bug = "1695243", explanation = "the javadoc for inflate is incomplete." +
97 layerDrawable.inflate(mContext.getResources(), parser, attrs);
113 layerDrawable.inflate(mContext.getResources(), parser, attrs);
119 layerDrawable.inflate(mContext.getResources(), parser, attrs);
126 layerDrawable.inflate(null, parser, attrs);
132 layerDrawable.inflate(mContext.getResources(), null, attrs);
138 layerDrawable.inflate(mContext.getResources(), parser, null);
    [all...]
ScaleDrawableTest.java 505 method = "inflate",
509 @ToBeFixed(bug = "1695243", explanation = "the javadoc for inflate is incomplete." +
519 scaleDrawable.inflate(res, parser, attrs);
528 scaleDrawable.inflate(res, parser, attrs);
534 scaleDrawable.inflate(null, parser, attrs);
540 scaleDrawable.inflate(res, null, attrs);
546 scaleDrawable.inflate(res, parser, null);
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 296 mWindow.addContentView(inflater.inflate(R.layout.windowstub_addlayout, null), lp);
645 final LayoutInflater inflate = mActivity.getLayoutInflater(); local
658 setView = inflate.inflate(R.layout.windowstub_addlayout, null);
665 setView = inflate.inflate(R.layout.windowstub_layout, null);
    [all...]
  /frameworks/base/core/java/android/preference/
Preference.java 459 * {@link PreferenceActivity}. The default behavior is to inflate the main
474 final View layout = layoutInflater.inflate(mLayoutResId, parent, false);
480 layoutInflater.inflate(mWidgetLayoutResId, widgetFrame);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java 100 * through the {@link Bridge} API to inflate the layout. Further actions and rendering can then
206 public Result inflate() { method in class:RenderSessionImpl
321 View view = mInflater.inflate(mBlockParser, mContentRoot);
331 // post-inflate process. For now this supports TabHost/TabWidget
629 // inflate the child without adding it to the root since we want to control where it'll
632 final View child = mInflater.inflate(blockParser, parentView, false /*attachToRoot*/);
    [all...]

Completed in 819 milliseconds

1 2 3 4 5 67 8 9