OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pixelSnappedWidth
(Results
1 - 6
of
6
) 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()));
287
return IntRect(isHorizontal ? x() + width() - partRenderer->
pixelSnappedWidth
() : x(),
289
isHorizontal ? partRenderer->
pixelSnappedWidth
() : width(),
296
isHorizontal ? partRenderer->
pixelSnappedWidth
() : width(),
301
return IntRect(isHorizontal ? x() + width() - followingButton.width() - partRenderer->
pixelSnappedWidth
() : x(),
303
isHorizontal ? partRenderer->
pixelSnappedWidth
() : width(),
RenderFileUploadControl.cpp
81
return (node && node->renderBox()) ? node->renderBox()->
pixelSnappedWidth
() : 0;
86
return max(0, contentBoxRect().
pixelSnappedWidth
() - nodeWidth(uploadButton()) - afterButtonSpacing);
RenderBox.h
70
int
pixelSnappedWidth
() const { return m_frameRect.
pixelSnappedWidth
(); }
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
252
return box ? adjustForAbsoluteZoom(box->contentBoxRect().
pixelSnappedWidth
(), box) : 0;
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutRect.h
74
int
pixelSnappedWidth
() const { return snapSizeToPixel(width(), x()); }
Completed in 35 milliseconds