Searched refs:shadow (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium/base/
H A Dat_exit.cc12 // use the shadow version of the constructor. We don't protect this for
21 AtExitManager::AtExitManager(bool shadow) : next_manager_(g_top_manager) { argument
22 DCHECK(shadow || !g_top_manager);
H A Dat_exit.h34 // destruction. This allows you to shadow another AtExitManager.
35 explicit AtExitManager(bool shadow);
H A Dlazy_instance_unittest.cc63 base::ShadowingAtExitManager shadow; local
84 base::ShadowingAtExitManager shadow; local
/external/webkit/WebCore/rendering/style/
H A DSVGRenderStyleDefs.cpp220 , shadow(other.shadow ? new ShadowData(*other.shadow) : 0)
226 if ((!shadow && other.shadow) || (shadow && !other.shadow))
228 if (shadow && other.shadow && (*shadow !
[all...]
H A DSVGRenderStyle.cpp148 static void getSVGShadowExtent(ShadowData* shadow, int& top, int& right, int& bottom, int& left) argument
155 int blurAndSpread = shadow->blur + shadow->spread;
157 top = min(top, shadow->y - blurAndSpread);
158 right = max(right, shadow->x + blurAndSpread);
159 bottom = max(bottom, shadow->y + blurAndSpread);
160 left = min(left, shadow->x - blurAndSpread);
165 ShadowData* svgShadow = shadow();
176 ShadowData* svgShadow = shadow();
H A DSVGRenderStyle.h106 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL_OWNPTR(ShadowData, shadowSVG, shadow, Shadow, shadow, 0)
H A DSVGRenderStyleDefs.h302 OwnPtr<ShadowData> shadow; member in class:WebCore::StyleShadowSVGData
/external/webkit/WebCore/css/
H A DSVGCSSPropertyNames.in50 -webkit-svg-shadow
H A DmediaControlsQuickTime.css79 text-shadow: black 0px 1px 1px;
101 text-shadow: black 0px 1px 1px;
167 text-shadow: black 0px 1px 1px;
H A Dview-source.css128 -webkit-box-shadow: black 0px 2px 5px;
H A DCSSPropertyNames.in130 text-shadow
186 -webkit-box-shadow
H A DSVGCSSComputedStyleDeclaration.cpp170 return valueForShadow(svgStyle->shadow(), propertyID);
H A DSVGCSSStyleSelector.cpp530 return svgstyle->setShadow(m_parentStyle->svgStyle()->shadow() ? new ShadowData(*m_parentStyle->svgStyle()->shadow()) : 0);
549 // -webkit-svg-shadow does should not have a spread or style
H A Dwml.css124 text-shadow: none;
H A DCSSComputedStyleDeclaration.cpp565 PassRefPtr<CSSValue> CSSComputedStyleDeclaration::valueForShadow(const ShadowData* shadow, int id) const argument
567 if (!shadow)
573 for (const ShadowData* s = shadow; s; s = s->next) {
H A Dhtml.css313 text-shadow: none;
/external/webkit/WebCore/rendering/
H A DInlineFlowBox.cpp294 for (ShadowData* shadow = rt->style()->textShadow(); shadow; shadow = shadow->next) {
295 childOverflowLeft = min(childOverflowLeft, shadow->x - shadow->blur + leftGlyphOverflow);
296 childOverflowRight = max(childOverflowRight, shadow->x + shadow->blur + rightGlyphOverflow);
542 // box-shadow on root line boxes is applying to the block and not to the lines.
569 for (ShadowData* shadow
990 ShadowData* shadow = styleToUse->textShadow(); local
[all...]
H A DInlineTextBox.cpp276 static void paintTextWithShadows(GraphicsContext* context, const Font& font, const TextRun& textRun, int startOffset, int endOffset, int truncationPoint, const IntPoint& textOrigin, int x, int y, int w, int h, ShadowData* shadow, bool stroked) argument
287 if (shadow) {
288 IntSize shadowOffset(shadow->x, shadow->y);
289 int shadowBlur = shadow->blur;
290 const Color& shadowColor = shadow->color;
292 if (shadow->next || stroked || !opaque) {
315 if (!shadow)
318 if (shadow->next || stroked || !opaque)
323 shadow
448 ShadowData* shadow = paintInfo.forceBlackText ? 0 : pseudoStyle->textShadow(); local
647 paintDecoration(GraphicsContext* context, int tx, int ty, int deco, ShadowData* shadow) argument
[all...]
H A DSVGRenderSupport.cpp104 if (ShadowData* shadow = svgStyle->shadow()) {
106 paintInfo.context->setShadow(IntSize(shadow->x, shadow->y), shadow->blur, shadow->color, style->colorSpace());
183 if (style->svgStyle()->shadow())
H A DRenderBoxModelObject.cpp1313 for (ShadowData* shadow = s->boxShadow(); shadow; shadow = shadow->next) {
1314 if (shadow->style != shadowStyle)
1317 IntSize shadowOffset(shadow->x, shadow->y);
1318 int shadowBlur = shadow->blur;
1319 int shadowSpread = shadow->spread;
1320 Color& shadowColor = shadow
[all...]
/external/dropbear/
H A Dincludes.h115 #include <shadow.h>
/external/webkit/WebCore/page/mac/
H A DFrameMac.mm419 ShadowData* shadow = style->textShadow();
420 if (shadow) {
422 [s setShadowOffset:NSMakeSize(shadow->x, shadow->y)];
423 [s setShadowBlurRadius:shadow->blur];
424 [s setShadowColor:nsColor(shadow->color)];
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_sysvideo.h70 specified -- the desired bpp will be emulated with a shadow
279 SDL_Surface *shadow; member in struct:SDL_VideoDevice
430 #define SDL_ShadowSurface (current_video->shadow)
/external/webkit/WebCore/inspector/front-end/
H A Dinspector.css157 text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0;
161 text-shadow: none;
187 text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0;
345 .glyph.shadow {
362 button.status-bar-item .glyph.shadow {
389 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
591 text-shadow: none;
918 -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
989 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
1037 text-shadow
[all...]
/external/blktrace/btt/
H A Dbtt_plot.py302 leg = ax.legend(legends, 'best', shadow=True)

Completed in 413 milliseconds

12