Searched defs:full (Results 1 - 13 of 13) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DAppBridge.java47 // This is used to notify that the screen nail will be drawn in full screen
49 public abstract void onFullScreenChanged(boolean full); argument
H A DPhotoPage.java1181 public void onFullScreenChanged(boolean full) { argument
1183 MSG_ON_FULL_SCREEN_CHANGED, full ? 1 : 0, 0);
/packages/apps/Camera/src/com/android/camera/
H A DCameraModule.java29 public void onFullScreenChanged(boolean full); argument
H A DCameraActivity.java295 protected void onFullScreenChanged(boolean full) { argument
296 if (full) {
301 super.onFullScreenChanged(full);
302 mCurrentModule.onFullScreenChanged(full);
H A DCameraScreenNail.java99 public void setFullScreen(boolean full) { argument
101 mFullScreen = full;
315 // Consume the frame. If the buffers are full,
338 // Skip the animation if no longer in full screen mode
H A DActivityBase.java465 protected void onFullScreenChanged(boolean full) { argument
466 if (mShowCameraAppView == full) return;
467 mShowCameraAppView = full;
584 // This is used to notify that the screen nail will be drawn in full screen
587 public void onFullScreenChanged(boolean full) { argument
588 ActivityBase.this.onFullScreenChanged(full);
H A DPanoramaModule.java1197 public void onFullScreenChanged(boolean full) { argument
H A DPhotoModule.java930 // Only animate when in full screen capture mode
1256 // Only animate when in full screen capture mode
1333 public void onFullScreenChanged(boolean full) { argument
1335 mFaceView.setBlockDraw(!full);
1338 dismissPopup(false, full);
1341 mGestures.setEnabled(full);
1345 mRenderOverlay.setVisibility(full ? View.VISIBLE : View.GONE);
1348 mPieRenderer.setBlockFocus(!full);
1350 setShowMenu(full);
1352 mBlocker.setVisibility(full
[all...]
H A DVideoModule.java2509 public void onFullScreenChanged(boolean full) { argument
2511 mGestures.setEnabled(full);
2514 dismissPopup(false, full);
2518 mRenderOverlay.setVisibility(full ? View.VISIBLE : View.GONE);
2520 setShowMenu(full);
2523 mBlocker.setVisibility(full ? View.VISIBLE : View.GONE);
2527 ((CameraScreenNail) mActivity.mCameraScreenNail).setFullScreen(full);
2531 if (full) {
/packages/apps/Settings/src/com/android/settings/
H A DUtils.java502 public static String getMeProfileName(Context context, boolean full) { argument
503 if (full) {
/packages/experimental/RpcPerformance/src/com/android/rpc_performance/
H A DProviderPerfActivity.java557 private float strictModeLoop(boolean full) { argument
568 if (full) {
578 if (full) {
/packages/apps/Music/src/com/android/music/
H A DMediaPlaybackService.java405 private void saveQueue(boolean full) { argument
412 if (full) {
419 // (saving the full state takes about 40 ms under no-load conditions
1092 * @param path The full path of the file to be opened.
1270 If all tracks have already been played, pick from the full set, but
1360 //pick from full set
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPhotoView.java74 // Set this to true if we need the model to provide full images.
119 public void onFullScreenChanged(boolean full); argument
1383 // 2. The camera is shown in full screen.
1406 // Check if the camera preview occupies the full screen.
1407 boolean full = !mFilmMode && mPictures.get(0).isCamera()
1410 if (mFirst || full != mFullScreenCamera) {
1411 mFullScreenCamera = full;
1413 mListener.onFullScreenChanged(full);
1414 if (full) mHandler.sendEmptyMessage(MSG_UNDO_BAR_FULL_CAMERA);

Completed in 265 milliseconds