Lines Matching refs:hostView

1219             AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {  in completeAddAppWidget()  argument
1282 if (hostView == null) { in completeAddAppWidget()
1284 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo); in completeAddAppWidget()
1285 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo); in completeAddAppWidget()
1288 launcherInfo.hostView = hostView; in completeAddAppWidget()
1291 launcherInfo.hostView.setTag(launcherInfo); in completeAddAppWidget()
1292 launcherInfo.hostView.setVisibility(View.VISIBLE); in completeAddAppWidget()
1295 mWorkspace.addInScreen(launcherInfo.hostView, container, screen, cellXY[0], cellXY[1], in completeAddAppWidget()
1298 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo); in completeAddAppWidget()
1448 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) { in addWidgetToAutoAdvanceIfNeeded() argument
1450 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId); in addWidgetToAutoAdvanceIfNeeded()
1452 mWidgetsToAdvance.put(hostView, appWidgetInfo); in addWidgetToAutoAdvanceIfNeeded()
1458 void removeWidgetToAutoAdvance(View hostView) { in removeWidgetToAutoAdvance() argument
1459 if (mWidgetsToAdvance.containsKey(hostView)) { in removeWidgetToAutoAdvance()
1460 mWidgetsToAdvance.remove(hostView); in removeWidgetToAutoAdvance()
1466 removeWidgetToAutoAdvance(launcherInfo.hostView); in removeAppWidget()
1467 launcherInfo.hostView = null; in removeAppWidget()
1878 AppWidgetHostView hostView = info.boundWidget; in addAppWidgetFromDrop() local
1880 if (hostView != null) { in addAppWidgetFromDrop()
1881 appWidgetId = hostView.getAppWidgetId(); in addAppWidgetFromDrop()
1882 addAppWidgetImpl(appWidgetId, info, hostView, info.info); in addAppWidgetFromDrop()
3584 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo); in bindAppWidget()
3586 item.hostView.setTag(item); in bindAppWidget()
3589 workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX, in bindAppWidget()
3591 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo); in bindAppWidget()