OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pictureSize
(Results
1 - 14
of
14
) sorted by null
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCameraParameters.java
29
Camera.Size
pictureSize
= Robolectric.newInstanceOf(Camera.class).new Size(0, 0);
30
pictureSize
.width = pictureWidth;
31
pictureSize
.height = pictureHeight;
32
return
pictureSize
;
/device/asus/flo/camera/QCamera2/HAL/test/
qcamera_test.h
78
status_t getCurrentPictureSize(Size &
pictureSize
);
qcamera_test.cpp
745
Size
pictureSize
= mSupportedPictureSizes.itemAt(mCurrentPictureSizeIdx);
746
mParams.setPictureSize(
pictureSize
.width,
747
pictureSize
.height);
759
* @
pictureSize
: picture size currently configured
765
status_t CameraContext::getCurrentPictureSize(Size &
pictureSize
)
768
pictureSize
= mSupportedPictureSizes.itemAt(mCurrentPictureSizeIdx);
/hardware/qcom/camera/QCamera2/HAL/test/
qcamera_test.h
78
status_t getCurrentPictureSize(Size &
pictureSize
);
qcamera_test.cpp
745
Size
pictureSize
= mSupportedPictureSizes.itemAt(mCurrentPictureSizeIdx);
746
mParams.setPictureSize(
pictureSize
.width,
747
pictureSize
.height);
759
* @
pictureSize
: picture size currently configured
765
status_t CameraContext::getCurrentPictureSize(Size &
pictureSize
)
768
pictureSize
= mSupportedPictureSizes.itemAt(mCurrentPictureSizeIdx);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
CameraParametersTest.java
37
Camera.Size
pictureSize
= parameters.getPictureSize();
38
assertThat(
pictureSize
.width, equalTo(800));
39
assertThat(
pictureSize
.height, equalTo(600));
/packages/apps/Camera/src/com/android/camera/
CameraSettings.java
158
ListPreference
pictureSize
= group.findPreference(KEY_PICTURE_SIZE);
181
if (
pictureSize
!= null) {
182
filterUnsupportedOptions(group,
pictureSize
, sizeListToStringList(
184
filterSimilarPictureSize(group,
pictureSize
);
PhotoModule.java
[
all
...]
/packages/apps/Camera2/src/com/android/camera/
CameraSettings.java
162
ListPreference
pictureSize
= group.findPreference(KEY_PICTURE_SIZE);
183
if (
pictureSize
!= null) {
184
filterUnsupportedOptions(group,
pictureSize
, sizeListToStringList(
186
filterSimilarPictureSize(group,
pictureSize
);
PhotoModule.java
[
all
...]
/cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java
369
Size
pictureSize
= mCamera.getParameters().getPictureSize();
383
assertEquals(
pictureSize
.width, bmpOptions.outWidth);
384
assertEquals(
pictureSize
.height, bmpOptions.outHeight);
627
Size
pictureSize
= pictureSizes.get(0);
673
parameters.setPictureSize(
pictureSize
.width,
pictureSize
.height);
674
assertEquals(
pictureSize
.width, parameters.getPictureSize().width);
675
assertEquals(
pictureSize
.height, parameters.getPictureSize().height);
688
assertEquals(
pictureSize
.width, paramActual.getPictureSize().width);
689
assertEquals(
pictureSize
.height, paramActual.getPictureSize().height)
[
all
...]
/packages/apps/LegacyCamera/src/com/android/camera/
CameraSettings.java
138
ListPreference
pictureSize
= group.findPreference(KEY_PICTURE_SIZE);
156
if (
pictureSize
!= null) {
157
filterUnsupportedOptions(group,
pictureSize
, sizeListToStringList(
Camera.java
[
all
...]
/frameworks/av/libvideoeditor/vss/src/
M4xVSS_internal.c
511
M4OSA_FilePosition
pictureSize
= 0 ;
[
all
...]
Completed in 312 milliseconds