Searched refs:topColor (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/platform/win/
H A DWebCoreTextRenderer.h39 void WebCoreDrawDoubledTextAtPoint(GraphicsContext&, const String&, const IntPoint&, const Font&, const Color& topColor, const Color& bottomColor, int underlinedIndex = -1);
H A DWebCoreTextRenderer.cpp89 void WebCoreDrawDoubledTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& topColor, const Color& bottomColor, int underlinedIndex) argument
97 doDrawTextAtPoint(context, text, textPos, font, topColor, underlinedIndex);
H A DDragImageWin.cpp209 static const Color topColor(0, 0, 0, 255); // original alpha = 0.75
215 WebCoreDrawDoubledTextAtPoint(context, urlString, textPos, *urlFont, topColor, bottomColor);
222 WebCoreDrawDoubledTextAtPoint(context, label, textPos, *labelFont, topColor, bottomColor);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebKitNSStringExtras.h37 - (void)_web_drawDoubledAtPoint:(NSPoint)textPoint withTopColor:(NSColor *)topColor bottomColor:(NSColor *)bottomColor font:(NSFont *)font;
H A DWebKitNSStringExtras.mm118 withTopColor:(NSColor *)topColor
126 [self _web_drawAtPoint:textPoint font:font textColor:topColor allowingFontSmoothing:NO];
/external/webkit/Source/WebCore/platform/mac/
H A DDragImageMac.mm222 static void drawDoubledAtPoint(NSString *string, NSPoint textPoint, NSColor *topColor, NSColor *bottomColor, NSFont *font)
228 drawAtPoint(string, textPoint, font, topColor);
292 NSColor *topColor = [NSColor colorWithDeviceWhite:0.0f alpha:0.75f];
298 drawDoubledAtPoint(urlString, NSMakePoint(DragLabelBorderX, DragLabelBorderY - [urlFont descender]), topColor, bottomColor, urlFont);
303 drawDoubledAtPoint(label, NSMakePoint(DragLabelBorderX, imageSize.height - LabelBorderYOffset - [labelFont pointSize]), topColor, bottomColor, labelFont);
/external/webkit/Source/WebCore/rendering/
H A DRenderBoxModelObject.cpp1602 const Color& topColor = style->visitedDependentColor(CSSPropertyBorderTopColor); local
1637 bool upperLeftBorderStylesMatch = renderLeft && (topStyle == leftStyle) && (topColor == leftColor);
1638 bool upperRightBorderStylesMatch = renderRight && (topStyle == rightStyle) && (topColor == rightColor) && (topStyle != OUTSET) && (topStyle != RIDGE) && (topStyle != INSET) && (topStyle != GROOVE);
1644 || (topColor == leftColor && topTransparent == leftTransparent && topStyle >= OUTSET
1648 || (topColor == rightColor && topTransparent == rightTransparent && topStyle >= OUTSET
1658 drawLineForBoxSide(graphicsContext, x, ty, x2, ty + style->borderTopWidth(), BSTop, topColor, topStyle,
1686 BSTop, topColor, topStyle, true);
1712 BSTop, topColor, topStyle, false);
1794 || (topColor == leftColor && topTransparent == leftTransparent && leftStyle >= OUTSET
1861 || ((topColor
[all...]

Completed in 554 milliseconds