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

  /developers/samples/android/media/BasicMediaRouter/BasicMediaRouterSample/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...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardDisplayManager.java 34 Presentation mPresentation;
88 mPresentation = null;
100 if (mPresentation != null && mPresentation.getDisplay() != presentationDisplay) {
101 if (DEBUG) Slog.v(TAG, "Display gone: " + mPresentation.getDisplay());
102 mPresentation.dismiss();
103 mPresentation = null;
106 if (mPresentation == null && presentationDisplay != null) {
108 mPresentation = new KeyguardPresentation(mContext, presentationDisplay);
109 mPresentation.setOnDismissListener(mOnDismissListener)
    [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...]
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 76 private ProjectedPresentation mPresentation;
681 assertNotNull(mPresentation);
685 return (mPresentation.button1 != null) && (mPresentation.button2 != null) &&
686 (mPresentation.button3 != null) && mPresentation.ready;
689 assertTrue(mPresentation.button1.isFocusable() && mPresentation.button2.isFocusable() &&
690 mPresentation.button3.isFocusable());
700 mPresentation.button1.setOnFocusChangeListener(listener)
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
LocalPlayer.java 383 private DemoPresentation mPresentation;
408 if (mPresentation != null) {
410 mPresentation.dismiss();
411 mPresentation = null;
429 if (mPresentation != null && mPresentation.getDisplay() != presentationDisplay) {
432 mPresentation.dismiss();
433 mPresentation = null;
437 if (mPresentation == null && presentationDisplay != null) {
439 mPresentation = new DemoPresentation(getContext(), 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/tests/tests/media/src/android/media/cts/
EncodeVirtualDisplayWithCompositionTest.java 715 private TestPresentation mPresentation;
750 mPresentation = new TestPresentation(getContext(),
752 mPresentation.show();
761 mPresentation.dismiss();
770 mPresentation.doRendering();
    [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 587 milliseconds