OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pixelSnappedY
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
FloatingObjects.cpp
289
return FloatingObjectInterval(floatingObject->frameRect().
pixelSnappedY
(), floatingObject->frameRect().pixelSnappedMaxY(), floatingObject);
500
return String::format("%p (%dx%d %dx%d)", floatingObject, floatingObject->frameRect().pixelSnappedX(), floatingObject->frameRect().
pixelSnappedY
(), floatingObject->frameRect().pixelSnappedMaxX(), floatingObject->frameRect().pixelSnappedMaxY());
RenderBlockFlow.h
83
int pixelSnappedLogicalTopForFloat(const FloatingObject* floatingObject) const { return isHorizontalWritingMode() ? floatingObject->frameRect().
pixelSnappedY
() : floatingObject->frameRect().pixelSnappedX(); }
85
int pixelSnappedLogicalLeftForFloat(const FloatingObject* floatingObject) const { return isHorizontalWritingMode() ? floatingObject->frameRect().pixelSnappedX() : floatingObject->frameRect().
pixelSnappedY
(); }
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutRect.h
73
int
pixelSnappedY
() const { return y().round(); }
Completed in 71 milliseconds