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

  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewCallbacks.java 26 public void onFullScreenChanged(boolean fullScreen);
  /packages/apps/Camera2/src/com/android/camera/data/
InProgressDataWrapper.java 104 public void onFullScreen(boolean fullScreen) {
105 mLocalData.onFullScreen(fullScreen);
LocalData.java 125 void onFullScreen(boolean fullScreen);
SimpleViewData.java 150 public void onFullScreen(boolean fullScreen) {
LocalMediaData.java 195 public void onFullScreen(boolean fullScreen) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderVideo.cpp 276 RenderFullScreen* fullScreen = parent->isRenderFullScreen() ? toRenderFullScreen(parent) : 0;
277 if (!fullScreen)
280 return fullScreen->placeholder();
  /frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
PhotoViewFragment.java 136 /** Whether or not we can display the thumbnail at fullscreen size */
294 // FLAG: If we are displaying thumbnails at fullscreen size, then we
295 // could defer the loading of the fullscreen image until the thumbnail
464 public void onFullScreenChanged(boolean fullScreen) {
523 final boolean fullScreen = mCallback == null ? false : mCallback.isFragmentFullScreen(this);
524 setFullScreen(fullScreen);
530 public void setFullScreen(boolean fullScreen) {
531 mFullScreen = fullScreen;
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
SDL_epocvideo.cpp 664 SDL_Rect fullScreen;
665 fullScreen.x = 0;
666 fullScreen.y = 0;
667 fullScreen.w = _this->screen->w;
668 fullScreen.h = _this->screen->h;
669 EPOC_DirectUpdate(_this, 1, &fullScreen);
    [all...]
  /frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
PhotoViewActivity.java 82 "com.google.android.apps.plus.PhotoViewFragment.FULLSCREEN";
124 /** The temporary image so that we can quickly scale up the fullscreen thumbnail */
310 // If we are in fullscreen mode, and the default is not full screen, then
558 protected void setFullScreen(boolean fullScreen, boolean setDelayedRunnable) {
559 final boolean fullScreenChanged = (fullScreen != mFullScreen);
560 mFullScreen = fullScreen;
598 // we can't go into fullscreen mode. The issue is that the
599 // activity that invoked this will not be in fullscreen, so
653 // Restart the timer to return to fullscreen.
    [all...]
  /frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
PhotoViewActivity.java 81 "com.google.android.apps.plus.PhotoViewFragment.FULLSCREEN";
123 /** The temporary image so that we can quickly scale up the fullscreen thumbnail */
309 // If we are in fullscreen mode, and the default is not full screen, then
557 protected void setFullScreen(boolean fullScreen, boolean setDelayedRunnable) {
558 final boolean fullScreenChanged = (fullScreen != mFullScreen);
559 mFullScreen = fullScreen;
597 // we can't go into fullscreen mode. The issue is that the
598 // activity that invoked this will not be in fullscreen, so
652 // Restart the timer to return to fullscreen.
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 521 * fullScreen. If this is not desirable, enable / disable image transformations manually.
523 public void setFullScreen(boolean fullScreen, boolean animate) {
524 if (fullScreen != mFullScreen) {
525 mFullScreen = fullScreen;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelector.cpp 333 DEFINE_STATIC_LOCAL(AtomicString, fullScreen, ("-webkit-full-screen", AtomicString::ConstructFromLiteral));
419 nameToPseudoType->set(fullScreen.impl(), CSSSelector::PseudoFullScreen);
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodManager.java 649 public void setFullscreenMode(boolean fullScreen) {
650 mFullscreenMode = fullScreen;
673 * in fullscreen mode. Return true if it is fullscreen, entirely covering
    [all...]