Searched defs:full (Results 1 - 15 of 15) 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.java1186 public void onFullScreenChanged(boolean full) { argument
1188 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.java255 protected void onFullScreenChanged(boolean full) { argument
256 if (full) {
261 super.onFullScreenChanged(full);
262 mCurrentModule.onFullScreenChanged(full);
H A DCameraScreenNail.java116 public void setFullScreen(boolean full) { argument
118 mFullScreen = full;
355 // Consume the frame. If the buffers are full,
378 // Skip the animation if no longer in full screen mode
H A DActivityBase.java466 protected void onFullScreenChanged(boolean full) { argument
467 if (mShowCameraAppView == full) return;
468 mShowCameraAppView = full;
585 // This is used to notify that the screen nail will be drawn in full screen
588 public void onFullScreenChanged(boolean full) { argument
589 ActivityBase.this.onFullScreenChanged(full);
H A DPanoramaModule.java1251 public void onFullScreenChanged(boolean full) { argument
H A DPhotoModule.java959 // Only animate when in full screen capture mode
1105 // Only animate when in full screen capture mode
1118 // is full then ignore.
1181 public void onFullScreenChanged(boolean full) { argument
1183 mFaceView.setBlockDraw(!full);
1186 dismissPopup(false, full);
1189 mGestures.setEnabled(full);
1193 mRenderOverlay.setVisibility(full ? View.VISIBLE : View.GONE);
1196 mPieRenderer.setBlockFocus(!full);
1198 setShowMenu(full);
[all...]
H A DVideoModule.java2521 public void onFullScreenChanged(boolean full) { argument
2523 mGestures.setEnabled(full);
2526 dismissPopup(false, full);
2530 mRenderOverlay.setVisibility(full ? View.VISIBLE : View.GONE);
2532 setShowMenu(full);
2535 mBlocker.setVisibility(full ? View.VISIBLE : View.GONE);
2539 ((CameraScreenNail) mActivity.mCameraScreenNail).setFullScreen(full);
2543 if (full) {
/packages/apps/Camera2/src/com/android/camera/
H A DMediaSaveService.java52 public void onQueueStatus(boolean full); argument
92 Log.e(TAG, "Cannot add image when the queue is full");
H A DPhotoModule.java857 // Only animate when in full screen capture mode
868 // is full then ignore.
1906 public void onQueueStatus(boolean full) { argument
1907 mUI.enableShutter(!full);
/packages/apps/Settings/src/com/android/settings/
H A DUtils.java511 public static String getMeProfileName(Context context, boolean full) { argument
512 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.java411 private void saveQueue(boolean full) { argument
418 if (full) {
425 // (saving the full state takes about 40 ms under no-load conditions
1098 * @param path The full path of the file to be opened.
1276 If all tracks have already been played, pick from the full set, but
1366 //pick from full set
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPhotoView.java80 // Set this to true if we need the model to provide full images.
125 public void onFullScreenChanged(boolean full); argument
1403 // 2. The camera is shown in full screen.
1431 // Check if the camera preview occupies the full screen.
1432 boolean full = !mFilmMode && mPictures.get(0).isCamera()
1435 if (mFirst || full != mFullScreenCamera) {
1436 mFullScreenCamera = full;
1438 mListener.onFullScreenChanged(full);
1439 if (full) mHandler.sendEmptyMessage(MSG_UNDO_BAR_FULL_CAMERA);

Completed in 2413 milliseconds