Searched defs:LayoutSize (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerClipper.h62 ClipRectsContext(const RenderLayer* root, ClipRectsCacheSlot slot, OverlayScrollbarSizeRelevancy relevancy = IgnoreOverlayScrollbarSize, const LayoutSize& accumulation = LayoutSize()) argument
92 LayoutSize subPixelAccumulation;
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DLayoutSize.h45 class LayoutSize { class in namespace:blink
47 LayoutSize() { } function in class:blink::LayoutSize
48 LayoutSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { } function in class:blink::LayoutSize
49 LayoutSize(LayoutUnit width, LayoutUnit height) : m_width(width), m_height(height) { } function in class:blink::LayoutSize
51 explicit LayoutSize(const FloatSize& size) : m_width(size.width()), m_height(size.height()) { } function in class:blink::LayoutSize
88 LayoutSize expandedTo(const LayoutSize& other) const
90 return LayoutSize(m_width > other.m_width ? m_width : other.m_width,
94 LayoutSize shrunkTo(const LayoutSize
[all...]
/external/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp280 CharUnits LayoutSize = Layout.getSize(); local
296 if (LayoutSize < getSize(FieldType))
297 FieldType = getByteArrayType(LayoutSize);
311 return appendPaddingBytes(LayoutSize);
314 if (LayoutSize < getSize(StorageType))
315 StorageType = getByteArrayType(LayoutSize);
317 appendPaddingBytes(LayoutSize - getSize(StorageType));
319 if (LayoutSize % getAlignment(StorageType))

Completed in 130 milliseconds