HomeSort by relevance Sort by last modified time
    Searched full:dwidth (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/widget/
ImageView.java 751 int dwidth = mDrawableWidth; local
757 boolean fits = (dwidth < 0 || vwidth == dwidth) &&
760 if (dwidth <= 0 || dheight <= 0 || ScaleType.FIT_XY == mScaleType) {
769 mDrawable.setBounds(0, 0, dwidth, dheight);
784 mDrawMatrix.setTranslate((int) ((vwidth - dwidth) * 0.5f + 0.5f),
792 if (dwidth * vheight > vwidth * dheight) {
794 dx = (vwidth - dwidth * scale) * 0.5f;
796 scale = (float) vwidth / (float) dwidth;
808 if (dwidth <= vwidth && dheight <= vheight)
    [all...]
  /external/webkit/WebCore/rendering/
RenderFrameSet.cpp 582 int dWidth = (width() - newWidth) / cols;
584 if (dWidth > 0) {
587 availableWidth -= m_cols.m_sizes[c] += dWidth;

Completed in 6786 milliseconds