/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 | 186 int targetSize = LocalImage.getTargetSize(mType); 190 mFileDescriptor.getFileDescriptor(), options, targetSize); 197 targetSize, true); 200 targetSize, true);
|
/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));
|
/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/llvm/include/llvm/MC/ |
MCFixupKindInfo.h | 35 unsigned TargetSize;
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
BasicObjCFoundationChecks.cpp | 152 uint64_t SourceSize, uint64_t TargetSize, uint64_t NumberKind); 276 Optional<uint64_t> TargetSize = GetCFNumberSize(Ctx, NumberKind); 279 if (!TargetSize.isKnown()) 307 // CHECK: is SourceSize == TargetSize 308 if (SourceSize == TargetSize) 311 // Generate an error. Only generate a sink if 'SourceSize < TargetSize'; 317 if (ExplodedNode *N = SourceSize < TargetSize ? C.generateSink() 325 << (TargetSize == 8 ? "an " : "a ") 326 << TargetSize << " bit integer. "; 328 if (SourceSize < TargetSize) [all...] |
/external/icu4c/test/cintltst/ |
eurocreg.c | 145 int32_t targetSize, euroBackSize; 149 targetSize = ucnv_fromUChars(myConv, 164 targetSize,
|
ccapitst.c | 318 int32_t targetsize; local [all...] |
/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) {
|
/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);
|
/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;
|
/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/kernel-headers/original/linux/netfilter/ |
x_tables.h | 239 unsigned int targetsize; member in struct:xt_target
|
/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/samples/ucnv/ |
convsamp.cpp | 174 targetSize must be set to the amount of space available in the target
|
/external/llvm/lib/MC/ |
MCAsmStreamer.cpp | [all...] |
/external/icu4c/test/intltest/ |
ssearch.cpp | [all...] |