HomeSort by relevance Sort by last modified time
    Searched defs:scaledWidth (Results 1 - 25 of 26) sorted by null

1 2

  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
BitmapUtils.java 91 int scaledWidth, scaledHeight;
94 scaledWidth = 200;
98 scaledWidth = (int) (scaleFactor * width);
101 Bitmap thumbnail = Bitmap.createScaledBitmap(original, scaledWidth, scaledHeight, true);
  /external/chromium_org/third_party/skia/src/images/
SkScaledBitmapSampler.h 21 int scaledWidth() const { return fScaledWidth; }
  /external/skia/src/images/
SkScaledBitmapSampler.h 21 int scaledWidth() const { return fScaledWidth; }
  /cts/tests/tests/graphics/src/android/graphics/cts/
MovieTest.java 150 int scaledWidth = WidgetTestUtils.convertDipToPixels(getActivity(), mMovie.width());
151 assertEquals(expectedWidth, scaledWidth);
BitmapTest.java     [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeIconsView.java 213 int scaledWidth = (int) ((float) videoIcon.getWidth() *
216 Bitmap scaled = Bitmap.createScaledBitmap(videoIcon, scaledWidth, scaledHeight, false);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
DetermineFovActivity.java 206 float scaledWidth = scale * photoWidth;
207 float pad = (canvasWidth - scaledWidth) / 2;
208 drawRect.set(pad, 0, pad + scaledWidth - 1, canvasHeight);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderReplaced.cpp 102 int scaledWidth = static_cast<int>(defaultWidth * style()->effectiveZoom());
104 m_intrinsicSize = IntSize(scaledWidth, scaledHeight);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AttachmentTile.java 184 final int scaledWidth = width * getResources().getDisplayMetrics().densityDpi
191 final boolean large = width >= maxSize || scaledWidth >= mIcon.getWidth()
198 !(scaledWidth >= mIcon.getHeight() * skinnyThresholdRatio
200 LogUtils.d(LOG_TAG, "scaledWidth: %d, scaledHeight: %d, large: %b, skinny: %b", scaledWidth,
  /prebuilts/devtools/tools/lib/
ninepatch.jar 
asset-studio.jar 
draw9patch.jar 
hierarchyviewer2lib.jar 
  /external/chromium_org/third_party/libjpeg_turbo/
tjunittest.c 399 int scaledWidth=TJSCALED(w, sf);
422 else dstSize=scaledWidth*scaledHeight*tjPixelSize[pf];
434 _tj(tjDecompress2(handle, jpegBuf, jpegSize, dstBuf, scaledWidth, 0,
446 if(checkBuf(dstBuf, scaledWidth, scaledHeight, pf, subsamp, sf, flags))
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
SDL_epocvideo.cpp 592 TInt scaledWidth = (w * (scaleValue-1))/scaleValue;
593 if (scaledWidth > Private->EPOC_ScreenSize.iWidth)
    [all...]
  /frameworks/base/core/jni/android/graphics/
BitmapFactory.cpp 118 int scaledWidth, int scaledHeight) {
124 scaleDivRange(chunk->getXDivs(), chunk->numXDivs, scale, scaledWidth);
325 int scaledWidth = decodingBitmap.width();
329 scaledWidth = int(scaledWidth * scale + 0.5f);
339 env->SetIntField(options, gOptions_widthFieldID, scaledWidth);
352 scaleNinePatchChunk(peeker.mPatch, scale, scaledWidth, scaledHeight);
390 const float sx = scaledWidth / float(decodingBitmap.width());
398 outputBitmap->setInfo(SkImageInfo::Make(scaledWidth, scaledHeight,
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 349 int scaledWidth = (int)(outWidth * scaleFactor);
354 "Bitmap.createScaledBitmap: w=" + scaledWidth +
358 b = Bitmap.createScaledBitmap(b, scaledWidth, scaledHeight, false);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java 250 int scaledWidth = (int) (imageWidth * scale);
251 if (scaledWidth > maxWidth) {
  /developers/build/lib/
assetstudio.jar 
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentViewCore.java 473 int scaledWidth = Math.round(width * scale);
483 if (scaledWidth + startMargin > mContainerViewAtCreation.getWidth()) {
484 scaledWidth = mContainerViewAtCreation.getWidth() - startMargin;
487 scaledWidth, Math.round(height * scale));
502 scaledWidth, (int) (height * scale), leftMargin, topMargin);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
GlowPadView.java     [all...]
  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
GlowPadView.java 367 int scaledWidth = getScaledSuggestedMinimumWidth();
370 computeInsets(computedWidth - scaledWidth, computedHeight - scaledHeight);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PaletteControl.java 769 int scaledWidth = (int) (scale * width);
771 int x = -scaledWidth / 2;
773 dragBounds = new Rect(x, y, scaledWidth, scaledHeight);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Controller.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Workspace.java     [all...]

Completed in 601 milliseconds

1 2