OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:reqHeight
(Results
1 - 6
of
6
) sorted by null
/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageResizer.java
110
* @param
reqHeight
The requested height of the resulting bitmap
116
int reqWidth, int
reqHeight
, ImageCache cache) {
125
options.inSampleSize = calculateInSampleSize(options, reqWidth,
reqHeight
);
143
* @param
reqHeight
The requested height of the resulting bitmap
149
int reqWidth, int
reqHeight
, ImageCache cache) {
157
options.inSampleSize = calculateInSampleSize(options, reqWidth,
reqHeight
);
174
* @param
reqHeight
The requested height of the resulting bitmap
180
FileDescriptor fileDescriptor, int reqWidth, int
reqHeight
, ImageCache cache) {
188
options.inSampleSize = calculateInSampleSize(options, reqWidth,
reqHeight
);
228
* @param
reqHeight
The requested height of the resulting bitma
[
all
...]
/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageResizer.java
110
* @param
reqHeight
The requested height of the resulting bitmap
116
int reqWidth, int
reqHeight
, ImageCache cache) {
125
options.inSampleSize = calculateInSampleSize(options, reqWidth,
reqHeight
);
143
* @param
reqHeight
The requested height of the resulting bitmap
149
int reqWidth, int
reqHeight
, ImageCache cache) {
157
options.inSampleSize = calculateInSampleSize(options, reqWidth,
reqHeight
);
174
* @param
reqHeight
The requested height of the resulting bitmap
180
FileDescriptor fileDescriptor, int reqWidth, int
reqHeight
, ImageCache cache) {
188
options.inSampleSize = calculateInSampleSize(options, reqWidth,
reqHeight
);
228
* @param
reqHeight
The requested height of the resulting bitma
[
all
...]
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageResizer.java
110
* @param
reqHeight
The requested height of the resulting bitmap
116
int reqWidth, int
reqHeight
, ImageCache cache) {
125
options.inSampleSize = calculateInSampleSize(options, reqWidth,
reqHeight
);
143
* @param
reqHeight
The requested height of the resulting bitmap
149
int reqWidth, int
reqHeight
, ImageCache cache) {
157
options.inSampleSize = calculateInSampleSize(options, reqWidth,
reqHeight
);
174
* @param
reqHeight
The requested height of the resulting bitmap
180
FileDescriptor fileDescriptor, int reqWidth, int
reqHeight
, ImageCache cache) {
188
options.inSampleSize = calculateInSampleSize(options, reqWidth,
reqHeight
);
228
* @param
reqHeight
The requested height of the resulting bitma
[
all
...]
/development/samples/training/ContactsList/src/com/example/android/contactslist/util/
ImageLoader.java
354
* @param
reqHeight
The requested height of the resulting bitmap
359
FileDescriptor fileDescriptor, int reqWidth, int
reqHeight
) {
367
options.inSampleSize = calculateInSampleSize(options, reqWidth,
reqHeight
);
385
* @param
reqHeight
The requested height of the resulting bitmap
389
int reqWidth, int
reqHeight
) {
395
if (height >
reqHeight
|| width > reqWidth) {
398
final int heightRatio = Math.round((float) height / (float)
reqHeight
);
414
final float totalReqPixelsCap = reqWidth *
reqHeight
* 2;
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodPresentMediaDialog.java
91
private int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int
reqHeight
){
95
if(reqWidth <= 0 ||
reqHeight
<= 0) {
98
return Math.max(height/
reqHeight
, width/reqWidth) + 1;
155
int
reqHeight
= size.y;
156
options.inSampleSize = calculateInSampleSize(options, reqWidth,
reqHeight
);
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/
SubsamplingScaleImageView.java
[
all
...]
Completed in 176 milliseconds