Searched defs:effect (Results 1 - 25 of 117) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DReferenceFilter.cpp46 void ReferenceFilter::setLastEffect(PassRefPtr<FilterEffect> effect) argument
48 m_lastEffect = effect;
/external/chromium_org/ui/base/dragdrop/
H A Ddrag_drop_types_win.cc12 uint32 effect) {
14 if (effect & DROPEFFECT_LINK)
16 if (effect & DROPEFFECT_COPY)
18 if (effect & DROPEFFECT_MOVE)
11 DropEffectToDragOperation( uint32 effect) argument
H A Ddrag_source_win.cc30 HRESULT DragSourceWin::GiveFeedback(DWORD effect) { argument
/external/chromium_org/content/browser/web_contents/
H A Dweb_drag_utils_win.cc20 WebDragOperation WinDragOpToWebDragOp(DWORD effect) { argument
21 DCHECK(effect == DROPEFFECT_NONE || effect == DROPEFFECT_COPY ||
22 effect == DROPEFFECT_LINK || effect == DROPEFFECT_MOVE);
24 return WinDragOpMaskToWebDragOpMask(effect);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationStack.h52 void add(PassOwnPtrWillBeRawPtr<SampledEffect> effect) { m_effects.append(effect); } argument
H A DInertAnimation.h44 AnimationEffect* effect() const { return m_effect.get(); } function in class:blink::FINAL
H A DAnimation.h67 const AnimationEffect* effect() const { return m_effect.get(); } function in class:blink::FINAL
68 AnimationEffect* effect() { return m_effect.get(); } function in class:blink::FINAL
H A DElementAnimation.h50 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Dictionary& timingInputDictionary) argument
52 return animateInternal(element, effect, TimingInput::convert(timingInputDictionary));
55 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, double duration) argument
57 return animateInternal(element, effect, TimingInput::convert(duration));
60 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect) argument
62 return animateInternal(element, effect, Timing());
67 RefPtrWillBeRawPtr<AnimationEffect> effect = EffectInput::convert(&element, keyframeDictionaryVector, exceptionState); local
70 ASSERT(effect);
71 return animateInternal(element, effect.release(), TimingInput::convert(timingInputDictionary));
76 RefPtrWillBeRawPtr<AnimationEffect> effect local
85 RefPtrWillBeRawPtr<AnimationEffect> effect = EffectInput::convert(&element, keyframeDictionaryVector, exceptionState); local
110 animateInternal(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing) argument
[all...]
H A DInertAnimation.cpp37 PassRefPtrWillBeRawPtr<InertAnimation> InertAnimation::create(PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, bool paused) argument
39 return adoptRefWillBeNoop(new InertAnimation(effect, timing, paused));
42 InertAnimation::InertAnimation(PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, bool paused) argument
44 , m_effect(effect)
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFEMergeElement.cpp42 RefPtr<FilterEffect> effect = FEMerge::create(filter); local
43 FilterEffectVector& mergeInputs = effect->inputEffects();
54 return effect.release();
H A DSVGFEFloodElement.cpp38 bool SVGFEFloodElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
44 FEFlood* flood = static_cast<FEFlood*>(effect);
H A DSVGFEColorMatrixElement.cpp72 bool SVGFEColorMatrixElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
74 FEColorMatrix* colorMatrix = static_cast<FEColorMatrix*>(effect);
144 RefPtr<FilterEffect> effect = FEColorMatrix::create(filter, filterType, filterValues); local
145 effect->inputEffects().append(input1);
146 return effect.release();
H A DSVGFEComponentTransferElement.cpp93 RefPtr<FilterEffect> effect = FEComponentTransfer::create(filter, red, green, blue, alpha); local
94 effect->inputEffects().append(input1);
95 return effect.release();
H A DSVGFECompositeElement.cpp110 bool SVGFECompositeElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
112 FEComposite* composite = static_cast<FEComposite*>(effect);
163 RefPtr<FilterEffect> effect = FEComposite::create(filter, m_svgOperator->currentValue()->enumValue(), m_k1->currentValue()->value(), m_k2->currentValue()->value(), m_k3->currentValue()->value(), m_k4->currentValue()->value());
164 FilterEffectVector& inputEffects = effect->inputEffects();
168 return effect.release();
H A DSVGFEDisplacementMapElement.cpp97 bool SVGFEDisplacementMapElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
99 FEDisplacementMap* displacementMap = static_cast<FEDisplacementMap*>(effect);
141 RefPtr<FilterEffect> effect = FEDisplacementMap::create(filter, m_xChannelSelector->currentValue()->enumValue(), m_yChannelSelector->currentValue()->enumValue(), m_scale->currentValue()->value());
142 FilterEffectVector& inputEffects = effect->inputEffects();
146 return effect.release();
H A DSVGFETurbulenceElement.cpp85 bool SVGFETurbulenceElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
87 FETurbulence* turbulence = static_cast<FETurbulence*>(effect);
H A DSVGFEBlendElement.cpp120 bool SVGFEBlendElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
122 FEBlend* blend = static_cast<FEBlend*>(effect);
160 RefPtr<FilterEffect> effect = FEBlend::create(filter, toWebBlendMode(m_mode->currentValue()->enumValue()));
161 FilterEffectVector& inputEffects = effect->inputEffects();
165 return effect.release();
/external/skia/include/gpu/
H A DGrDrawEffect.h9 * effect subclass (e.g. GrGLEffect). It is used to by the backend-specific class to generate a
10 * cache key for the effect, generate code on a program cache miss, and to upload uniform values to
12 * In addition to the effect, it also communicates any changes between the relationship between
13 * the view matrix and local coordinate system since the effect was installed in its GrDrawState.
14 * The typical use case is that sometime after an effect was installed a decision was made to draw
16 * coord-change-matrix would be the inverse of the view matrix that was set when the effect was
27 const GrEffectRef* effect() const { return fEffectStage->getEffect(); } function in class:GrDrawEffect
30 const T& castEffect() const { return *static_cast<const T*>(this->effect()->get()); }
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_effects.h56 S_EFFECTS_INTERFACE *effect; member in struct:__anon30857
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_effects.h56 S_EFFECTS_INTERFACE *effect; member in struct:__anon30907
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_effects.h56 S_EFFECTS_INTERFACE *effect; member in struct:__anon30960
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
H A DSVGFilterBuilder.cpp35 void SVGFilterBuilder::add(const AtomicString& id, PassRefPtr<FilterEffect> effect) argument
38 m_lastEffect = effect;
45 m_lastEffect = effect;
67 RefPtr<FilterEffect> effect = prpEffect; local
69 // The effect must be a newly created filter effect.
70 ASSERT(!m_effectReferences.contains(effect));
72 m_effectReferences.add(effect, FilterEffectSet());
74 unsigned numberOfInputEffects = effect->inputEffects().size();
78 effectReferences(effect
91 clearResultsRecursive(FilterEffect* effect) argument
[all...]
H A DSVGFilterBuilder.h48 inline FilterEffectSet& effectReferences(FilterEffect* effect) argument
51 ASSERT(m_effectReferences.contains(effect));
52 return m_effectReferences.find(effect)->value;
74 // which depends on the key filter effect.
/external/skia/src/gpu/
H A DGrPaint.cpp15 GrEffectRef* effect = GrSimpleTextureEffect::Create(texture, matrix); local
16 this->addColorEffect(effect)->unref();
20 GrEffectRef* effect = GrSimpleTextureEffect::Create(texture, matrix); local
21 this->addCoverageEffect(effect)->unref();
27 GrEffectRef* effect = GrSimpleTextureEffect::Create(texture, matrix, params); local
28 this->addColorEffect(effect)->unref();
34 GrEffectRef* effect = GrSimpleTextureEffect::Create(texture, matrix, params); local
35 this->addCoverageEffect(effect)->unref();
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DReferenceFilterBuilder.cpp161 RefPtr<FilterEffect> effect = effectElement->build(builder.get(), parentFilter); local
162 if (!effect)
165 effectElement->setStandardAttributes(effect.get());
166 effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement.primitiveUnits()->currentValue()->enumValue(), parentFilter->sourceImageRect()));
169 effect->setOperatingColorSpace(colorSpace);
170 builder->add(AtomicString(effectElement->result()->currentValue()->value()), effect);

Completed in 1316 milliseconds

12345