Searched defs:borderWidth (Results 1 - 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/win/
H A DWebLayer.cpp103 float borderWidth = CACFLayerGetBorderWidth(layer()); local
104 if (borderWidth > 0) {
H A DGraphicsLayerCACF.cpp407 void GraphicsLayerCACF::setDebugBorder(const Color& color, float borderWidth) argument
411 m_layer->setBorderWidth(borderWidth);
/external/webkit/Source/WebCore/editing/
H A DDeleteButtonController.cpp207 const int borderWidth = 4; local
213 style->setProperty(CSSPropertyTop, String::number(-borderWidth - m_target->renderBox()->borderTop()) + "px");
214 style->setProperty(CSSPropertyRight, String::number(-borderWidth - m_target->renderBox()->borderRight()) + "px");
215 style->setProperty(CSSPropertyBottom, String::number(-borderWidth - m_target->renderBox()->borderBottom()) + "px");
216 style->setProperty(CSSPropertyLeft, String::number(-borderWidth - m_target->renderBox()->borderLeft()) + "px");
217 style->setProperty(CSSPropertyBorder, String::number(borderWidth) + "px solid rgba(0, 0, 0, 0.6)");
237 style->setProperty(CSSPropertyTop, String::number((-buttonHeight / 2) - m_target->renderBox()->borderTop() - (borderWidth / 2) + buttonBottomShadowOffset) + "px");
238 style->setProperty(CSSPropertyLeft, String::number((-buttonWidth / 2) - m_target->renderBox()->borderLeft() - (borderWidth / 2)) + "px");
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGLExtras.cpp124 int borderWidth = RING_BORDER_WIDTH; local
126 borderWidth *= 2;
127 line.fLeft = r.fLeft - borderWidth;
128 line.fRight = r.fRight + borderWidth;
129 line.fTop = r.fTop - borderWidth;
130 line.fBottom = r.fBottom + borderWidth;
H A DGraphicsLayerAndroid.cpp911 void GraphicsLayerAndroid::setDebugBorder(const Color& color, float borderWidth) argument
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCALayerWinInternal.cpp102 float borderWidth = CACFLayerGetBorderWidth(caLayer); local
103 if (borderWidth > 0) {
H A DPlatformCALayerWin.cpp498 float PlatformCALayer::borderWidth() const function in class:PlatformCALayer
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DGraphicsLayerChromium.cpp449 void GraphicsLayerChromium::setDebugBorder(const Color& color, float borderWidth) argument
453 m_layer->setBorderWidth(borderWidth);
/external/webkit/Source/WebCore/platform/gtk/
H A DRenderThemeGtk3.cpp302 GtkBorder borderWidth; local
303 gtk_style_context_get_border(context, static_cast<GtkStateFlags>(flags), &borderWidth);
305 buttonRect = IntRect(buttonRect.x() + borderWidth.left + focusPad, buttonRect.y() + borderWidth.top + focusPad,
306 buttonRect.width() - (2 * focusPad + borderWidth.left + borderWidth.right),
307 buttonRect.height() - (2 * focusPad + borderWidth.top + borderWidth.bottom));
389 GtkBorder borderWidth = { 0, 0, 0, 0 }; local
391 getComboBoxMetrics(style, borderWidth, focusWidt
400 GtkBorder borderWidth = { 0, 0, 0, 0 }; local
411 GtkBorder borderWidth = { 0, 0, 0, 0 }; local
419 GtkBorder borderWidth = { 0, 0, 0, 0 }; local
451 GtkBorder borderWidth; local
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderTable.cpp852 unsigned borderWidth = 0; local
858 borderWidth = tb.width();
865 borderWidth = max(borderWidth, static_cast<unsigned>(gb.width()));
878 borderWidth = max(borderWidth, static_cast<unsigned>(sb.width()));
892 borderWidth = max(borderWidth, static_cast<unsigned>(cb.width()));
894 borderWidth = max(borderWidth, static_cas
909 unsigned borderWidth = 0; local
984 int borderWidth = 0; local
1011 int borderWidth = 0; local
1038 int borderWidth = 0; local
1068 int borderWidth = 0; local
[all...]
H A DRenderTableSection.cpp760 unsigned borderWidth = 0; local
766 borderWidth = sb.width();
771 if (rb.style() > BHIDDEN && rb.width() > borderWidth)
772 borderWidth = rb.width();
787 if (gb.style() > BHIDDEN && gb.width() > borderWidth)
788 borderWidth = gb.width();
789 if (cb.style() > BHIDDEN && cb.width() > borderWidth)
790 borderWidth = cb.width();
795 if (cb.style() > BHIDDEN && cb.width() > borderWidth)
796 borderWidth
811 unsigned borderWidth = 0; local
862 unsigned borderWidth = 0; local
906 unsigned borderWidth = 0; local
[all...]
H A DRenderThemeSafari.cpp1056 const short borderWidth = 2; local
1057 style->setBorderLeftWidth(borderWidth);
1059 style->setBorderRightWidth(borderWidth);
1061 style->setBorderBottomWidth(borderWidth);
1063 style->setBorderTopWidth(borderWidth);
H A DRenderObject.cpp1289 int borderWidth = max(-outlineStyle->outlineOffset(), max(borderRight, max(style()->borderTopRightRadius().width().calcValue(boxWidth), style()->borderBottomRightRadius().width().calcValue(boxWidth)))) + max(ow, shadowRight); local
1290 IntRect rightRect(newOutlineBox.x() + min(newOutlineBox.width(), oldOutlineBox.width()) - borderWidth,
1292 width + borderWidth,
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DGraphicsLayerCA.cpp1984 void GraphicsLayerCA::setDebugBorder(const Color& color, float borderWidth) argument
1988 m_layer->setBorderWidth(borderWidth);

Completed in 1002 milliseconds