Home
last modified time | relevance | path

Searched refs:newBottom (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/page/
DFrameView.h249 …void adjustPageHeightDeprecated(float* newBottom, float oldTop, float oldBottom, float bottomLimit…
DFrameView.cpp2573 void FrameView::adjustPageHeightDeprecated(float *newBottom, float oldTop, float oldBottom, float /… in adjustPageHeightDeprecated() argument
2583 *newBottom = root->bestTruncatedAt(); in adjustPageHeightDeprecated()
2584 if (*newBottom == 0) in adjustPageHeightDeprecated()
2585 *newBottom = oldBottom; in adjustPageHeightDeprecated()
2588 *newBottom = oldBottom; in adjustPageHeightDeprecated()
/external/webkit/Source/WebKit/mac/WebView/
DWebHTMLView.mm2301 float newBottom;
2302 view->adjustPageHeightDeprecated(&newBottom, top, bottom, bottomLimit);
2306 // bottom. This prevents rounding errors that can occur when converting newBottom to a double.
2307 if (fabs(static_cast<float>(bottom) - newBottom) <= numeric_limits<float>::epsilon())
2311 return newBottom;
3960 - (void)adjustPageHeightNew:(CGFloat *)newBottom top:(CGFloat)oldTop bottom:(CGFloat)oldBottom limi…
3968 *newBottom = [self _adjustedBottomOfPageWithTop:oldTop bottom:oldBottom limit:bottomLimit];
/external/webkit/Source/WebKit/mac/
DChangeLog-2010-01-2916920 newBottom to be larger than oldBottom which is illegal.