/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
SnailItem.java | 22 import com.android.gallery3d.ui.ScreenNail; 26 // SnailItem is a MediaItem which can provide a ScreenNail. This is 32 private ScreenNail mScreenNail; 61 // provide a ScreenNail. 63 public ScreenNail getScreenNail() { 88 public void setScreenNail(ScreenNail screenNail) { 89 mScreenNail = screenNail;
|
MediaItem.java | 23 import com.android.gallery3d.ui.ScreenNail; 108 public ScreenNail getScreenNail() {
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
ScreenNail.java | 22 public interface ScreenNail { 27 // We do not need to draw this ScreenNail in this frame. 30 // This ScreenNail will not be used anymore. Release related resources.
|
TileImageViewAdapter.java | 33 protected ScreenNail mScreenNail; 51 // Caller is responsible to recycle the ScreenNail 53 ScreenNail screenNail, int width, int height) { 54 Utils.checkNotNull(screenNail); 55 mScreenNail = screenNail; 182 public ScreenNail getScreenNail() {
|
BitmapTileProvider.java | 29 private final ScreenNail mScreenNail; 54 public ScreenNail getScreenNail() {
|
BitmapScreenNail.java | 25 public class BitmapScreenNail implements ScreenNail {
|
TiledScreenNail.java | 27 // This is a ScreenNail wraps a Bitmap. There are some extra functions: 34 public class TiledScreenNail implements ScreenNail { 87 public ScreenNail combine(ScreenNail other) {
|
SurfaceTextureScreenNail.java | 28 public abstract class SurfaceTextureScreenNail implements ScreenNail,
|
PhotoView.java | 76 // ScreenNail at previous (negative offset) or next (positive offset) 77 // positions. Returns null if the specified ScreenNail is unavailable. 78 public ScreenNail getScreenNail(int offset); 496 // We need to change the size and rotation of the Camera ScreenNail, 585 void setScreenNail(ScreenNail s); 662 public void setScreenNail(ScreenNail s) { 774 private ScreenNail mScreenNail; [all...] |
TileImageView.java | 78 private ScreenNail mScreenNail; 128 public ScreenNail getScreenNail(); 171 public void setScreenNail(ScreenNail s) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
PhotoDataAdapter.java | 34 import com.android.gallery3d.ui.ScreenNail; 71 // We want to fetch the current screennail first (offset = 0), the next 72 // screennail (offset = +1), then the previous screennail (offset = -1) etc. 73 // After all the screennail are fetched, we fetch the full images (only some 295 private void updateScreenNail(Path path, Future<ScreenNail> future) { 297 ScreenNail screenNail = future.get(); 300 if (screenNail != null) screenNail.recycle() [all...] |
AppBridge.java | 22 import com.android.gallery3d.ui.ScreenNail; 41 public abstract ScreenNail attachScreenNail(); 64 // Notify that the ScreenNail is changed.
|
SinglePhotoDataAdapter.java | 32 import com.android.gallery3d.ui.ScreenNail; 200 public ScreenNail getScreenNail(int offset) {
|
PhotoPage.java | 403 // Get the ScreenNail from AppBridge and register it. 429 // Combine the original MediaSet with the one for ScreenNail [all...] |
/packages/apps/Camera/src/com/android/camera/ |
ActivityBase.java | 47 import com.android.gallery3d.ui.ScreenNail; 91 protected ScreenNail mCameraScreenNail; // This shows camera preview. 361 public ScreenNail createCameraScreenNail(boolean getPictures) { 395 protected ScreenNail reuseCameraScreenNail(boolean getPictures) { 486 CameraScreenNail screenNail = (CameraScreenNail) mCameraScreenNail; 488 screenNail.setPreviewFrameLayoutSize(width, height); 492 screenNail.setPreviewFrameLayoutSize(height, width); 553 private ScreenNail mCameraScreenNail; 557 public ScreenNail attachScreenNail() { 575 public ScreenNail getCameraScreenNail() [all...] |
PanoramaModule.java | 449 CameraScreenNail screenNail = (CameraScreenNail) mActivity.mCameraScreenNail; 450 screenNail.setSize(w, h); 456 screenNail.releaseSurfaceTexture(); 457 screenNail.acquireSurfaceTexture(); 464 CameraScreenNail screenNail = (CameraScreenNail) mActivity.mCameraScreenNail; 465 SurfaceTexture surfaceTexture = screenNail.getSurfaceTexture(); 475 screenNail.getSurfaceTexture(), w, h, isLandscape); 491 // the camera preview screennail to the same size and initialize the mosaic [all...] |
CameraScreenNail.java | 30 * This is a ScreenNail which can display camera's preview. 166 * Tells the ScreenNail to override the default aspect ratio scaling
|
VideoModule.java | [all...] |
PhotoModule.java | [all...] |
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PicasaSource.java | 62 private static final String PICASA_TYPE_SCREEN_VALUE = "screennail";
|
/packages/apps/Camera2/src/com/android/camera/ |
VideoUI.java | 123 // Full-screen screennail
|