Searched refs:LengthBox (Results 1 - 16 of 16) sorted by relevance

/external/webkit/WebCore/platform/
H A DTheme.cpp31 LengthBox Theme::controlBorder(ControlPart part, const Font&, const LengthBox& zoomedBox, float) const
39 return LengthBox(0);
45 LengthBox Theme::controlPadding(ControlPart part, const Font&, const LengthBox& zoomedBox, float) const
52 return LengthBox(0);
H A DLengthBox.h28 struct LengthBox { struct in namespace:WebCore
29 LengthBox() function in struct:WebCore::LengthBox
33 LengthBox(LengthType t) function in struct:WebCore::LengthBox
41 LengthBox(int v) function in struct:WebCore::LengthBox
49 LengthBox(int t, int r, int b, int l) function in struct:WebCore::LengthBox
62 bool operator==(const LengthBox& o) const
67 bool operator!=(const LengthBox& o) const
H A DTheme.h32 #include "LengthBox.h"
93 virtual LengthBox controlPadding(ControlPart, const Font&, const LengthBox& zoomedBox, float zoomFactor) const;
94 virtual LengthBox controlBorder(ControlPart, const Font&, const LengthBox& zoomedBox, float zoomFactor) const;
/external/webkit/WebCore/rendering/style/
H A DStyleSurroundData.h29 #include "LengthBox.h"
46 LengthBox offset;
47 LengthBox margin;
48 LengthBox padding;
H A DStyleDashboardRegion.h29 #include "LengthBox.h"
38 LengthBox offset;
H A DNinePieceImage.h27 #include "LengthBox.h"
45 NinePieceImage(StyleImage* image, LengthBox slices, ENinePieceImageRule h, ENinePieceImageRule v)
63 LengthBox m_slices;
H A DStyleVisualData.h28 #include "LengthBox.h"
51 LengthBox clip;
H A DRenderStyle.h51 #include "LengthBox.h"
435 LengthBox clip() const { return visual->clip; }
579 LengthBox paddingBox() const { return surround->padding; }
900 void resetMargin() { SET_VAR(surround, margin, LengthBox(Fixed)) }
906 void resetPadding() { SET_VAR(surround, padding, LengthBox(Auto)) }
907 void setPaddingBox(const LengthBox& b) { SET_VAR(surround, padding, b) }
H A DRenderStyle.cpp245 static bool positionedObjectMoved(const LengthBox& a, const LengthBox& b)
/external/webkit/WebCore/platform/chromium/
H A DThemeChromiumMac.h49 virtual LengthBox controlPadding(ControlPart, const Font&, const LengthBox& zoomedBox, float zoomFactor) const;
50 virtual LengthBox controlBorder(ControlPart, const Font&, const LengthBox& zoomedBox, float zoomFactor) const;
H A DThemeChromiumMac.mm633 LengthBox ThemeChromiumMac::controlBorder(ControlPart part, const Font& font, const LengthBox& zoomedBox, float zoomFactor) const
640 return LengthBox(0, zoomedBox.right().value(), 0, zoomedBox.left().value());
646 LengthBox ThemeChromiumMac::controlPadding(ControlPart part, const Font& font, const LengthBox& zoomedBox, float zoomFactor) const
656 return LengthBox(0, padding, 0, padding);
/external/webkit/WebCore/platform/mac/
H A DThemeMac.h45 virtual LengthBox controlPadding(ControlPart, const Font&, const LengthBox& zoomedBox, float zoomFactor) const;
46 virtual LengthBox controlBorder(ControlPart, const Font&, const LengthBox& zoomedBox, float zoomFactor) const;
H A DThemeMac.mm498 LengthBox ThemeMac::controlBorder(ControlPart part, const Font& font, const LengthBox& zoomedBox, float zoomFactor) const
505 return LengthBox(0, zoomedBox.right().value(), 0, zoomedBox.left().value());
511 LengthBox ThemeMac::controlPadding(ControlPart part, const Font& font, const LengthBox& zoomedBox, float zoomFactor) const
521 return LengthBox(0, padding, 0, padding);
/external/webkit/WebCore/rendering/
H A DRenderTheme.cpp98 LengthBox borderBox(style->borderTopWidth(), style->borderRightWidth(), style->borderBottomWidth(), style->borderLeftWidth());
128 LengthBox paddingBox = m_theme->controlPadding(part, style->font(), style->paddingBox(), style->effectiveZoom());
/external/webkit/WebCore/css/
H A DCSSComputedStyleDeclaration.cpp1209 LengthBox offset = styleRegion.offset;
H A DCSSStyleSelector.cpp5764 LengthBox& l = image.m_slices;

Completed in 112 milliseconds