HomeSort by relevance Sort by last modified time
    Searched defs:opacity (Results 1 - 18 of 18) sorted by null

  /external/webkit/WebCore/svg/
SVGFEFloodElement.cpp 47 float opacity = filterStyle->svgStyle()->floodOpacity(); local
49 RefPtr<FilterEffect> effect = FEFlood::create(color, opacity);
SVGGradientElement.cpp 162 float opacity; local
167 opacity = stopStyle->svgStyle()->stopOpacity();
178 opacity = stopStyle->svgStyle()->stopOpacity();
181 stops.append(makeGradientStop(stopOffset, makeRGBA(color.red(), color.green(), color.blue(), int(opacity * 255.))));
  /external/webkit/WebCore/rendering/
RenderForeignObject.cpp 58 float opacity = style()->opacity(); local
59 if (opacity < 1.0f)
60 childPaintInfo.context->beginTransparencyLayer(opacity);
64 if (opacity < 1.0f)
SVGRenderSupport.cpp 98 float opacity = style->opacity(); local
99 if (opacity < 1.0f) {
101 paintInfo.context->beginTransparencyLayer(opacity);
177 float opacity = style->opacity(); local
178 if (opacity < 1.0f)
181 // This needs to be done separately from opacity, because if both properties are set,
RenderMedia.cpp 363 // update() might alter the opacity of the element, especially if we are in the middle
365 float opacityBeforeChangingStyle = m_panel->renderer() ? m_panel->renderer()->style()->opacity() : 0;
445 float animateFrom = m_panel->renderer()->style()->opacity();
469 void RenderMedia::changeOpacity(HTMLElement* e, float opacity)
474 s->setOpacity(opacity);
475 // z-index can't be auto if opacity is used
487 float opacity = narrowPrecisionToFloat(m_opacityAnimationFrom + (m_opacityAnimationTo - m_opacityAnimationFrom) * time / m_opacityAnimationDuration); local
488 changeOpacity(m_panel.get(), opacity);
RenderObject.h 339 // Per SVG 1.1 objectBoundingBox ignores clipping, masking, filter effects, opacity and stroke-width.
348 // respecting clipping, masking, filters, opacity, stroke-width and markers
650 bool isTransparent() const { return style()->opacity() < 1.0f; }
651 float opacity() const { return style()->opacity(); } function in class:WebCore::RenderObject
    [all...]
  /external/webkit/WebCore/rendering/style/
StyleRareNonInheritedData.h 85 float opacity; // Whether or not we're transparent. member in class:WebCore::StyleRareNonInheritedData
SVGRenderStyleDefs.h 142 float opacity; member in class:WebCore::StyleFillData
161 float opacity; member in class:WebCore::StyleStrokeData
186 float opacity; member in class:WebCore::StyleStopData
RenderStyle.h 612 float opacity() const { return rareNonInheritedData->opacity; } function in class:WebCore::RenderStyle
    [all...]
  /external/webkit/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 108 float opacity; member in struct:WebCore::PlatformPainterState
127 , opacity(1.0)
152 opacity = other->opacity;
199 // (= no changes) and an alpha of 1.0 - opacity, so the destination
200 // pixels will be fully transparent when opacity == 1.0 and
201 // unchanged when opacity == 0.0.
203 const VGfloat values[] = { 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0 - opacity };
251 if (opacity >= (1.0 - FLT_EPSILON))
255 VGfloat values[] = { 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, opacity };
462 float PainterOpenVG::opacity() const function in class:WebCore::PainterOpenVG
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
WKCACFLayer.h 188 void setOpacity(float opacity) { CACFLayerSetOpacity(layer(), opacity); setNeedsCommit(); } local
189 float opacity() const { return CACFLayerGetOpacity(layer()); } function in class:WebCore::WKCACFLayer
  /external/webkit/WebCore/platform/graphics/
GraphicsLayer.h 260 float opacity() const { return m_opacity; } function in class:WebCore::GraphicsLayer
261 virtual void setOpacity(float opacity) { m_opacity = opacity; }
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 181 painter.setOpacity(p->opacity());
195 qreal opacity; member in struct:WebCore::TransparencyLayer
788 void GraphicsContext::beginTransparencyLayer(float opacity)
809 layer->opacity = opacity;
824 p->setOpacity(layer->opacity);
912 void GraphicsContext::setAlpha(float opacity)
917 p->setOpacity(opacity);
    [all...]
GraphicsLayerQt.cpp 181 float opacity; member in struct:WebCore::GraphicsLayerQtImpl::ContentData
185 , opacity(1.f)
211 float opacity; member in struct:WebCore::GraphicsLayerQtImpl::State
221 State(): maskLayer(0), opacity(1.f), preserves3D(false), masksToBounds(false),
481 if ((m_changeMask & OpacityChange) && m_state.opacity != m_layer->opacity())
482 setOpacity(m_layer->opacity());
520 m_state.opacity = m_layer->opacity();
764 if (!m_impl->m_opacityAnimationRunning && opacity() != o
    [all...]
  /external/webkit/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js     [all...]
  /external/webkit/WebCore/inspector/front-end/
inspector.js 792 const propertyUnit = {opacity: ""};
    [all...]
  /external/webkit/WebCore/css/
CSSParser.cpp 5338 const char* const opacity = "opacity"; local
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PhoneWindow.java 1937 int opacity = PixelFormat.OPAQUE; local
    [all...]

Completed in 2086 milliseconds