OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mExifThumbnailSize
(Results
1 - 2
of
2
) sorted by null
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
CameraSettings.java
61
protected Size
mExifThumbnailSize
;
142
mExifThumbnailSize
= src.
mExifThumbnailSize
;
501
mExifThumbnailSize
= s;
510
return (
mExifThumbnailSize
== null) ? null : new Size(
mExifThumbnailSize
);
AndroidCamera2Settings.java
133
mExifThumbnailSize
=
231
if (
mExifThumbnailSize
== null) {
237
return (
mExifThumbnailSize
.width() == 0 &&
mExifThumbnailSize
.height() == 0) ||
239
mExifThumbnailSize
.width() == defaultThumbnailSize.getWidth() &&
240
mExifThumbnailSize
.height() == defaultThumbnailSize.getHeight());
281
if (
mExifThumbnailSize
!= null) {
284
mExifThumbnailSize
.width(),
mExifThumbnailSize
.height()));
Completed in 348 milliseconds