OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:reqWidth
(Results
1 - 6
of
6
) sorted by null
/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageResizer.java
109
* @param
reqWidth
The requested width of the resulting bitmap
116
int
reqWidth
, int reqHeight, ImageCache cache) {
125
options.inSampleSize = calculateInSampleSize(options,
reqWidth
, reqHeight);
142
* @param
reqWidth
The requested width of the resulting bitmap
149
int
reqWidth
, int reqHeight, ImageCache cache) {
157
options.inSampleSize = calculateInSampleSize(options,
reqWidth
, reqHeight);
173
* @param
reqWidth
The requested width of the resulting bitmap
180
FileDescriptor fileDescriptor, int
reqWidth
, int reqHeight, ImageCache cache) {
188
options.inSampleSize = calculateInSampleSize(options,
reqWidth
, reqHeight);
227
* @param
reqWidth
The requested width of the resulting bitma
[
all
...]
/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageResizer.java
109
* @param
reqWidth
The requested width of the resulting bitmap
116
int
reqWidth
, int reqHeight, ImageCache cache) {
125
options.inSampleSize = calculateInSampleSize(options,
reqWidth
, reqHeight);
142
* @param
reqWidth
The requested width of the resulting bitmap
149
int
reqWidth
, int reqHeight, ImageCache cache) {
157
options.inSampleSize = calculateInSampleSize(options,
reqWidth
, reqHeight);
173
* @param
reqWidth
The requested width of the resulting bitmap
180
FileDescriptor fileDescriptor, int
reqWidth
, int reqHeight, ImageCache cache) {
188
options.inSampleSize = calculateInSampleSize(options,
reqWidth
, reqHeight);
227
* @param
reqWidth
The requested width of the resulting bitma
[
all
...]
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageResizer.java
109
* @param
reqWidth
The requested width of the resulting bitmap
116
int
reqWidth
, int reqHeight, ImageCache cache) {
125
options.inSampleSize = calculateInSampleSize(options,
reqWidth
, reqHeight);
142
* @param
reqWidth
The requested width of the resulting bitmap
149
int
reqWidth
, int reqHeight, ImageCache cache) {
157
options.inSampleSize = calculateInSampleSize(options,
reqWidth
, reqHeight);
173
* @param
reqWidth
The requested width of the resulting bitmap
180
FileDescriptor fileDescriptor, int
reqWidth
, int reqHeight, ImageCache cache) {
188
options.inSampleSize = calculateInSampleSize(options,
reqWidth
, reqHeight);
227
* @param
reqWidth
The requested width of the resulting bitma
[
all
...]
/development/samples/training/ContactsList/src/com/example/android/contactslist/util/
ImageLoader.java
353
* @param
reqWidth
The requested width of the resulting bitmap
359
FileDescriptor fileDescriptor, int
reqWidth
, int reqHeight) {
367
options.inSampleSize = calculateInSampleSize(options,
reqWidth
, reqHeight);
384
* @param
reqWidth
The requested width of the resulting bitmap
389
int
reqWidth
, int reqHeight) {
395
if (height > reqHeight || width >
reqWidth
) {
399
final int widthRatio = Math.round((float) width / (float)
reqWidth
);
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;
154
int
reqWidth
= size.x;
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 120 milliseconds