HomeSort by relevance Sort by last modified time
    Searched defs:hostView (Results 1 - 25 of 26) sorted by null

1 2

  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAppWidgetHost.java 47 AppWidgetHostView hostView = new AppWidgetHostView(context);
48 hostView.setAppWidget(appWidgetId, appWidget);
49 Shadows.shadowOf(hostView).setHost(realAppWidgetHost);
50 return hostView;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAppWidgetHostTest.java 42 AppWidgetHostView hostView = appWidgetHost.createView(context, 0, null);
43 assertNotNull(hostView);
48 AppWidgetHostView hostView = appWidgetHost.createView(context, 0, null);
49 assertThat(hostView.getContext()).isSameAs(context);
54 AppWidgetHostView hostView = appWidgetHost.createView(context, 765, null);
55 assertThat(hostView.getAppWidgetId()).isEqualTo(765);
61 AppWidgetHostView hostView = appWidgetHost.createView(context, 0, info);
62 assertThat(hostView.getAppWidgetInfo()).isSameAs(info);
67 AppWidgetHostView hostView = appWidgetHost.createView(context, 0, null);
68 assertThat(shadowOf(hostView).getHost()).isSameAs(appWidgetHost)
    [all...]
  /frameworks/support/transition/src/main/java/androidx/transition/
ViewOverlayApi14.java 47 ViewOverlayApi14(Context context, ViewGroup hostView, View requestingView) {
48 mOverlayViewGroup = new OverlayViewGroup(context, hostView, requestingView, this);
156 OverlayViewGroup(Context context, ViewGroup hostView, View requestingView,
159 mHostView = hostView;
161 setRight(hostView.getWidth());
162 setBottom(hostView.getHeight());
163 hostView.addView(this);
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherAppWidgetInfo.java 52 AppWidgetHostView hostView = null;
85 AppWidgetResizeFrame.updateWidgetSizeRanges(hostView, launcher, spanX, spanY);
97 hostView = null;
Launcher.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
SecondaryDropTarget.java 207 AppWidgetHostView hostView = (AppWidgetHostView) view;
208 AppWidgetProviderInfo widgetInfo = hostView.getAppWidgetInfo();
216 return hostView.getAppWidgetId();
Workspace.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollAlgorithm.java 255 ViewGroup hostView = resultState.getHostView();
256 int childCount = hostView.getChildCount();
271 ExpandableView v = (ExpandableView) hostView.getChildAt(i);
  /cts/tests/tests/appwidget/src/android/appwidget/cts/
AppWidgetTest.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationViewFragment.java     [all...]
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v16-3.1.1.jar 
shadows-core-v17-3.1.1.jar 
shadows-core-v18-3.1.1.jar 
shadows-core-v19-3.1.1.jar 
shadows-core-v21-3.1.1.jar 
shadows-core-v22-3.1.1.jar 
shadows-core-v23-3.1.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
framework-3.4.2.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
shadows-framework-3.5.1.jar 

Completed in 249 milliseconds

1 2