OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:shortSide
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Camera/src/com/android/camera/
PreviewFrameLayout.java
100
int
shortSide
= (widthLonger ? previewHeight : previewWidth);
101
if (longSide >
shortSide
* mAspectRatio) {
102
longSide = (int) ((double)
shortSide
* mAspectRatio);
104
shortSide
= (int) ((double) longSide / mAspectRatio);
108
previewHeight =
shortSide
;
110
previewWidth =
shortSide
;
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java
134
final int
shortSide
= mImageWidth < mImageHeight ? mImageWidth : mImageHeight;
135
Bitmap preview = Bitmap.createBitmap(
shortSide
,
shortSide
, data.image.getConfig());
142
matrix.postTranslate((
shortSide
- mImageWidth) / 2,
143
(
shortSide
- mImageHeight) / 2);
/packages/apps/Camera/jni/feature_mos/src/mosaic/
Blend.cpp
323
int
shortSide
= min(Mwidth, Mheight);
324
if (
shortSide
> height * heightMultiplier) {
[
all
...]
/packages/apps/Camera2/jni/feature_mos/src/mosaic/
Blend.cpp
323
int
shortSide
= min(Mwidth, Mheight);
324
if (
shortSide
> height * heightMultiplier) {
[
all
...]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Blend.cpp
323
int
shortSide
= min(Mwidth, Mheight);
324
if (
shortSide
> height * heightMultiplier) {
[
all
...]
Completed in 309 milliseconds