HomeSort by relevance Sort by last modified time
    Searched defs:LayoutSize (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutSize.h 45 class LayoutSize {
47 LayoutSize() { }
48 LayoutSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
49 LayoutSize(LayoutUnit width, LayoutUnit height) : m_width(width), m_height(height) { }
51 explicit LayoutSize(const FloatSize& size) : m_width(size.width()), m_height(size.height()) { }
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& other) cons
    [all...]
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 280 CharUnits LayoutSize = Layout.getSize();
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))
    [all...]

Completed in 75 milliseconds