Searched refs:mPresentation (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardDisplayManager.java42 Presentation mPresentation; field in class:KeyguardDisplayManager
95 mPresentation = null;
100 Presentation originalPresentation = mPresentation;
108 if (mPresentation != null && mPresentation.getDisplay() != presentationDisplay) {
109 if (DEBUG) Slog.v(TAG, "Display gone: " + mPresentation.getDisplay());
110 mPresentation.dismiss();
111 mPresentation = null;
114 if (mPresentation == null && presentationDisplay != null) {
116 mPresentation
[all...]
/frameworks/base/core/java/android/service/autofill/
H A DCustomDescription.java90 private final RemoteViews mPresentation; field in class:CustomDescription
95 mPresentation = builder.mPresentation;
103 return mPresentation;
122 private final RemoteViews mPresentation; field in class:CustomDescription.Builder
148 mPresentation = Preconditions.checkNotNull(parentPresentation);
292 .append(mPresentation)
310 dest.writeParcelable(mPresentation, flags);
311 if (mPresentation == null) return;
H A DDataset.java102 private final RemoteViews mPresentation; field in class:Dataset
111 mPresentation = builder.mPresentation;
129 return customPresentation != null ? customPresentation : mPresentation;
172 if (mPresentation != null) {
201 private RemoteViews mPresentation; field in class:Dataset.Builder
213 mPresentation = presentation;
389 Preconditions.checkState(mPresentation != null,
493 parcel.writeParcelable(mPresentation, flags);
H A DFillResponse.java77 private final @Nullable RemoteViews mPresentation; field in class:FillResponse
92 mPresentation = builder.mPresentation;
121 return mPresentation;
191 private RemoteViews mPresentation; field in class:FillResponse.Builder
280 mPresentation = presentation;
580 if (mPresentation != null) {
621 parcel.writeParcelable(mPresentation, flags);
/frameworks/support/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
H A DLocalPlayer.java393 private DemoPresentation mPresentation; field in class:LocalPlayer.SurfaceViewPlayer
436 if (mPresentation != null && mPresentation.getDisplay() != presentationDisplay) {
439 mPresentation.dismiss();
440 mPresentation = null;
444 if (mPresentation == null && presentationDisplay != null) {
446 mPresentation = new DemoPresentation(getContext(), presentationDisplay);
447 mPresentation.setOnDismissListener(mOnDismissListener);
449 mPresentation.show();
453 mPresentation
[all...]
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
H A DLocalPlayer.java393 private DemoPresentation mPresentation; field in class:LocalPlayer.SurfaceViewPlayer
436 if (mPresentation != null && mPresentation.getDisplay() != presentationDisplay) {
439 mPresentation.dismiss();
440 mPresentation = null;
444 if (mPresentation == null && presentationDisplay != null) {
446 mPresentation = new DemoPresentation(getContext(), presentationDisplay);
447 mPresentation.setOnDismissListener(mOnDismissListener);
449 mPresentation.show();
453 mPresentation
[all...]
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
H A DSourceActivity.java237 private DemoPresentation mPresentation; field in class:SourceActivity.Presenter
243 mPresentation = new DemoPresentation(SourceActivity.this, display, mLogger);
244 mPresentation.show();
251 if (mPresentation != null) {
252 mPresentation.dismiss();
253 mPresentation = null;

Completed in 582 milliseconds