Searched defs:previewWidth (Results 1 - 12 of 12) sorted by relevance

/packages/apps/Camera/src/com/android/camera/
H A DMosaicFrameProcessor.java89 public void initialize(int previewWidth, int previewHeight, int bufSize) { argument
90 mPreviewWidth = previewWidth;
116 private void setupMosaicer(int previewWidth, int previewHeight, int bufSize) { argument
117 Log.v(TAG, "setupMosaicer w, h=" + previewWidth + ',' + previewHeight + ',' + bufSize);
121 mMosaicer.allocateMosaicMemory(previewWidth, previewHeight);
H A DFocusOverlayManager.java154 public void setPreviewSize(int previewWidth, int previewHeight) { argument
155 if (mPreviewWidth != previewWidth || mPreviewHeight != previewHeight) {
156 mPreviewWidth = previewWidth;
314 int x, int y, int previewWidth, int previewHeight) {
321 calculateTapArea(focusWidth, focusHeight, 1f, x, y, previewWidth, previewHeight,
327 int x, int y, int previewWidth, int previewHeight) {
336 calculateTapArea(focusWidth, focusHeight, 1.5f, x, y, previewWidth, previewHeight,
353 int previewWidth = mPreviewWidth;
358 focusWidth, focusHeight, x, y, previewWidth, previewHeight);
363 focusWidth, focusHeight, x, y, previewWidth, previewHeigh
313 initializeFocusAreas(int focusWidth, int focusHeight, int x, int y, int previewWidth, int previewHeight) argument
326 initializeMeteringAreas(int focusWidth, int focusHeight, int x, int y, int previewWidth, int previewHeight) argument
514 calculateTapArea(int focusWidth, int focusHeight, float areaMultiple, int x, int y, int previewWidth, int previewHeight, Rect rect) argument
[all...]
H A DEffectsRecorder.java424 int previewWidth,
439 mPreviewWidth = previewWidth;
612 "previewWidth", mPreviewWidth,
423 setPreviewSurfaceTexture(SurfaceTexture previewSurfaceTexture, int previewWidth, int previewHeight) argument
/packages/apps/Camera2/src/com/android/camera/
H A DMosaicFrameProcessor.java89 public void initialize(int previewWidth, int previewHeight, int bufSize) { argument
90 mPreviewWidth = previewWidth;
117 private void setupMosaicer(int previewWidth, int previewHeight, int bufSize) { argument
118 Log.v(TAG, "setupMosaicer w, h=" + previewWidth + ',' + previewHeight + ',' + bufSize);
122 mMosaicer.allocateMosaicMemory(previewWidth, previewHeight);
H A DFocusOverlayManager.java161 public void setPreviewSize(int previewWidth, int previewHeight) { argument
162 if (mPreviewRect.width() != previewWidth || mPreviewRect.height() != previewHeight) {
163 setPreviewRect(new Rect(0, 0, previewWidth, previewHeight));
H A DVideoUI.java266 public void onScreenSizeChanged(int width, int height, int previewWidth, int previewHeight) { argument
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DMosaicFrameProcessor.java72 public MosaicFrameProcessor(int previewWidth, int previewHeight, int bufSize) { argument
74 mPreviewWidth = previewWidth;
104 private void setupMosaicer(int previewWidth, int previewHeight, int bufSize) { argument
105 Log.v(TAG, "setupMosaicer w, h=" + previewWidth + ',' + previewHeight + ',' + bufSize);
106 mMosaicer.allocateMosaicMemory(previewWidth, previewHeight);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DWidgetPreviewLoader.java168 public void setPreviewSize(int previewWidth, int previewHeight, argument
170 mPreviewBitmapWidth = previewWidth;
172 mSize = previewWidth + "x" + previewHeight;
458 int previewWidth;
463 previewWidth = drawable.getIntrinsicWidth();
476 previewWidth = previewDrawableWidth * cellHSpan; // subtract 2 dips
479 defaultPreview = Bitmap.createBitmap(previewWidth, previewHeight,
483 previewDrawable.setBounds(0, 0, previewWidth, previewHeight);
491 int smallestSide = Math.min(previewWidth, previewHeight);
516 preScaledWidthOut[0] = previewWidth;
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DWidgetPreviewLoader.java152 public void setPreviewSize(int previewWidth, int previewHeight, argument
154 mPreviewBitmapWidth = previewWidth;
156 mSize = previewWidth + "x" + previewHeight;
453 int previewWidth;
458 previewWidth = drawable.getIntrinsicWidth();
471 previewWidth = previewDrawableWidth * cellHSpan;
474 defaultPreview = Bitmap.createBitmap(previewWidth, previewHeight,
478 previewDrawable.setBounds(0, 0, previewWidth, previewHeight);
486 int smallestSide = Math.min(previewWidth, previewHeight);
511 preScaledWidthOut[0] = previewWidth;
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/
H A DFocusManager.java258 int previewWidth = mPreviewFrame.getWidth();
270 calculateTapArea(focusWidth, focusHeight, 1f, x, y, previewWidth, previewHeight,
272 calculateTapArea(focusWidth, focusHeight, 1.5f, x, y, previewWidth, previewHeight,
278 int left = Util.clamp(x - focusWidth / 2, 0, previewWidth - focusWidth);
448 int x, int y, int previewWidth, int previewHeight, Rect rect) {
451 int left = Util.clamp(x - areaWidth / 2, 0, previewWidth - areaWidth);
447 calculateTapArea(int focusWidth, int focusHeight, float areaMultiple, int x, int y, int previewWidth, int previewHeight, Rect rect) argument
H A DEffectsRecorder.java249 int previewWidth,
262 mPreviewWidth = previewWidth;
439 "previewWidth", mPreviewWidth,
248 setPreviewDisplay(SurfaceHolder previewSurfaceHolder, int previewWidth, int previewHeight) argument
H A DCamera.java851 int previewWidth; field in class:Camera.SaveRequest
896 r.previewWidth = mPreviewFrameLayout.getHeight();
898 r.previewWidth = mPreviewFrameLayout.getWidth();
936 r.previewWidth);
992 int height, long dateTaken, int previewWidth) {
1009 int ratio = (int) Math.ceil((double) width / previewWidth);
991 storeImage(final byte[] data, Location loc, int width, int height, long dateTaken, int previewWidth) argument

Completed in 151 milliseconds