HomeSort by relevance Sort by last modified time
    Searched refs:presentationDisplay (Results 1 - 4 of 4) sorted by null

  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardDisplayManager.java 98 Display presentationDisplay = useDisplay ? route.getPresentationDisplay() : null;
100 if (mPresentation != null && mPresentation.getDisplay() != presentationDisplay) {
106 if (mPresentation == null && presentationDisplay != null) {
107 if (DEBUG) Slog.i(TAG, "Keyguard enabled on display: " + presentationDisplay);
108 mPresentation = new KeyguardPresentation(mContext, presentationDisplay);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PresentationWithMediaRouterActivity.java 162 Display presentationDisplay = route != null ? route.getPresentationDisplay() : null;
165 if (mPresentation != null && mPresentation.getDisplay() != presentationDisplay) {
173 if (mPresentation == null && presentationDisplay != null) {
174 Log.i(TAG, "Showing presentation on display: " + presentationDisplay);
175 mPresentation = new DemoPresentation(this, presentationDisplay);
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
LocalPlayer.java 426 Display presentationDisplay = mRoute != null ? mRoute.getPresentationDisplay() : null;
429 if (mPresentation != null && mPresentation.getDisplay() != presentationDisplay) {
437 if (mPresentation == null && presentationDisplay != null) {
438 Log.i(TAG, "Showing presentation on display: " + presentationDisplay);
439 mPresentation = new DemoPresentation(getContext(), presentationDisplay);
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
SystemMediaRouteProvider.java 752 Display presentationDisplay =
754 if (presentationDisplay != null) {
755 builder.setPresentationDisplayId(presentationDisplay.getDisplayId());
    [all...]

Completed in 3301 milliseconds