HomeSort by relevance Sort by last modified time
    Searched defs:effect (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEMergeElement.cpp 42 RefPtr<FilterEffect> effect = FEMerge::create(filter); local
43 FilterEffectVector& mergeInputs = effect->inputEffects();
54 return effect.release();
SVGFEColorMatrixElement.cpp 72 bool SVGFEColorMatrixElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
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();
SVGFEComponentTransferElement.cpp 93 RefPtr<FilterEffect> effect = FEComponentTransfer::create(filter, red, green, blue, alpha); local
94 effect->inputEffects().append(input1);
95 return effect.release();
SVGFEDiffuseLightingElement.cpp 83 bool SVGFEDiffuseLightingElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
85 FEDiffuseLighting* diffuseLighting = static_cast<FEDiffuseLighting*>(effect);
102 ASSERT(effect->filter());
109 return lightSource->setPosition(effect->filter()->resolve3dPoint(lightElement->position()));
111 return lightSource->setPointsAt(effect->filter()->resolve3dPoint(lightElement->pointsAt()));
174 RefPtr<FilterEffect> effect = FEDiffuseLighting::create(filter, color, m_surfaceScale->currentValue()->value(), m_diffuseConstant->currentValue()->value(), local
176 effect->inputEffects().append(input1);
177 return effect.release();
SVGFESpecularLightingElement.cpp 88 bool SVGFESpecularLightingElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
90 FESpecularLighting* specularLighting = static_cast<FESpecularLighting*>(effect);
109 ASSERT(effect->filter());
116 return lightSource->setPosition(effect->filter()->resolve3dPoint(lightElement->position()));
118 return lightSource->setPointsAt(effect->filter()->resolve3dPoint(lightElement->pointsAt()));
181 RefPtr<FilterEffect> effect = FESpecularLighting::create(filter, color, m_surfaceScale->currentValue()->value(), m_specularConstant->currentValue()->value(), local
183 effect->inputEffects().append(input1);
184 return effect.release();
SVGFEConvolveMatrixElement.cpp 131 bool SVGFEConvolveMatrixElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
133 FEConvolveMatrix* convolveMatrix = static_cast<FEConvolveMatrix*>(effect);
239 RefPtr<FilterEffect> effect = FEConvolveMatrix::create(filter, local
243 effect->inputEffects().append(input1);
244 return effect.release();
  /cts/tests/tests/effect/src/android/effect/cts/
EffectTest.java 17 package android.effect.cts;
20 import android.media.effect.Effect;
21 import android.media.effect.EffectContext;
22 import android.media.effect.EffectFactory;
35 /** This is the effect context we will run the tests in */
58 /** Assert an effect context can be created and attached to GL context. */
74 "Effect '" + effectName + "' supported",
82 assertFalse("Empty effect name unsupported", factory.isEffectSupported(""));
83 assertFalse("Bogus effect name unsupported", factory.isEffectSupported("!BOGUS!"))
91 Effect effect = factory.createEffect(effectName); local
100 Effect effect = factory.createEffect(EffectFactory.EFFECT_SEPIA); local
    [all...]
GLEnv.java 17 package android.effect.cts;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
ElementAnimation.h 50 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Dictionary& timingInputDictionary)
52 return animateInternal(element, effect, TimingInput::convert(timingInputDictionary));
55 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, double duration)
57 return animateInternal(element, effect, TimingInput::convert(duration));
60 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect)
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 = EffectInput::convert(&element, keyframeDictionaryVector, exceptionState) local
85 RefPtrWillBeRawPtr<AnimationEffect> effect = EffectInput::convert(&element, keyframeDictionaryVector, exceptionState); local
    [all...]
InertAnimation.h 44 AnimationEffect* effect() const { return m_effect.get(); } function in class:blink::FINAL
Animation.h 67 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
AnimationStack.cpp 105 const SampledEffect& effect = *effects[i]; local
106 if (effect.priority() != priority || (cancelledAnimationPlayers && effect.animation() && cancelledAnimationPlayers->contains(effect.animation()->player())))
108 copyToActiveInterpolationMap(effect.interpolations(), result);
124 SampledEffect& effect = *m_effects[i]; local
125 effect.removeReplacedInterpolationsIfNeeded(replacedProperties);
126 if (!effect.canChange()) {
127 for (size_t i = 0; i < effect.interpolations().size(); ++i)
128 replacedProperties.set(toStyleInterpolation(effect.interpolations()[i].get())->id())
    [all...]
AnimationTimelineTest.cpp 140 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()); local
141 RefPtrWillBeRawPtr<Animation> anim = Animation::create(element.get(), effect, timing);
157 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()); local
159 RefPtrWillBeRawPtr<Animation> anim = Animation::create(element.get(), effect, timing);
KeyframeEffectModelTest.cpp 104 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
105 OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > values = effect->sample(0, 0.6, duration);
116 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
117 expectDoubleValue(5.0, effect->sample(0, 0.6, duration)->at(0));
125 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
126 expectDoubleValue(3.0 * 0.4 + 5.0 * 0.6, effect->sample(0, 0.6, duration)->at(0));
135 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
136 expectDoubleValue((7.0 + 3.0) * 0.4 + (7.0 + 5.0) * 0.6, effect->sample(0, 0.6, duration)->at(0));
145 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
146 expectDoubleValue(3.8579516, effect->sample(0, 0.6, duration)->at(0))
156 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
166 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
173 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
185 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
191 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()); local
203 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
215 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
232 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
248 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
267 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
304 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
326 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
342 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
359 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
368 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
389 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
408 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
419 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFilterBuilder.cpp 35 void SVGFilterBuilder::add(const AtomicString& id, PassRefPtr<FilterEffect> effect)
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->inputEffect(i)).add(effect.get())
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/builders/
GrGLFragmentOnlyProgramBuilder.cpp 34 // emit the per-effect code for both color and coverage effects
66 const GrProcessor& effect = *stage.getProcessor(); local
68 SkSTArray<2, GrGLProcessor::TransformedCoords> coords(effect.numTransforms());
69 SkSTArray<4, GrGLProcessor::TextureSampler> samplers(effect.numTextures());
72 this->emitSamplers(effect, &samplers);
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_drag_drop_client_win.cc 38 DWORD effect; local
43 &effect);
48 effect = DROPEFFECT_NONE;
50 return ui::DragDropTypes::DropEffectToDragOperation(effect);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
ReferenceFilterBuilder.cpp 161 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);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathDashPathEffectTest.java 42 PathDashPathEffect effect = new PathDashPathEffect(shape(), ADVANCE, 0, local
46 p.setPathEffect(effect);
CornerPathEffectTest.java 47 PathEffect effect = new CornerPathEffect(RADIUS); local
53 pathPaint.setPathEffect(effect);
58 // draw the path using the corner path effect
DashPathEffectTest.java 44 PathEffect effect = new DashPathEffect(PATTERN, OFFSET); local
56 paint.setPathEffect(effect);
DiscretePathEffectTest.java 43 DiscretePathEffect effect = new DiscretePathEffect(SEGMENT_LENGTH, DEVIATION); local
49 paint.setPathEffect(effect);
  /external/chromium_org/ui/base/dragdrop/
drop_target_win.cc 42 DWORD* effect) {
47 reinterpret_cast<POINT*>(&cursor_position), *effect); local
52 *effect = OnDragEnter(current_data_object_, key_state, screen_pt, *effect);
58 DWORD* effect) {
62 drop_helper->DragOver(reinterpret_cast<POINT*>(&cursor_position), *effect); local
65 *effect = OnDragOver(current_data_object_, key_state, screen_pt, *effect);
84 DWORD* effect) {
89 reinterpret_cast<POINT*>(&cursor_position), *effect);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioEffectTest.java 111 // // Test case 1.0: test constructor from effect type and get effect ID
116 // //Test case 1.1: test constructor from effect uuid
126 //Test case 1.3: test getEnabled() failure when called on released effect
132 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local
136 assertNotNull("could not create AudioEffect", effect);
137 effect.release();
139 effect.getEnabled();
147 fail("Effect library not loaded");
173 //Test case 1.5: test auxiliary effect attachement on MediaPlaye
292 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local
322 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local
594 AudioEffect effect = null; local
622 AudioEffect effect = null; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
uinput.h 29 struct ff_effect effect; member in struct:uinput_ff_upload

Completed in 2728 milliseconds

1 2 3