HomeSort by relevance Sort by last modified time
    Searched refs:shadowOffset (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebKit/win/
WebKitGraphics.cpp 112 (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);
WebKitGraphics.h 61 SIZE shadowOffset;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontChromiumWin.cpp 278 FloatSize shadowOffset;
282 if (m_graphicsContext->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace)) {
291 ExtTextOut(m_hdc, x + shadowOffset.width(), y + shadowOffset.height(), ETO_GLYPH_INDEX, 0, reinterpret_cast<const wchar_t*>(&glyphs[0]), numGlyphs, &advances[0]);
511 FloatSize shadowOffset;
515 if (graphicsContext->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace) && windowsCanHandleDrawTextShadow(graphicsContext)) {
519 state.draw(graphicsContext, hdc, static_cast<int>(point.x()) + shadowOffset.width(),
520 static_cast<int>(point.y() - fontMetrics().ascent()) + shadowOffset.height(), from, to);
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontMac.mm 218 FloatSize shadowOffset;
223 context->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
232 float shadowTextX = point.x() + shadowOffset.width();
234 float shadowTextY = point.y() + shadowOffset.height() * (context->shadowsIgnoreTransforms() ? -1 : 1);
246 context->setShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCGWin.cpp 358 FloatSize shadowOffset;
362 graphicsContext->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
371 float shadowTextX = point.x() + translation.width() + shadowOffset.width();
373 float shadowTextY = point.y() + translation.height() + shadowOffset.height() * (graphicsContext->shadowsIgnoreTransforms() ? -1 : 1);
377 CGContextSetTextPosition(cgContext, point.x() + translation.width() + shadowOffset.width() + font->syntheticBoldOffset(), point.y() + translation.height() + shadowOffset.height());
391 graphicsContext->setShadow(shadowOffset, shadowBlur, shadowColor, ColorSpaceDeviceRGB);
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp     [all...]
InlineTextBox.cpp 371 FloatSize shadowOffset(shadowX, shadowY);
378 shadowRect.move(shadowOffset);
382 extraOffset = FloatSize(0, 2 * textRect.height() + max(0.0f, shadowOffset.height()) + shadowBlur);
383 shadowOffset -= extraOffset;
386 context->setShadow(shadowOffset, shadowBlur, shadowColor, context->fillColorSpace());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 227 FloatSize shadowOffset;
232 bool hasShadow = context->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.cpp 138 m_state.shadowOffset = offset;
147 m_state.shadowOffset = offset;
159 m_state.shadowOffset = FloatSize();
169 && (m_state.shadowBlur || m_state.shadowOffset.width() || m_state.shadowOffset.height());
174 offset = m_state.shadowOffset;
GraphicsContext.h 195 FloatSize shadowOffset;
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 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);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontAndroid.cpp 99 FloatSize shadowOffset;
107 bool hasShadow = gc->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
HTMLConverter.mm 482 NSSize shadowOffset;
490 shadowOffset.width = [[shadowStyle substringWithRange:NSMakeRange(NSMaxRange(spaceRange), firstRange.location - NSMaxRange(spaceRange))] floatValue];
493 shadowOffset.height = -[[shadowStyle substringWithRange:NSMakeRange(NSMaxRange(spaceRange), secondRange.location - NSMaxRange(spaceRange))] floatValue];
499 [shadow setShadowOffset:shadowOffset];
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 906 m_state.shadowOffset = FloatSize(size.width(), -size.height());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp     [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLView.mm     [all...]

Completed in 472 milliseconds