HomeSort by relevance Sort by last modified time
    Searched full:borderwidth (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/webkit/Source/WebCore/rendering/
RenderTable.cpp 853 unsigned borderWidth = 0;
859 borderWidth = tb.width();
866 borderWidth = max(borderWidth, static_cast<unsigned>(gb.width()));
879 borderWidth = max(borderWidth, static_cast<unsigned>(sb.width()));
    [all...]
RenderTableSection.cpp 766 unsigned borderWidth = 0;
772 borderWidth = sb.width();
777 if (rb.style() > BHIDDEN && rb.width() > borderWidth)
778 borderWidth = rb.width();
793 if (gb.style() > BHIDDEN && gb.width() > borderWidth)
794 borderWidth = gb.width();
795 if (cb.style() > BHIDDEN && cb.width() > borderWidth)
796 borderWidth = cb.width();
801 if (cb.style() > BHIDDEN && cb.width() > borderWidth)
802 borderWidth = cb.width()
    [all...]
RenderThemeSafari.cpp     [all...]
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk3.cpp 302 GtkBorder borderWidth;
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 };
391 getComboBoxMetrics(style, borderWidth, focusWidth, separatorWidth)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
GLExtras.cpp 101 int borderWidth = RING_BORDER_WIDTH;
103 borderWidth *= 2;
104 line.fLeft = r.fLeft - borderWidth;
105 line.fRight = r.fRight + borderWidth;
106 line.fTop = r.fTop - borderWidth;
107 line.fBottom = r.fBottom + borderWidth;
  /external/webkit/Source/WebCore/inspector/front-end/
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";
  /external/webkit/Source/WebCore/editing/
DeleteButtonController.cpp 207 const int borderWidth = 4;
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/libvorbis/examples/
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);
91 $toplevel->optionAdd("$Xname*Exit.borderWidth", 2,20);
100 $toplevel->optionAdd("$Xname*Entry.borderWidth", 1,20);
105 $toplevel->optionAdd("$Xname*Field.borderWidth", 1,20);
108 $toplevel->optionAdd("$Xname*Label.borderWidth", 1,20);
138 $panel->optionAdd("$X2name*Button*borderWidth", '2',20);
144 $panel->optionAdd("$X2name*Checkbutton*borderWidth", '2',20)
    [all...]
  /external/opencv/cv/src/
cvoptflowbm.cpp 127 /* have not full width - BorderWidth */
130 int BorderWidth;
315 BorderWidth = imgSize.width % blockSize.width;
316 if( BorderWidth )
319 BorderWidth = blockSize.width;
373 CurrentWidth = (j == NumberBlocksX - 1) ? BorderWidth : blockSize.width;
  /external/webkit/Source/WebCore/platform/graphics/win/
WebLayer.cpp 103 float borderWidth = CACFLayerGetBorderWidth(layer());
104 if (borderWidth > 0) {
GraphicsLayerCACF.h 87 virtual void setDebugBorder(const Color&, float borderWidth);
GraphicsLayerCACF.cpp 407 void GraphicsLayerCACF::setDebugBorder(const Color& color, float borderWidth)
411 m_layer->setBorderWidth(borderWidth);
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.h 125 virtual void setDebugBorder(const Color&, float borderWidth);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GraphicsLayerChromium.h 95 virtual void setDebugBorder(const Color&, float borderWidth);
GraphicsLayerChromium.cpp 449 void GraphicsLayerChromium::setDebugBorder(const Color& color, float borderWidth)
453 m_layer->setBorderWidth(borderWidth);
  /external/webkit/Source/WebCore/bindings/objc/
DOMCSS.h 110 - (NSString *)borderWidth;
111 - (void)setBorderWidth:(NSString *)borderWidth;
DOMCSS.mm 407 - (NSString *)borderWidth
412 - (void)setBorderWidth:(NSString *)borderWidth
414 [self setProperty:@"border-width" value:borderWidth priority:@""];
  /external/webkit/Source/WebCore/platform/graphics/ca/
PlatformCALayer.h 165 float borderWidth() const;
  /external/webkit/Source/WebCore/platform/graphics/ca/mac/
PlatformCALayerMac.mm 636 float PlatformCALayer::borderWidth() const
638 return [m_layer.get() borderWidth];
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWinInternal.cpp 102 float borderWidth = CACFLayerGetBorderWidth(caLayer);
103 if (borderWidth > 0) {
  /external/chromium/chrome/browser/resources/ntp/
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 :
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CTableCombo.java 553 int borderWidth = getBorderWidth();
554 height = Math.max(hHint, Math.max(textSize.y, arrowSize.y) + 2 * borderWidth);
555 width = Math.max(wHint, Math.max(textSize.x + arrowSize.x, tableWidth) + 2 * borderWidth);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xproto.h 467 CARD16 borderWidth B16;
1064 CARD16 width B16, height B16, borderWidth B16;
1107 CARD16 width B16, height B16, borderWidth B16;
1115 CARD16 width B16, height B16, borderWidth B16;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xproto.h 467 CARD16 borderWidth B16;
1064 CARD16 width B16, height B16, borderWidth B16;
1107 CARD16 width B16, height B16, borderWidth B16;
1115 CARD16 width B16, height B16, borderWidth B16;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xproto.h 467 CARD16 borderWidth B16;
1064 CARD16 width B16, height B16, borderWidth B16;
1107 CARD16 width B16, height B16, borderWidth B16;
1115 CARD16 width B16, height B16, borderWidth B16;
    [all...]

Completed in 2606 milliseconds

1 2 3