OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shortSide
(Results
1 - 4
of
4
) sorted by null
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoSource.java
113
public Bitmap next(BitmapFactory.Options options, int longSide, int
shortSide
) {
114
log(TAG, "decoding a picasa resource to " + longSide + ", " +
shortSide
);
128
image = load(imageData, options, longSide,
shortSide
);
137
options, longSide,
shortSide
);
143
public Bitmap load(ImageData data, BitmapFactory.Options options, int longSide, int
shortSide
) {
144
log(TAG, "decoding photo resource to " + longSide + ", " +
shortSide
);
161
(float)
shortSide
/ (float) rawShortSide);
163
(float)
shortSide
/ (float) rawShortSide);
180
(float)
shortSide
/ (float) rawShortSide);
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java
119
final int
shortSide
= imageWidth < imageHeight ? imageWidth : imageHeight;
120
Bitmap preview = Bitmap.createBitmap(
shortSide
,
shortSide
, data.image.getConfig());
127
matrix.postTranslate((
shortSide
- imageWidth) / 2,
128
(
shortSide
- imageHeight) / 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/LegacyCamera/jni/feature_mos/src/mosaic/
Blend.cpp
323
int
shortSide
= min(Mwidth, Mheight);
324
if (
shortSide
> height * heightMultiplier) {
[
all
...]
Completed in 97 milliseconds