OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pixelSnappedHeight
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbar.cpp
285
return IntRect(location(), IntSize(isHorizontal ? partRenderer->pixelSnappedWidth() : width(), isHorizontal ? height() : partRenderer->
pixelSnappedHeight
()));
288
isHorizontal ? y() : y() + height() - partRenderer->
pixelSnappedHeight
(),
290
isHorizontal ? height() : partRenderer->
pixelSnappedHeight
());
297
isHorizontal ? height() : partRenderer->
pixelSnappedHeight
());
302
isHorizontal ? y() : y() + height() - followingButton.height() - partRenderer->
pixelSnappedHeight
(),
304
isHorizontal ? height() : partRenderer->
pixelSnappedHeight
());
RenderBox.h
71
int
pixelSnappedHeight
() const { return m_frameRect.
pixelSnappedHeight
(); }
94
int pixelSnappedLogicalHeight() const { return style()->isHorizontalWritingMode() ?
pixelSnappedHeight
() : pixelSnappedWidth(); }
95
int pixelSnappedLogicalWidth() const { return style()->isHorizontalWritingMode() ? pixelSnappedWidth() :
pixelSnappedHeight
(); }
[
all
...]
RenderLayerScrollableArea.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImageElement.cpp
275
return box ? adjustForAbsoluteZoom(box->contentBoxRect().
pixelSnappedHeight
(), box) : 0;
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutRect.h
75
int
pixelSnappedHeight
() const { return snapSizeToPixel(height(), y()); }
Completed in 388 milliseconds