/external/chromium_org/third_party/WebKit/Source/platform/ |
D | Theme.cpp | 31 LengthBox Theme::controlBorder(ControlPart part, const FontDescription&, const LengthBox& zoomedBox… in controlBorder() 39 return LengthBox(0); in controlBorder() 45 LengthBox Theme::controlPadding(ControlPart part, const FontDescription&, const LengthBox& zoomedBo… in controlPadding() 52 return LengthBox(0); in controlPadding()
|
D | LengthBox.h | 34 class PLATFORM_EXPORT LengthBox { 36 LengthBox() in LengthBox() function 40 LengthBox(LengthType t) in LengthBox() function 48 LengthBox(int v) in LengthBox() function 56 LengthBox(Length t, Length r, Length b, Length l) in LengthBox() function 64 LengthBox(int t, int r, int b, int l) in LengthBox() function 85 bool operator==(const LengthBox& o) const 90 bool operator!=(const LengthBox& o) const
|
D | LengthBox.cpp | 36 Length LengthBox::logicalLeft(WritingMode writingMode) const in logicalLeft() 41 Length LengthBox::logicalRight(WritingMode writingMode) const in logicalRight() 46 Length LengthBox::before(WritingMode writingMode) const in before() 62 Length LengthBox::after(WritingMode writingMode) const in after() 78 Length LengthBox::start(WritingMode writingMode, TextDirection direction) const in start() 85 Length LengthBox::end(WritingMode writingMode, TextDirection direction) const in end()
|
D | Theme.h | 90 …virtual LengthBox controlPadding(ControlPart, const FontDescription&, const LengthBox& zoomedBox, … 91 …virtual LengthBox controlBorder(ControlPart, const FontDescription&, const LengthBox& zoomedBox, f…
|
D | blink_platform.gypi | 54 'LengthBox.cpp', 55 'LengthBox.h',
|
D | blink_platform.target.linux-mips.mk | 65 third_party/WebKit/Source/platform/LengthBox.cpp \
|
D | blink_platform.target.linux-x86.mk | 65 third_party/WebKit/Source/platform/LengthBox.cpp \
|
D | blink_platform.target.darwin-mips.mk | 65 third_party/WebKit/Source/platform/LengthBox.cpp \
|
D | blink_platform.target.linux-arm.mk | 66 third_party/WebKit/Source/platform/LengthBox.cpp \
|
D | blink_platform.target.darwin-x86.mk | 65 third_party/WebKit/Source/platform/LengthBox.cpp \
|
D | blink_platform.target.darwin-arm.mk | 66 third_party/WebKit/Source/platform/LengthBox.cpp \
|
/external/chromium_org/third_party/WebKit/Source/core/platform/mac/ |
D | ThemeMac.h | 49 …virtual LengthBox controlPadding(ControlPart, const FontDescription&, const LengthBox& zoomedBox, … 50 …virtual LengthBox controlBorder(ControlPart, const FontDescription&, const LengthBox& zoomedBox, f…
|
D | ThemeMac.mm | 623 LengthBox ThemeMac::controlBorder(ControlPart part, const FontDescription& fontDescription, const L… 628 return LengthBox(0, zoomedBox.right().value(), 0, zoomedBox.left().value()); 634 LengthBox ThemeMac::controlPadding(ControlPart part, const FontDescription& fontDescription, const … 644 return LengthBox(0, padding, 0, padding);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | StyleSurroundData.h | 46 LengthBox offset; 47 LengthBox margin; 48 LengthBox padding;
|
D | NinePieceImage.h | 51 LengthBox imageSlices; 63 …NinePieceImage(PassRefPtr<StyleImage>, LengthBox imageSlices, bool fill, const BorderImageLengthBo… 73 const LengthBox& imageSlices() const { return m_data->imageSlices; } in imageSlices() 74 void setImageSlices(const LengthBox& slices) { m_data.access()->imageSlices = slices; } in setImageSlices() 115 m_data.access()->imageSlices = LengthBox(0); in setMaskDefaults()
|
D | StyleVisualData.h | 51 LengthBox clip;
|
D | NinePieceImage.cpp | 42 NinePieceImage::NinePieceImage(PassRefPtr<StyleImage> image, LengthBox imageSlices, bool fill, cons… in NinePieceImage()
|
D | RenderStyle.h | 487 LengthBox borderImageSlices() const { return surround->border.image().imageSlices(); } in borderImageSlices() 537 LengthBox clip() const { return visual->clip; } in clip() 661 …LengthBox maskBoxImageSlices() const { return rareNonInheritedData->m_maskBoxImage.imageSlices(); } in maskBoxImageSlices() 689 LengthBox paddingBox() const { return surround->padding; } in paddingBox() 1001 void setBorderImageSlices(LengthBox); 1058 void setClip(LengthBox box) { SET_VAR(visual, clip, box); } in setClip() 1126 void setMaskBoxImageSlices(LengthBox slices) in setMaskBoxImageSlices() 1160 void resetMargin() { SET_VAR(surround, margin, LengthBox(Fixed)); } in resetMargin() 1168 void resetPadding() { SET_VAR(surround, padding, LengthBox(Auto)); } in resetPadding() 1169 void setPaddingBox(const LengthBox& b) { SET_VAR(surround, padding, b); } in setPaddingBox()
|
D | RenderStyle.cpp | 339 static bool positionedObjectMoved(const LengthBox& a, const LengthBox& b, const Length& width) in positionedObjectMoved() 1590 void RenderStyle::setBorderImageSlices(LengthBox slices) in setBorderImageSlices()
|
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/ |
D | CSSPropertyAnimation.cpp | 184 static inline LengthBox blendFunc(const AnimationBase* anim, const LengthBox& from, const LengthBox… in blendFunc() 193 LengthBox result(blendFunc(anim, from.top(), to.top(), progress), in blendFunc() 966 …gPropertyWrappers->append(new PropertyWrapper<LengthBox>(CSSPropertyBorderImageSlice, &RenderStyle… in ensurePropertyMap() 971 …gPropertyWrappers->append(new PropertyWrapper<LengthBox>(CSSPropertyWebkitMaskBoxImageSlice, &Rend… in ensurePropertyMap() 1022 …gPropertyWrappers->append(new PropertyWrapper<LengthBox>(CSSPropertyClip, &RenderStyle::clip, &Ren… in ensurePropertyMap()
|
/external/chromium_org/third_party/WebKit/Source/core/animation/css/ |
D | CSSAnimatableValueFactory.cpp | 116 inline static PassRefPtr<AnimatableValue> createFromLengthBox(const LengthBox& lengthBox, const Ren… in createFromLengthBox() 141 inline static PassRefPtr<AnimatableValue> createFromLengthBoxAndBool(const LengthBox lengthBox, con… in createFromLengthBoxAndBool()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | AnimatedStyleBuilder.cpp | 92 LengthBox animatableValueToLengthBox(const AnimatableValue* value, const StyleResolverState& state,… in animatableValueToLengthBox() 95 return LengthBox( in animatableValueToLengthBox()
|
D | CSSToStyleMap.cpp | 574 LengthBox box; in mapNinePieceImageSlice()
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/ |
D | StyleBuilderFunctions.cpp.tmpl | 174 image.setImageSlices(LengthBox({{ (["Length(0, Fixed)"]*4) | join(", ") }})); 177 image.setImageSlices(LengthBox({{ (["Length(100, Percent)"]*4) | join(", ") }}));
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderTheme.cpp | 134 …LengthBox borderBox(style->borderTopWidth(), style->borderRightWidth(), style->borderBottomWidth()… in adjustStyle() 164 …LengthBox paddingBox = m_platformTheme->controlPadding(part, style->font().fontDescription(), styl… in adjustStyle()
|