Home
last modified time | relevance | path

Searched refs:newBounds (Results 1 – 7 of 7) sorted by relevance

/external/chromium/chrome/browser/ui/cocoa/tab_contents/
Dsad_tab_view.mm63 NSRect newBounds = [self bounds];
64 CGFloat maxWidth = NSWidth(newBounds) - (kTabHorzMargin * 2);
71 MIN(((NSHeight(newBounds) - NSHeight(iconFrame)) / 2) - kSadTabOffset,
72 NSHeight(newBounds) - NSHeight(iconFrame));
/external/webkit/Source/WebCore/rendering/
DRenderObject.cpp1222 …IntRect newBounds = newBoundsPtr ? *newBoundsPtr : clippedOverflowRectForRepaint(repaintContainer); in repaintAfterLayoutIfNeeded() local
1233 …n() != oldOutlineBox.location() || (mustRepaintBackgroundOrBorder() && (newBounds != oldBounds || … in repaintAfterLayoutIfNeeded()
1242 if (newBounds != oldBounds) in repaintAfterLayoutIfNeeded()
1243 repaintUsingContainer(repaintContainer, newBounds); in repaintAfterLayoutIfNeeded()
1247 if (newBounds == oldBounds && newOutlineBox == oldOutlineBox) in repaintAfterLayoutIfNeeded()
1250 int deltaLeft = newBounds.x() - oldBounds.x(); in repaintAfterLayoutIfNeeded()
1254 …repaintUsingContainer(repaintContainer, IntRect(newBounds.x(), newBounds.y(), -deltaLeft, newBound… in repaintAfterLayoutIfNeeded()
1256 int deltaRight = newBounds.maxX() - oldBounds.maxX(); in repaintAfterLayoutIfNeeded()
1258 …singContainer(repaintContainer, IntRect(oldBounds.maxX(), newBounds.y(), deltaRight, newBounds.hei… in repaintAfterLayoutIfNeeded()
1260 …repaintUsingContainer(repaintContainer, IntRect(newBounds.maxX(), oldBounds.y(), -deltaRight, oldB… in repaintAfterLayoutIfNeeded()
[all …]
DRenderFrameSet.cpp512 IntRect newBounds = absoluteClippedOverflowRect(); in layout() local
513 if (newBounds != oldBounds) in layout()
514 view()->repaintViewRectangle(newBounds); in layout()
/external/webkit/Source/WebKit/android/nav/
DWebView.cpp729 IntRect newBounds = node->bounds(frame); in fixCursor() local
730 IntPoint newCenter = IntPoint(newBounds.x() + (newBounds.width() >> 1), in fixCursor()
731 newBounds.y() + (newBounds.height() >> 1)); in fixCursor()
736 newBounds.x(), newBounds.y(), newBounds.width(), newBounds.height()); in fixCursor()
741 if (abs(bounds.x() - newBounds.x()) > 4) in fixCursor()
743 if (abs(bounds.y() - newBounds.y()) > 4) in fixCursor()
745 if (abs(bounds.maxX() - newBounds.maxX()) > 4) in fixCursor()
747 if (abs(bounds.maxY() - newBounds.maxY()) > 4) in fixCursor()
DCachedRoot.cpp1389 WebCore::IntRect newBounds = mHistory->mNavBounds; in innerMove() local
1392 newBounds.move(offsetX, offsetY); in innerMove()
1393 if (mViewBounds.x() > newBounds.x()) in innerMove()
1395 else if (mViewBounds.maxX() < newBounds.maxX()) in innerMove()
1397 if (mViewBounds.y() > newBounds.y()) in innerMove()
1399 else if (mViewBounds.maxY() < newBounds.maxY()) in innerMove()
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.cpp1406 const WebCore::IntRect& newBounds = node->getRect(); in setSizeScreenWidthAndScale() local
1408 "h=%d)", newBounds.x(), newBounds.y(), in setSizeScreenWidthAndScale()
1409 newBounds.width(), newBounds.height()); in setSizeScreenWidthAndScale()
1411 && (bounds != newBounds)) { in setSizeScreenWidthAndScale()
1417 && (bounds.width() == newBounds.width()) in setSizeScreenWidthAndScale()
1418 && (bounds.height() != newBounds.height()); in setSizeScreenWidthAndScale()
1425 showRect(newBounds.x(), newBounds.y(), newBounds.width(), in setSizeScreenWidthAndScale()
1426 newBounds.height(), view->contentsWidth(), in setSizeScreenWidthAndScale()
/external/webkit/Source/WebKit/chromium/src/
DWebViewImpl.cpp2238 IntRect newBounds = m_autoFillPopup->frameRect(); in refreshAutoFillPopup() local
2240 if (oldBounds != newBounds) { in refreshAutoFillPopup()
2244 popupMenu->client()->setWindowRect(newBounds); in refreshAutoFillPopup()