Searched defs:container (Results 101 - 110 of 110) sorted by relevance

12345

/packages/apps/Email/src/com/android/email/activity/
H A DMessageListFragment.java363 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
362 onCreateView( LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) argument
H A DMessageViewFragmentBase.java279 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
283 final View view = inflater.inflate(R.layout.message_view_fragment, container, false);
1943 // Force redraw of the container.
278 onCreateView( LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) argument
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherModel.java252 * <container, screen, cellX, cellY>
254 static void addOrMoveItemInDatabase(Context context, ItemInfo item, long container, argument
256 if (item.container == ItemInfo.NO_ID) {
258 addItemToDatabase(context, item, container, screen, cellX, cellY, false);
261 moveItemInDatabase(context, item, container, screen, cellX, cellY);
277 modelShortcut.container == shortcut.container &&
336 if (item.container != LauncherSettings.Favorites.CONTAINER_DESKTOP &&
337 item.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
339 if (!sBgFolders.containsKey(item.container)) {
378 moveItemInDatabase(Context context, final ItemInfo item, final long container, final int screen, final int cellX, final int cellY) argument
410 modifyItemInDatabase(Context context, final ItemInfo item, final long container, final int screen, final int cellX, final int cellY, final int spanX, final int spanY) argument
558 addItemToDatabase(Context context, final ItemInfo item, final long container, final int screen, final int cellX, final int cellY, final boolean notify) argument
628 getCellLayoutChildId( long container, int screen, int localCellX, int localCellY, int spanX, int spanY) argument
2277 addShortcut(Context context, Intent data, long container, int screen, int cellX, int cellY, boolean notify) argument
[all...]
H A DCellLayout.java3310 long container; field in class:CellLayout.CellInfo
H A DLauncher.java328 long container; field in class:Launcher.PendingAddArguments
592 completeAddApplication(args.intent, args.container, args.screen, args.cellX,
599 completeAddShortcut(args.intent, args.container, args.screen, args.cellX,
605 completeAddAppWidget(appWidgetId, args.container, args.screen, null, null);
614 // return to the workspace. Clearing mAddInfo.container here fixes this issue
656 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
660 args.container = mPendingAddInfo.container;
691 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
892 mPendingAddInfo.container
1011 completeAddApplication(Intent data, long container, int screen, int cellX, int cellY) argument
1043 completeAddShortcut(Intent data, long container, int screen, int cellX, int cellY) argument
1128 completeAddAppWidget(final int appWidgetId, long container, int screen, AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) argument
1723 processShortcutFromDrop(ComponentName componentName, long container, int screen, int[] cell, int[] loc) argument
1748 addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen, int[] cell, int[] span, int[] loc) argument
1821 addFolder(CellLayout layout, long container, final int screen, int cellX, int cellY) argument
2347 getCellLayout(long container, int screen) argument
3067 invalidatePressedFocusedStates(View container, View button) argument
[all...]
H A DWorkspace.java491 void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY) { argument
492 addInScreen(child, container, screen, x, y, spanX, spanY, false);
507 void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY, argument
509 if (container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
518 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
562 int childId = LauncherModel.getCellLayoutChildId(container, screen, x, y, spanX, spanY);
1940 void addApplicationShortcut(ShortcutInfo info, CellLayout target, long container, int screen, argument
1946 addInScreen(view, container, screen, cellXY[0], cellXY[1], 1, 1, insertAtFirst);
1947 LauncherModel.addOrMoveItemInDatabase(mLauncher, info, container, screen, cellXY[0],
2087 boolean createUserFolderIfNecessary(View newView, long container, CellLayou argument
3440 dispatchRestoreInstanceState(SparseArray<Parcelable> container) argument
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DDataUsageSummary.java293 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
297 final View view = inflater.inflate(R.layout.data_usage_summary, container, false);
313 // on parent container for inset.
324 prepareCustomPreferencesList(container, view, mListView, true);
/packages/apps/Settings/src/com/android/settings/applications/
H A DInstalledAppDetails.java428 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
429 final View view = inflater.inflate(R.layout.installed_app_details, container, false);
430 Utils.prepareCustomPreferencesList(container, view, view, false);
427 onCreateView( LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) argument
H A DManageApplications.java338 Log.w(TAG, "Problem in container service", e);
358 Log.w(TAG, "Problem in container service", e);
471 public Object instantiateItem(ViewGroup container, int position) { argument
474 container.addView(root);
479 public void destroyItem(ViewGroup container, int position, Object object) { argument
480 container.removeView((View)object);
876 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { argument
881 container, false);
882 mContentContainer = container;
894 if (container instanceo
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DEventInfoFragment.java676 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
689 mView = inflater.inflate(R.layout.event_info_dialog, container, false);
691 mView = inflater.inflate(R.layout.event_info, container, false);

Completed in 1407 milliseconds

12345