/external/webkit/Source/WebCore/rendering/ |
D | RenderTable.cpp | 853 unsigned borderWidth = 0; in calcBorderStart() local 859 borderWidth = tb.width(); in calcBorderStart() 866 borderWidth = max(borderWidth, static_cast<unsigned>(gb.width())); in calcBorderStart() 879 borderWidth = max(borderWidth, static_cast<unsigned>(sb.width())); in calcBorderStart() 893 borderWidth = max(borderWidth, static_cast<unsigned>(cb.width())); in calcBorderStart() 895 borderWidth = max(borderWidth, static_cast<unsigned>(rb.width())); in calcBorderStart() 898 return (borderWidth + (style()->isLeftToRightDirection() ? 0 : 1)) / 2; in calcBorderStart() 910 unsigned borderWidth = 0; in calcBorderEnd() local 916 borderWidth = tb.width(); in calcBorderEnd() 924 borderWidth = max(borderWidth, static_cast<unsigned>(gb.width())); in calcBorderEnd() [all …]
|
D | RenderTableSection.cpp | 766 unsigned borderWidth = 0; in setCellLogicalWidths() local 772 borderWidth = sb.width(); in setCellLogicalWidths() 777 if (rb.style() > BHIDDEN && rb.width() > borderWidth) in setCellLogicalWidths() 778 borderWidth = rb.width(); in setCellLogicalWidths() 793 if (gb.style() > BHIDDEN && gb.width() > borderWidth) in setCellLogicalWidths() 794 borderWidth = gb.width(); in setCellLogicalWidths() 795 if (cb.style() > BHIDDEN && cb.width() > borderWidth) in setCellLogicalWidths() 796 borderWidth = cb.width(); in setCellLogicalWidths() 801 if (cb.style() > BHIDDEN && cb.width() > borderWidth) in setCellLogicalWidths() 802 borderWidth = cb.width(); in setCellLogicalWidths() [all …]
|
D | RenderThemeSafari.cpp | 1056 const short borderWidth = 2; in adjustSearchFieldStyle() local 1057 style->setBorderLeftWidth(borderWidth); in adjustSearchFieldStyle() 1059 style->setBorderRightWidth(borderWidth); in adjustSearchFieldStyle() 1061 style->setBorderBottomWidth(borderWidth); in adjustSearchFieldStyle() 1063 style->setBorderTopWidth(borderWidth); in adjustSearchFieldStyle()
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
D | GLExtras.cpp | 101 int borderWidth = RING_BORDER_WIDTH; in drawRegion() local 103 borderWidth *= 2; in drawRegion() 104 line.fLeft = r.fLeft - borderWidth; in drawRegion() 105 line.fRight = r.fRight + borderWidth; in drawRegion() 106 line.fTop = r.fTop - borderWidth; in drawRegion() 107 line.fBottom = r.fBottom + borderWidth; in drawRegion()
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | RenderThemeGtk3.cpp | 302 GtkBorder borderWidth; in renderButton() local 303 gtk_style_context_get_border(context, static_cast<GtkStateFlags>(flags), &borderWidth); in renderButton() 305 …buttonRect = IntRect(buttonRect.x() + borderWidth.left + focusPad, buttonRect.y() + borderWidth.to… in renderButton() 306 … buttonRect.width() - (2 * focusPad + borderWidth.left + borderWidth.right), in renderButton() 307 … buttonRect.height() - (2 * focusPad + borderWidth.top + borderWidth.bottom)); in renderButton() 389 GtkBorder borderWidth = { 0, 0, 0, 0 }; in popupInternalPaddingLeft() local 391 getComboBoxMetrics(style, borderWidth, focusWidth, separatorWidth); in popupInternalPaddingLeft() 392 int left = borderWidth.left + focusWidth; in popupInternalPaddingLeft() 400 GtkBorder borderWidth = { 0, 0, 0, 0 }; in popupInternalPaddingRight() local 402 getComboBoxMetrics(style, borderWidth, focusWidth, separatorWidth); in popupInternalPaddingRight() [all …]
|
/external/webkit/Source/WebCore/editing/ |
D | DeleteButtonController.cpp | 207 const int borderWidth = 4; in createDeletionUI() local 213 …style->setProperty(CSSPropertyTop, String::number(-borderWidth - m_target->renderBox()->borderTop(… in createDeletionUI() 214 …style->setProperty(CSSPropertyRight, String::number(-borderWidth - m_target->renderBox()->borderRi… in createDeletionUI() 215 …style->setProperty(CSSPropertyBottom, String::number(-borderWidth - m_target->renderBox()->borderB… in createDeletionUI() 216 …style->setProperty(CSSPropertyLeft, String::number(-borderWidth - m_target->renderBox()->borderLef… in createDeletionUI() 217 …style->setProperty(CSSPropertyBorder, String::number(borderWidth) + "px solid rgba(0, 0, 0, 0.6)"); in createDeletionUI() 237 …ng::number((-buttonHeight / 2) - m_target->renderBox()->borderTop() - (borderWidth / 2) + buttonBo… in createDeletionUI() 238 …ring::number((-buttonWidth / 2) - m_target->renderBox()->borderLeft() - (borderWidth / 2)) + "px"); in createDeletionUI()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | Popover.js | 83 const borderWidth = 25; 121 … if (newElementPosition.y + newElementPosition.height + arrowHeight - borderWidth >= totalHeight) 151 … this.element.positionAt(newElementPosition.x - borderWidth, newElementPosition.y - borderWidth); 152 this.element.style.width = newElementPosition.width + borderWidth * 2 + "px"; 153 this.element.style.height = newElementPosition.height + borderWidth * 2 + "px";
|
D | TimelinePanel.js | 703 const borderWidth = 4; 704 var workingArea = clientWidth - minWidth - borderWidth; 711 widthWithChildren += borderWidth + minWidth;
|
/external/libvorbis/examples/ |
D | frameview.pl | 59 $toplevel->optionAdd("$Xname*Button*borderWidth", '2',20); 65 $toplevel->optionAdd("$Xname*Scale*borderWidth", '1',20); 71 $toplevel->optionAdd("$Xname*Checkbutton*borderWidth", '2',20); 76 $toplevel->optionAdd("$Xname*borderWidth", 0,20); 138 $panel->optionAdd("$X2name*Button*borderWidth", '2',20); 144 $panel->optionAdd("$X2name*Checkbutton*borderWidth", '2',20); 151 $panel->optionAdd("$X2name*borderWidth", 0,20);
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
D | WebLayer.cpp | 103 float borderWidth = CACFLayerGetBorderWidth(layer()); in drawInContext() local 104 if (borderWidth > 0) { in drawInContext()
|
D | GraphicsLayerCACF.h | 87 virtual void setDebugBorder(const Color&, float borderWidth);
|
D | GraphicsLayerCACF.cpp | 407 void GraphicsLayerCACF::setDebugBorder(const Color& color, float borderWidth) in setDebugBorder() argument 411 m_layer->setBorderWidth(borderWidth); in setDebugBorder()
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
D | GraphicsLayerChromium.h | 95 virtual void setDebugBorder(const Color&, float borderWidth);
|
D | GraphicsLayerChromium.cpp | 449 void GraphicsLayerChromium::setDebugBorder(const Color& color, float borderWidth) in setDebugBorder() argument 453 m_layer->setBorderWidth(borderWidth); in setDebugBorder()
|
/external/chromium/chrome/browser/resources/ntp/ |
D | most_visited.js | 267 var borderWidth = 4; 270 var w = thumbWidth + 2 * borderWidth + 2 * marginWidth; 282 var left = rtl ? sumWidth - col * w - thumbWidth - 2 * borderWidth :
|
D | apps.js | 402 var borderWidth = 0; 406 width: width + marginWidth + borderWidth,
|
/external/webkit/Source/WebCore/platform/graphics/ca/ |
D | PlatformCALayer.h | 165 float borderWidth() const;
|
D | GraphicsLayerCA.h | 116 virtual void setDebugBorder(const Color&, float borderWidth);
|
/external/webkit/Source/WebCore/bindings/objc/ |
D | DOMCSS.h | 110 - (NSString *)borderWidth; 111 - (void)setBorderWidth:(NSString *)borderWidth;
|
D | DOMCSS.mm | 407 - (NSString *)borderWidth 412 - (void)setBorderWidth:(NSString *)borderWidth 414 [self setProperty:@"border-width" value:borderWidth priority:@""];
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
D | GraphicsLayerAndroid.h | 125 virtual void setDebugBorder(const Color&, float borderWidth);
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
D | CTableCombo.java | 553 int borderWidth = getBorderWidth(); in computeSize() local 554 height = Math.max(hHint, Math.max(textSize.y, arrowSize.y) + 2 * borderWidth); in computeSize() 555 width = Math.max(wHint, Math.max(textSize.x + arrowSize.x, tableWidth) + 2 * borderWidth); in computeSize()
|
/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
D | PlatformCALayerWinInternal.cpp | 102 float borderWidth = CACFLayerGetBorderWidth(caLayer); in displayCallback() local 103 if (borderWidth > 0) { in displayCallback()
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/ |
D | jquery.flot.min.js | 1 …borderWidth:2,borderColor:null,markings:null,markingsColor:"#f4f4f4",markingsLineWidth:2,clickable… property
|
/external/webkit/Source/WebCore/platform/graphics/ca/mac/ |
D | PlatformCALayerMac.mm | 636 float PlatformCALayer::borderWidth() const function 638 return [m_layer.get() borderWidth];
|