Searched refs:shadowColor (Results 1 - 23 of 23) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/mac/
H A DFontMac.mm220 Color shadowColor;
223 context->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
225 bool hasSimpleShadow = context->textDrawingMode() == TextModeFill && shadowColor.isValid() && !shadowBlur && !platformData.isColorBitmapFont() && (!context->shadowsIgnoreTransforms() || context->getCTM().isIdentityOrTranslationOrFlipped());
230 Color shadowFillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), shadowColor.alpha() * fillColor.alpha() / 255);
246 context->setShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
/external/webkit/Source/WebKit/win/
H A DWebKitGraphics.h63 CGColorRef shadowColor; member in struct:WebTextRenderInfo
H A DWebKitGraphics.cpp112 (info->shadowOffset.cx || info->shadowOffset.cy || info->shadowBlur || info->shadowColor))
113 context.setShadow(FloatSize(info->shadowOffset.cx, info->shadowOffset.cy), info->shadowBlur, info->shadowColor, ColorSpaceDeviceRGB);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DFontChromiumWin.cpp280 Color shadowColor; local
282 if (m_graphicsContext->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace)) {
285 ASSERT(shadowColor.alpha() == 255);
288 COLORREF textColor = skia::SkColorToCOLORREF(SkColorSetARGB(255, shadowColor.red(), shadowColor.green(), shadowColor.blue()));
513 Color shadowColor; local
515 if (graphicsContext->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace) && windowsCanHandleDrawTextShadow(graphicsContext)) {
516 COLORREF textColor = skia::SkColorToCOLORREF(SkColorSetARGB(255, shadowColor.red(), shadowColor
[all...]
/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontCGWin.cpp360 Color shadowColor; local
362 graphicsContext->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
364 bool hasSimpleShadow = graphicsContext->textDrawingMode() == TextModeFill && shadowColor.isValid() && !shadowBlur && (!graphicsContext->shadowsIgnoreTransforms() || graphicsContext->getCTM().isIdentityOrTranslationOrFlipped());
369 Color shadowFillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), shadowColor.alpha() * fillColor.alpha() / 255);
391 graphicsContext->setShadow(shadowOffset, shadowBlur, shadowColor, ColorSpaceDeviceRGB);
/external/webkit/Source/WebKit2/UIProcess/
H A DFindIndicator.cpp122 static Color shadowColor() function in namespace:WebKit
153 graphicsContext.setShadow(FloatSize(shadowOffsetX, shadowOffsetY), shadowBlurRadius, shadowColor(), ColorSpaceSRGB);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DSkiaFontWin.cpp229 Color shadowColor; local
232 bool hasShadow = context->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
233 return !hasShadow || (!shadowBlur && (shadowColor.alpha() == 255) && (context->fillColor().alpha() == 255));
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsContextQt.cpp515 QColor shadowColor = shadow->m_color; local
516 shadowColor.setAlphaF(shadowColor.alphaF() * p->brush().color().alphaF());
517 shadowPainter->fillPath(platformPath, shadowColor);
524 QColor shadowColor = shadow->m_color; local
525 shadowColor.setAlphaF(shadowColor.alphaF() * p->brush().color().alphaF());
526 p->fillPath(platformPath, shadowColor);
575 QColor shadowColor = shadow->m_color; local
576 shadowColor
708 QColor shadowColor = shadow->m_color; local
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.cpp140 m_state.shadowColor = color;
149 m_state.shadowColor = color;
161 m_state.shadowColor = Color();
168 return m_state.shadowColor.isValid() && m_state.shadowColor.alpha()
176 color = m_state.shadowColor;
H A DGraphicsContext.h207 Color shadowColor; member in struct:WebCore::GraphicsContextState
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DGraphicsContextCG.cpp662 return state.shadowColor.isValid() && state.shadowColor.alpha() && state.shadowBlur;
705 ShadowBlur contextShadow(shadowBlur, m_state.shadowOffset, m_state.shadowColor, m_state.shadowColorSpace);
734 ShadowBlur contextShadow(shadowBlur, m_state.shadowOffset, m_state.shadowColor, m_state.shadowColorSpace);
767 ShadowBlur contextShadow(shadowBlur, m_state.shadowOffset, m_state.shadowColor, m_state.shadowColorSpace);
819 ShadowBlur contextShadow(shadowBlur, m_state.shadowOffset, m_state.shadowColor, m_state.shadowColorSpace);
/external/webkit/Source/WebCore/rendering/
H A DRenderBoxModelObject.cpp2085 const Color& shadowColor = shadow->color(); local
2107 context->setLegacyShadow(shadowOffset, shadowBlur, shadowColor, s->colorSpace());
2109 context->setShadow(shadowOffset, shadowBlur, shadowColor, s->colorSpace());
2153 context->fillRoundedRect(border, shadowColor, s->colorSpace());
2155 context->fillRect(border.rect(), shadowColor, s->colorSpace());
2175 Color fillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), 255);
2195 context->setLegacyShadow(shadowOffset, shadowBlur, shadowColor, s->colorSpace());
2197 context->setShadow(shadowOffset, shadowBlur, shadowColor,
[all...]
H A DInlineTextBox.cpp373 const Color& shadowColor = shadow->color(); local
386 context->setShadow(shadowOffset, shadowBlur, shadowColor, context->fillColorSpace());
H A DRenderThemeMac.mm434 color = convertNSColorToColor([NSColor shadowColor]);
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp1219 Color shadowColor; local
1222 getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
1244 OwnPtr<HBRUSH> brush = createBrush(shadowColor);
1637 Color shadowColor; local
1640 && getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace)
1641 && shadowColor.alpha();
1645 shadowRGBColor = RGB(shadowColor.red(), shadowColor.green(), shadowColor.blue());
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.h105 String shadowColor() const;
H A DCanvasRenderingContext2D.idl60 attribute [ConvertNullToNullString] DOMString shadowColor;
H A DCanvasRenderingContext2D.cpp497 String CanvasRenderingContext2D::shadowColor() const function in class:WebCore::CanvasRenderingContext2D
1156 CGColorRef shadowColor = CGColorCreate(colorSpace, components); local
1158 CGContextSetShadowWithColor(dc->platformContext(), adjustedShadowSize(width, -height), blur, shadowColor);
1159 CGColorRelease(shadowColor);
/external/webkit/Source/WebCore/inspector/front-end/
H A DSummaryBar.js201 ctx.shadowColor = "rgba(0, 0, 0, 0.5)";
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
H A DFontAndroid.cpp98 Color shadowColor; local
104 bool hasShadow = gc->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
/external/webkit/Source/WebCore/platform/mac/
H A DHTMLConverter.mm481 NSColor *shadowColor = [NSColor colorWithCalibratedRed:red green:green blue:blue alpha:alpha];
498 [shadow setShadowColor:shadowColor];
/external/webkit/Source/WebKit/mac/WebView/
H A DWebHTMLView.mm4313 NSColor *color = [shadow shadowColor];
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 511 milliseconds