HomeSort by relevance Sort by last modified time
    Searched defs:targetSize (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/icu/source/test/cintltst/
eurocreg.c 145 int32_t targetSize, euroBackSize;
149 targetSize = ucnv_fromUChars(myConv,
164 targetSize,
  /external/icu4c/test/cintltst/
eurocreg.c 145 int32_t targetSize, euroBackSize;
149 targetSize = ucnv_fromUChars(myConv,
164 targetSize,
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ActionImage.java 61 int targetSize = MediaItem.getTargetSize(mType);
66 bitmap = BitmapUtils.resizeAndCropCenter(bitmap, targetSize, true);
68 bitmap = BitmapUtils.resizeDownBySideLength(bitmap, targetSize, true);
UriImage.java 193 int targetSize = MediaItem.getTargetSize(mType);
197 mFileDescriptor.getFileDescriptor(), options, targetSize, mType);
204 bitmap = BitmapUtils.resizeAndCropCenter(bitmap, targetSize, true);
206 bitmap = BitmapUtils.resizeDownBySideLength(bitmap, targetSize, true);
LocalImage.java 193 int targetSize = MediaItem.getTargetSize(type);
209 jc, thumbData, options, targetSize);
214 return DecodeUtils.decodeThumbnail(jc, mLocalFilePath, options, targetSize, type);
  /frameworks/base/core/java/android/view/animation/
ScaleAnimation.java 261 float targetSize;
263 targetSize = TypedValue.complexToFraction(data, size, psize);
265 targetSize = TypedValue.complexToDimension(data, mResources.getDisplayMetrics());
274 return targetSize/(float)size;
  /frameworks/base/libs/hwui/
TextureCache.cpp 204 uint32_t targetSize = uint32_t(mSize * mFlushRate);
205 TEXTURE_LOGD("TextureCache::flush: target size: %d", targetSize);
207 while (mSize > targetSize) {
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
MemoryCache.cpp 157 unsigned targetSize = static_cast<unsigned>(capacity * cTargetPrunePercentage); // Cut by a percentage to avoid immediately pruning again.
190 if (targetSize && m_liveSize <= targetSize)
204 unsigned targetSize = static_cast<unsigned>(capacity * cTargetPrunePercentage); // Cut by a percentage to avoid immediately pruning again.
221 if (targetSize && m_deadSize <= targetSize)
240 if (targetSize && m_deadSize <= targetSize)
257 if (targetSize && m_deadSize <= targetSize)
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/data/
SparseArrayBitmapPool.java 78 int targetSize = mCapacityBytes - bytesNeeded;
80 while (mPoolNodesTail != null && mSizeBytes > targetSize) {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
LevenshteinDistance.java 40 final int targetSize = target.length;
41 final int[][] editTab = new int[sourceSize+1][targetSize+1];
42 final int[][] distTab = new int[sourceSize+1][targetSize+1];
49 for (int i = 1; i <= targetSize; ++i) {
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 92 int targetSize = wantMini
102 createThumbnailFromEXIF(filePath, targetSize, maxPixels, sizedThumbnailBitmap);
120 options, targetSize, maxPixels);
478 private static void createThumbnailFromEXIF(String filePath, int targetSize,
500 exifOptions.inSampleSize = computeSampleSize(exifOptions, targetSize, maxPixels);
507 fullOptions.inSampleSize = computeSampleSize(fullOptions, targetSize, maxPixels);
  /dalvik/vm/alloc/
HeapSource.cpp     [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
ssearch.cpp     [all...]
  /external/icu4c/test/intltest/
ssearch.cpp     [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 584 int targetSize = Math.max(0, mOnTable.size() - mRedealCount);
585 while (mOnTable.size() > targetSize) {
    [all...]

Completed in 1119 milliseconds