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

  /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/
DecodeUtils.java 80 Options options, int targetSize) {
85 return requestDecode(jc, fd, options, targetSize);
95 Options options, int targetSize) {
104 options.outWidth, options.outHeight, targetSize);
110 result = BitmapUtils.resizeDownIfTooBig(result, targetSize, true);
119 * larger than the <code>targetSize</code>.
122 Options options, int targetSize) {
129 if (options.outWidth < targetSize || options.outHeight < targetSize) {
133 options.outWidth, options.outHeight, targetSize);
    [all...]
ImageCacheRequest.java 37 Path path, int type, int targetSize) {
41 mTargetSize = targetSize;
88 public abstract Bitmap onDecodeOriginal(JobContext jc, int targetSize);
UriImage.java 200 int targetSize = LocalImage.getTargetSize(mType);
204 mFileDescriptor.getFileDescriptor(), options, targetSize);
211 targetSize, true);
214 targetSize, true);
  /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) {
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
TiledDrawingArea.cpp 210 IntSize targetSize;
213 if (!arguments->decode(CoreIPC::Out(targetSize, contentsRect)))
220 float targetScale = float(targetSize.width()) / contentsRect.width();
222 UpdateChunk updateChunk(IntRect(IntPoint(contentsRect.x() * targetScale, contentsRect.y() * targetScale), targetSize));
  /frameworks/base/core/java/android/view/animation/
ScaleAnimation.java 244 float targetSize;
246 targetSize = TypedValue.complexToFraction(data, size, psize);
248 targetSize = TypedValue.complexToDimension(data, mResources.getDisplayMetrics());
257 return targetSize/(float)size;
  /external/webkit/Source/WebCore/loader/cache/
MemoryCache.cpp 173 unsigned targetSize = static_cast<unsigned>(capacity * cTargetPrunePercentage); // Cut by a percentage to avoid immediately pruning again.
201 if (targetSize && m_liveSize <= targetSize)
217 unsigned targetSize = static_cast<unsigned>(capacity * cTargetPrunePercentage); // Cut by a percentage to avoid immediately pruning again.
234 if (targetSize && m_deadSize <= targetSize)
253 if (targetSize && m_deadSize <= targetSize) {
274 if (targetSize && m_deadSize <= targetSize) {
    [all...]
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 92 int targetSize = wantMini
102 createThumbnailFromEXIF(filePath, targetSize, maxPixels, sizedThumbnailBitmap);
118 options, targetSize, maxPixels);
467 private static void createThumbnailFromEXIF(String filePath, int targetSize,
491 exifOptions.inSampleSize = computeSampleSize(exifOptions, targetSize, maxPixels);
498 fullOptions.inSampleSize = computeSampleSize(fullOptions, targetSize, maxPixels);
  /external/webkit/Source/WebKit2/UIProcess/
WebBackForwardList.cpp 71 unsigned targetSize = m_current + 1;
72 removedItems.reserveCapacity(m_entries.size() - targetSize);
73 while (m_entries.size() > targetSize) {
  /frameworks/base/libs/hwui/
TextureCache.cpp 192 uint32_t targetSize = uint32_t(mSize * mFlushRate);
193 TEXTURE_LOGD("TextureCache::flush: target size: %d", targetSize);
195 while (mSize > targetSize) {
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 158 // Resize the bitmap if each side is >= targetSize * 2
160 Bitmap bitmap, int targetSize, boolean recycle) {
164 (float) targetSize / srcWidth, (float) targetSize / srcHeight);
  /external/webkit/Source/WebCore/history/
BackForwardListImpl.cpp 68 unsigned targetSize = m_current + 1;
69 while (m_entries.size() > targetSize) {
  /dalvik/vm/alloc/
HeapSource.cpp     [all...]
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.cpp 342 IntSize targetSize(m_listBox->width() + kBorderSize * 2,
353 widgetRect = chromeClient->windowToScreen(IntRect(popupInitialCoordinate.x() + rightOffset, popupInitialCoordinate.y(), targetSize.width(), targetSize.height()));
    [all...]
  /external/icu4c/test/intltest/
ssearch.cpp     [all...]

Completed in 1385 milliseconds