OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mPreviewWidth
(Results
1 - 12
of
12
) sorted by null
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicFrameProcessor.java
63
private int
mPreviewWidth
;
74
mPreviewWidth
= previewWidth;
88
setupMosaicer(
mPreviewWidth
, mPreviewHeight, mPreviewBufferSize);
180
mTranslationLastX * HR_TO_LR_DOWNSAMPLE_FACTOR /
mPreviewWidth
,
186
mTranslationLastX * HR_TO_LR_DOWNSAMPLE_FACTOR /
mPreviewWidth
,
228
(
mPreviewWidth
/ HR_TO_LR_DOWNSAMPLE_FACTOR) / mTotalDeltaTime;
PanoramaActivity.java
151
private int
mPreviewWidth
;
388
mPreviewWidth
= w;
406
Log.v(TAG, "preview h = " + mPreviewHeight + " , w = " +
mPreviewWidth
);
407
parameters.setPreviewSize(
mPreviewWidth
, mPreviewHeight);
435
return (
mPreviewWidth
* mPreviewHeight * pixelInfo.bitsPerPixel / 8) + 32;
[
all
...]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/webcam/
WebCamFacade.java
99
private int
mPreviewWidth
;
135
map.put("width",
mPreviewWidth
);
173
new YuvImage(yuvData, ImageFormat.NV21,
mPreviewWidth
, mPreviewHeight, null);
174
yuvImage.compressToJpeg(new Rect(0, 0,
mPreviewWidth
, mPreviewHeight), mJpegQuality,
261
mPreviewWidth
= previewSize.width;
262
mParameters.setPreviewSize(
mPreviewWidth
, mPreviewHeight);
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
FocusOverlayManager.java
83
private int
mPreviewWidth
; // The width of the preview frame layout.
145
if (
mPreviewWidth
!= previewWidth || mPreviewHeight != previewHeight) {
146
mPreviewWidth
= previewWidth;
163
if (
mPreviewWidth
!= 0 && mPreviewHeight != 0) {
166
mPreviewWidth
, mPreviewHeight);
347
int previewWidth =
mPreviewWidth
;
/development/apps/WidgetPreview/src/com/android/widgetpreview/
WidgetPreviewActivity.java
60
private int
mPreviewWidth
;
179
mPreviewWidth
= dimensions[0];
191
mAppWidgetFrame.addView(mAppWidgetView,
mPreviewWidth
, mPreviewHeight);
/packages/apps/Camera2/src/com/android/camera/
PhotoUI.java
67
private int
mPreviewWidth
= 0;
105
if (
mPreviewWidth
!= width || mPreviewHeight != height) {
106
mPreviewWidth
= width;
/packages/apps/LegacyCamera/src/com/android/camera/
EffectsRecorder.java
85
private int
mPreviewWidth
;
262
mPreviewWidth
= previewWidth;
434
+
mPreviewWidth
+ ", " + mPreviewHeight);
439
"previewWidth",
mPreviewWidth
,
[
all
...]
/frameworks/av/services/camera/libcameraservice/device1/
CameraHardwareInterface.h
97
mPreviewWidth
(NOT_SET),
435
int
mPreviewWidth
;
CameraHardwareInterface.cpp
312
if (
mPreviewWidth
!= NOT_SET) {
314
mPreviewWidth
, mPreviewHeight);
344
mPreviewWidth
= w;
/packages/apps/Launcher3/src/com/android/launcher3/
WidgetPreviewLoader.java
531
private final int
mPreviewWidth
;
542
mPreviewWidth
= previewWidth;
547
mKey, mInfo, mPreviewHeight,
mPreviewWidth
));
563
candidate.getWidth() ==
mPreviewWidth
&&
574
unusedBitmap = Bitmap.createBitmap(
mPreviewWidth
, mPreviewHeight, Config.ARGB_8888);
592
preview = generatePreview(mActivity, mInfo, unusedBitmap,
mPreviewWidth
, mPreviewHeight);
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java
442
private final int
mPreviewWidth
;
534
mPreviewWidth
= panelWidth;
551
data.previewWidth =
mPreviewWidth
;
[
all
...]
/hardware/interfaces/camera/provider/2.4/vts/functional/
VtsHalCameraProviderV2_4TargetTest.cpp
297
PreviewWindowCb(sp<ANativeWindow> anw) :
mPreviewWidth
(0),
370
uint32_t
mPreviewWidth
, mPreviewHeight;
439
if (
mPreviewWidth
!= 0) {
441
mPreviewWidth
, mPreviewHeight);
467
mPreviewWidth
= w;
[
all
...]
Completed in 5673 milliseconds