HomeSort by relevance Sort by last modified time
    Searched refs:shadowColor (Results 1 - 25 of 30) sorted by null

1 2

  /external/webkit/WebCore/platform/graphics/mac/
FontMac.mm 117 Color shadowColor;
119 context->getShadow(shadowSize, shadowBlur, shadowColor);
121 bool hasSimpleShadow = context->textDrawingMode() == cTextFill && shadowColor.isValid() && !shadowBlur;
126 Color shadowFillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), shadowColor.alpha() * fillColor.alpha() / 255);
145 context->setShadow(shadowSize, shadowBlur, shadowColor, fillColorSpace);
  /external/webkit/WebCore/platform/graphics/cairo/
FontCairo.cpp 74 Color shadowColor;
76 context->getShadow(shadowSize, shadowBlur, shadowColor);
82 Color shadowFillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), shadowColor.alpha() * fillColor.alpha() / 255);
115 context->createPlatformShadow(shadowBuffer.release(), shadowColor, shadowRect, kernelSize);
189 context->setShadow(shadowSize, shadowBlur, shadowColor, DeviceColorSpace);
ImageCairo.cpp 139 Color shadowColor;
140 if (context->getShadow(shadowSize, shadowBlur, shadowColor)) {
145 shadowColor = colorWithOverrideAlpha(shadowColor.rgb(), (shadowColor.alpha() * context->getAlpha()) / 255.f);
155 context->createPlatformShadow(shadowBuffer.release(), shadowColor, shadowRect, kernelSize);
GraphicsContextCairo.cpp 158 Color shadowColor;
159 if (!context->getShadow(shadowSize, shadowBlur, shadowColor))
192 context->createPlatformShadow(shadowBuffer.release(), shadowColor, shadowRect, kernelSize);
556 Color shadowColor;
558 if (!context->getShadow(shadowSize, shadowBlur, shadowColor))
571 context->createPlatformShadow(shadowBuffer.release(), shadowColor, shadowRect, kernelSize);
848 void GraphicsContext::createPlatformShadow(PassOwnPtr<ImageBuffer> buffer, const Color& shadowColor, const FloatRect& shadowRect, float kernelSize)
855 setColor(cr, shadowColor);
875 setColor(cr, shadowColor);
    [all...]
  /external/webkit/WebCore/platform/graphics/
GraphicsContextPrivate.h 77 Color shadowColor;
GraphicsContext.cpp 136 m_common->state.shadowColor = color;
144 m_common->state.shadowColor = Color();
152 color = m_common->state.shadowColor;
GraphicsContext.h 316 void createPlatformShadow(PassOwnPtr<ImageBuffer> buffer, const Color& shadowColor, const FloatRect& shadowRect, float kernelSize);
  /external/webkit/WebKit/win/
WebKitGraphics.h 63 CGColorRef shadowColor;
WebKitGraphics.cpp 116 (info->shadowOffset.cx || info->shadowOffset.cy || info->shadowBlur || info->shadowColor))
117 context.setShadow(info->shadowOffset, info->shadowBlur, info->shadowColor, DeviceColorSpace);
  /external/webkit/WebCore/platform/graphics/chromium/
FontChromiumWin.cpp 278 Color shadowColor;
279 if (m_graphicsContext->getShadow(shadowSize, shadowBlur, shadowColor)) {
282 ASSERT(shadowColor.alpha() == 255);
285 COLORREF textColor = skia::SkColorToCOLORREF(SkColorSetARGB(255, shadowColor.red(), shadowColor.green(), shadowColor.blue()));
488 Color shadowColor;
489 if (graphicsContext->getShadow(shadowSize, shadowBlur, shadowColor) && windowsCanHandleDrawTextShadow(graphicsContext)) {
490 COLORREF textColor = skia::SkColorToCOLORREF(SkColorSetARGB(255, shadowColor.red(), shadowColor.green(), shadowColor.blue()))
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 316 Color shadowColor;
317 if (getShadow(shadowSize, shadowBlur, shadowColor)) {
321 p->fillRect(shadowRect, QColor(shadowColor));
353 Color shadowColor;
354 if (textDrawingMode() == cTextFill && getShadow(shadowSize, shadowBlur, shadowColor)) {
357 p->setPen(shadowColor);
455 Color shadowColor;
458 if (getShadow(shadowSize, shadowBlur, shadowColor)) {
462 pen.setColor(shadowColor);
490 Color shadowColor;
    [all...]
FontQt.cpp 106 Color shadowColor;
107 bool hasShadow = ctx->textDrawingMode() == cTextFill && ctx->getShadow(shadowSize, shadowBlur, shadowColor);
141 p->setPen(QColor(shadowColor));
158 p->setPen(QColor(shadowColor));
  /external/webkit/WebCore/platform/graphics/gtk/
FontGtk.cpp 215 Color shadowColor;
217 context->getShadow(shadowSize, shadowBlur, shadowColor);
223 Color shadowFillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), shadowColor.alpha() * fillColor.alpha() / 255);
262 context->setShadow(shadowSize, shadowBlur, shadowColor, DeviceColorSpace);
  /external/webkit/WebCore/platform/graphics/win/
FontCGWin.cpp 357 Color shadowColor;
358 graphicsContext->getShadow(shadowSize, shadowBlur, shadowColor);
360 bool hasSimpleShadow = graphicsContext->textDrawingMode() == cTextFill && shadowColor.isValid() && !shadowBlur;
365 Color shadowFillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), shadowColor.alpha() * fillColor.alpha() / 255);
384 graphicsContext->setShadow(shadowSize, shadowBlur, shadowColor, DeviceColorSpace);
  /external/webkit/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 227 Color shadowColor;
229 bool hasShadow = context->getShadow(shadowSize, shadowBlur, shadowColor);
230 return (hasShadow && (shadowBlur == 0) && (shadowColor.alpha() == 255) && (context->fillColor().alpha() == 255));
  /external/webkit/WebCore/html/canvas/
CanvasRenderingContext2D.idl 60 attribute [ConvertNullToNullString] DOMString shadowColor;
CanvasRenderingContext2D.h 93 String shadowColor() const;
CanvasRenderingContext2D.cpp 304 String CanvasRenderingContext2D::shadowColor() const
887 CGColorRef shadowColor = CGColorCreate(colorSpace, components);
889 CGContextSetShadowWithColor(dc->platformContext(), adjustedShadowSize(width, -height), blur, shadowColor);
890 CGColorRelease(shadowColor);
    [all...]
  /external/webkit/WebCore/rendering/
RenderBoxModelObject.cpp     [all...]
InlineTextBox.cpp 290 const Color& shadowColor = shadow->color;
302 context->setShadow(shadowOffset, shadowBlur, shadowColor, fillColorSpace);
    [all...]
RenderThemeChromiumMac.mm 466 color = convertNSColorToColor([NSColor shadowColor]);
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp     [all...]
  /external/webkit/WebCore/inspector/front-end/
SummaryBar.js 201 ctx.shadowColor = "rgba(0, 0, 0, 0.5)";
SourceFrame.js 556 ctx.shadowColor = "rgb(255, 255, 255)";
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinKeyboard.java 569 final int shadowColor = mRes.getColor(isBlack
574 paint.setColor(shadowColor);
    [all...]

Completed in 498 milliseconds

1 2