Searched defs:placeholder (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/session/
H A DPlaceholderManager.java63 * Adds an empty placeholder.
66 * @param size the size of the placeholder in pixels.
67 * @param timestamp the timestamp of the placeholder (used for ordering
69 * @return A session instance representing the new placeholder.
77 * Inserts a new placeholder into the filmstrip.
80 * @param placeholder the initial thumbnail to show for this placeholder
81 * @param timestamp the timestamp of the placeholder (used for ordering
83 * @return A session instance representing the new placeholder.
85 public Placeholder insertPlaceholder(String title, Bitmap placeholder, lon argument
101 insertPlaceholder(String title, byte[] placeholder, long timestamp) argument
135 finishPlaceholder(Placeholder placeholder, Location location, int orientation, ExifInterface exif, byte[] jpeg, int width, int height, String mimeType) argument
150 replacePlaceholder(Placeholder session, Bitmap placeholder) argument
160 getPlaceholder(Placeholder placeholder) argument
170 removePlaceholder(Placeholder placeholder) argument
[all...]
H A DCaptureSession.java165 * Starts an empty session with the given placeholder size.
168 * @param pictureSize the size, in pixels of the empty placeholder.
173 * Starts the session by adding a placeholder to the filmstrip and adding
177 * @param placeholder a valid encoded bitmap to be used as the placeholder.
182 public void startSession(@Nullable ImageLifecycleListener listener, @Nonnull byte[] placeholder, argument
186 * Starts the session by adding a placeholder to the filmstrip and adding
190 * @param placeholder a valid bitmap to be used as the placeholder.
196 public void startSession(@Nullable ImageLifecycleListener listener, @Nonnull Bitmap placeholder, argument
[all...]
H A DCaptureSessionImpl.java177 // No placeholder present means the task might already be finished or
220 @Nonnull Bitmap placeholder, int progressMessageId) {
231 mPlaceHolder = mPlaceholderManager.insertPlaceholder(mTitle, placeholder,
236 onCaptureIndicatorUpdate(placeholder, 0);
241 @Nonnull byte[] placeholder, int progressMessageId) {
252 mPlaceHolder = mPlaceholderManager.insertPlaceholder(mTitle, placeholder,
421 Bitmap placeholder = BitmapFactory.decodeByteArray(jpegData, 0, jpegData.length,
423 mPlaceholderManager.replacePlaceholder(mPlaceHolder, placeholder);
219 startSession(@ullable ImageLifecycleListener listener, @Nonnull Bitmap placeholder, int progressMessageId) argument
240 startSession(@ullable ImageLifecycleListener listener, @Nonnull byte[] placeholder, int progressMessageId) argument
/packages/apps/Camera2/src/com/android/camera/captureintent/
H A DCaptureIntentSession.java128 public synchronized void startSession(ImageLifecycleListener listener, @Nonnull Bitmap placeholder, argument
134 public synchronized void startSession(ImageLifecycleListener listener, @Nonnull byte[] placeholder, argument
/packages/apps/Camera2/src/com/android/camera/
H A DStorage.java200 * Add a placeholder for a new image that does not exist yet.
202 * @param placeholder the placeholder image
203 * @return A new URI used to reference this placeholder
205 public static Uri addPlaceholder(Bitmap placeholder) { argument
207 replacePlaceholder(uri, placeholder);
212 * Remove a placeholder from in memory storage.
221 * Add or replace placeholder for a new image that does not exist yet.
223 * @param uri the uri of the placeholder to replace, or null if this is a
225 * @param placeholder th
228 replacePlaceholder(Uri uri, Bitmap placeholder) argument
[all...]

Completed in 169 milliseconds