HomeSort by relevance Sort by last modified time
    Searched defs:mPresentation (Results 1 - 22 of 22) sorted by null

  /cts/tests/tests/media/src/android/media/cts/
RemoteVirtualDisplayService.java 49 private VirtualDisplayPresentation mPresentation;
89 if (mPresentation != null) {
90 mPresentation.dismissPresentation();
91 mPresentation.destroyVirtualDisplay();
92 mPresentation = null;
98 mPresentation = new VirtualDisplayPresentation(this, surface, w, h);
99 mPresentation.createVirtualDisplay();
100 mPresentation.createPresentation();
107 mPresentation.doRendering(color);
117 private TestPresentation mPresentation;
    [all...]
EncodeVirtualDisplayWithCompositionTest.java     [all...]
  /developers/build/prebuilts/gradle/BasicMediaRouter/Application/src/main/java/com/example/android/basicmediarouter/
MainActivity.java 62 private SamplePresentation mPresentation;
167 if (mPresentation != null && mPresentation.getDisplay() != selectedDisplay) {
168 mPresentation.dismiss();
169 mPresentation = null;
180 if (mPresentation == null && selectedDisplay != null) {
183 mPresentation = new SamplePresentation(this, selectedDisplay);
184 mPresentation.setOnDismissListener(mOnDismissListener);
189 mPresentation.show();
196 mPresentation = null
    [all...]
  /developers/samples/android/media/BasicMediaRouter/Application/src/main/java/com/example/android/basicmediarouter/
MainActivity.java 62 private SamplePresentation mPresentation;
167 if (mPresentation != null && mPresentation.getDisplay() != selectedDisplay) {
168 mPresentation.dismiss();
169 mPresentation = null;
180 if (mPresentation == null && selectedDisplay != null) {
183 mPresentation = new SamplePresentation(this, selectedDisplay);
184 mPresentation.setOnDismissListener(mOnDismissListener);
189 mPresentation.show();
196 mPresentation = null
    [all...]
  /development/samples/browseable/BasicMediaRouter/src/com.example.android.basicmediarouter/
MainActivity.java 62 private SamplePresentation mPresentation;
167 if (mPresentation != null && mPresentation.getDisplay() != selectedDisplay) {
168 mPresentation.dismiss();
169 mPresentation = null;
180 if (mPresentation == null && selectedDisplay != null) {
183 mPresentation = new SamplePresentation(this, selectedDisplay);
184 mPresentation.setOnDismissListener(mOnDismissListener);
189 mPresentation.show();
196 mPresentation = null
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PresentationWithMediaRouterActivity.java 71 private DemoPresentation mPresentation;
134 if (mPresentation != null) {
136 mPresentation.dismiss();
137 mPresentation = null;
165 if (mPresentation != null && mPresentation.getDisplay() != presentationDisplay) {
168 mPresentation.dismiss();
169 mPresentation = null;
173 if (mPresentation == null && presentationDisplay != null) {
175 mPresentation = new DemoPresentation(this, presentationDisplay)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardDisplayManager.java 42 Presentation mPresentation;
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 = new KeyguardPresentation(mContext, presentationDisplay
    [all...]
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
SourceActivity.java 237 private DemoPresentation mPresentation;
243 mPresentation = new DemoPresentation(SourceActivity.this, display, mLogger);
244 mPresentation.show();
251 if (mPresentation != null) {
252 mPresentation.dismiss();
253 mPresentation = null;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/
ProjectionService.java 87 mPresentation = createPresentation(viewType);
88 if (mPresentation == null) {
92 mPresentation.show();
103 if (mPresentation != null) {
104 mPresentation.dismiss();
105 mPresentation = null;
122 if (mPresentation != null) {
123 mPresentation.injectTouchEvent(event);
136 if (mPresentation != null) {
137 mPresentation.injectKeyEvent(event)
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
DatasetTest.java 44 private final RemoteViews mPresentation = mock(RemoteViews.class);
53 final Dataset.Builder builder = new Dataset.Builder(mPresentation);
72 assertThat(new Dataset.Builder(mPresentation).setValue(mId, mValue, (Pattern) null).build())
78 assertThat(new Dataset.Builder().setValue(mId, mValue, null, mPresentation).build())
104 builder.setValue(mId, mValue, mPresentation);
109 () -> builder.setValue(mId, mValue, mPresentation));
113 () -> builder.setValue(mId, mValue, mFilter, mPresentation));
FillResponseTest.java 55 @Mock private RemoteViews mPresentation;
64 () -> mBuilder.setAuthentication(null, mIntentSender, mPresentation));
68 mPresentation));
72 mPresentation));
75 () -> mBuilder.setAuthentication(mIds, null, mPresentation));
84 new FillResponse.Builder().setAuthentication(mIds, mIntentSender, mPresentation);
91 mIntentSender, mPresentation));
94 mIntentSender, mPresentation));
106 new FillResponse.Builder().setAuthentication(mIds, mIntentSender, mPresentation);
142 () -> mBuilder.setAuthentication(mIds, mIntentSender, mPresentation));
    [all...]
CannedFillResponse.java 76 private final RemoteViews mPresentation;
103 mPresentation = builder.mPresentation;
198 mAuthentication, mPresentation);
237 + ", hasPresentation=" + (mPresentation != null)
270 private RemoteViews mPresentation;
380 mPresentation = presentation;
497 private final RemoteViews mPresentation;
507 mPresentation = builder.mPresentation;
    [all...]
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
LocalPlayer.java 380 private DemoPresentation mPresentation;
405 if (mPresentation != null) {
407 mPresentation.dismiss();
408 mPresentation = null;
426 if (mPresentation != null && mPresentation.getDisplay() != presentationDisplay) {
429 mPresentation.dismiss();
430 mPresentation = null;
434 if (mPresentation == null && presentationDisplay != null) {
436 mPresentation = new DemoPresentation(getContext(), presentationDisplay)
    [all...]
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
LocalPlayer.java 380 private DemoPresentation mPresentation;
405 if (mPresentation != null) {
407 mPresentation.dismiss();
408 mPresentation = null;
426 if (mPresentation != null && mPresentation.getDisplay() != presentationDisplay) {
429 mPresentation.dismiss();
430 mPresentation = null;
434 if (mPresentation == null && presentationDisplay != null) {
436 mPresentation = new DemoPresentation(getContext(), presentationDisplay)
    [all...]
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
LocalPlayer.java 380 private DemoPresentation mPresentation;
405 if (mPresentation != null) {
407 mPresentation.dismiss();
408 mPresentation = null;
426 if (mPresentation != null && mPresentation.getDisplay() != presentationDisplay) {
429 mPresentation.dismiss();
430 mPresentation = null;
434 if (mPresentation == null && presentationDisplay != null) {
436 mPresentation = new DemoPresentation(getContext(), presentationDisplay)
    [all...]
  /frameworks/base/core/java/android/service/autofill/
CustomDescription.java 90 private final RemoteViews mPresentation;
95 mPresentation = builder.mPresentation;
103 return mPresentation;
122 private final RemoteViews mPresentation;
148 mPresentation = Preconditions.checkNotNull(parentPresentation);
292 .append(mPresentation)
310 dest.writeParcelable(mPresentation, flags);
311 if (mPresentation == null) return;
Dataset.java 102 private final RemoteViews mPresentation;
111 mPresentation = builder.mPresentation;
129 return customPresentation != null ? customPresentation : mPresentation;
172 if (mPresentation != null) {
201 private RemoteViews mPresentation;
213 mPresentation = presentation;
389 Preconditions.checkState(mPresentation != null,
493 parcel.writeParcelable(mPresentation, flags);
FillResponse.java 77 private final @Nullable RemoteViews mPresentation;
92 mPresentation = builder.mPresentation;
121 return mPresentation;
191 private RemoteViews mPresentation;
280 mPresentation = presentation;
580 if (mPresentation != null) {
621 parcel.writeParcelable(mPresentation, flags);
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
LocalPlayer.java 393 private DemoPresentation mPresentation;
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 = null
    [all...]
  /cts/tests/tests/display/src/android/display/cts/
DisplayTest.java 87 private TestPresentation mPresentation;
354 mPresentation = new TestPresentation(
357 mPresentation.show();
370 mPresentation.dismiss();
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 100 private ProjectedPresentation mPresentation;
666 assertNotNull(mPresentation);
668 PollingCheck.waitFor(() -> (mPresentation.button1 != null)
669 && (mPresentation.button2 != null) && (mPresentation.button3 != null)
670 && mPresentation.ready);
671 assertTrue(mPresentation.button1.isFocusable() && mPresentation.button2.isFocusable() &&
672 mPresentation.button3.isFocusable());
678 mPresentation.button1.setOnFocusChangeListener(listener)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java 101 private final PropertyEditorPresentation mPresentation =
111 return mPresentation;

Completed in 546 milliseconds