| /external/chromium_org/third_party/WebKit/Source/core/animation/ |
| AnimationStack.h | 51 void add(PassOwnPtrWillBeRawPtr<SampledEffect> effect) { m_effects.append(effect); }
|
| KeyframeEffectModelTest.cpp | 106 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 107 OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > values = effect->sample(0, 0.6, duration); 118 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 119 expectDoubleValue(5.0, effect->sample(0, 0.6, duration)->at(0)); 127 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 128 expectDoubleValue(3.0 * 0.4 + 5.0 * 0.6, effect->sample(0, 0.6, duration)->at(0)); 137 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 138 expectDoubleValue((7.0 + 3.0) * 0.4 + (7.0 + 5.0) * 0.6, effect->sample(0, 0.6, duration)->at(0)); 148 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 149 expectDoubleValue(3.8579516, effect->sample(0, 0.6, duration)->at(0)) 160 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 170 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 177 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 189 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 195 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()); local 207 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 219 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 236 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 252 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 271 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 308 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 330 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 346 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 363 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 372 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 393 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 412 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local 423 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); local [all...] |
| AnimationStack.cpp | 104 const SampledEffect& effect = *effects[i]; local 105 if (effect.priority() != priority || (cancelledAnimationPlayers && effect.animation() && cancelledAnimationPlayers->contains(effect.animation()->player()))) 107 if (newAnimations && effect.sortInfo().startTime() > timelineCurrentTime) { 111 copyToActiveInterpolationMap(effect.interpolations(), result); 127 SampledEffect& effect = *m_effects[i]; local 128 effect.removeReplacedInterpolationsIfNeeded(replacedProperties); 129 if (!effect.canChange()) { 130 for (size_t i = 0; i < effect.interpolations().size(); ++i [all...] |
| Animation.cpp | 49 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* target, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, Priority priority, PassOwnPtr<EventDelegate> eventDelegate) 51 return adoptRefWillBeNoop(new Animation(target, effect, timing, priority, eventDelegate)); 54 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Dictionary& timingInputDictionary) 57 return create(element, effect, TimingInput::convert(timingInputDictionary)); 59 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, double duration) 62 return create(element, effect, TimingInput::convert(duration)); 64 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* element, PassRefPtrWillBeRawPtr<AnimationEffect> effect) 67 return create(element, effect, Timing()); 91 Animation::Animation(Element* target, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, Priority priority, PassOwnPtr<EventDelegate> eventDelegate) 94 , m_effect(effect) [all...] |
| /external/chromium_org/third_party/skia/include/gpu/ |
| GrDrawEffect.h | 9 * 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()); }
|
| GrPaint.h | 88 * Appends an additional color effect to the color computation. 90 const GrEffectRef* addColorEffect(const GrEffectRef* effect, int attr0 = -1, int attr1 = -1) { 91 SkASSERT(NULL != effect); 92 if (!(*effect)->willUseInputColor()) { 95 SkNEW_APPEND_TO_TARRAY(&fColorStages, GrEffectStage, (effect, attr0, attr1)); 96 return effect; 100 * Appends an additional coverage effect to the coverage computation. 102 const GrEffectRef* addCoverageEffect(const GrEffectRef* effect, int attr0 = -1, int attr1 = -1) { 103 SkASSERT(NULL != effect); 104 if (!(*effect)->willUseInputColor()) [all...] |
| /external/chromium_org/third_party/skia/src/gpu/ |
| GrPaint.cpp | 15 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/skia/src/gpu/effects/ |
| GrCustomCoordsTextureEffect.h | 17 * The output color of this effect is a modulation of the input color and a sample from a texture. 24 AutoEffectUnref effect(SkNEW_ARGS(GrCustomCoordsTextureEffect, (tex, p))); 25 return CreateEffectRef(effect);
|
| GrConvolutionEffect.h | 16 * A convolution effect. The kernel is specified as an array of 2 * half-width 31 AutoEffectUnref effect(SkNEW_ARGS(GrConvolutionEffect, (tex, 37 return CreateEffectRef(effect); 47 AutoEffectUnref effect(SkNEW_ARGS(GrConvolutionEffect, (tex, 53 return CreateEffectRef(effect);
|
| GrDistanceFieldTextureEffect.h | 18 * The output color of this effect is a modulation of the input color and a sample from a 29 AutoEffectUnref effect(SkNEW_ARGS(GrDistanceFieldTextureEffect, (tex, params, 35 AutoEffectUnref effect(SkNEW_ARGS(GrDistanceFieldTextureEffect, (tex, params, 38 return CreateEffectRef(effect); 77 * The output color of this effect is a modulation of the input color and samples from a 88 AutoEffectUnref effect(SkNEW_ARGS(GrDistanceFieldLCDTextureEffect, 91 return CreateEffectRef(effect);
|
| /external/skia/include/gpu/ |
| GrDrawEffect.h | 9 * 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()); }
|
| GrPaint.h | 88 * Appends an additional color effect to the color computation. 90 const GrEffectRef* addColorEffect(const GrEffectRef* effect, int attr0 = -1, int attr1 = -1) { 91 SkASSERT(NULL != effect); 92 if (!(*effect)->willUseInputColor()) { 95 SkNEW_APPEND_TO_TARRAY(&fColorStages, GrEffectStage, (effect, attr0, attr1)); 96 return effect; 100 * Appends an additional coverage effect to the coverage computation. 102 const GrEffectRef* addCoverageEffect(const GrEffectRef* effect, int attr0 = -1, int attr1 = -1) { 103 SkASSERT(NULL != effect); 104 if (!(*effect)->willUseInputColor()) [all...] |
| /external/skia/src/gpu/ |
| GrPaint.cpp | 15 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/skia/src/gpu/effects/ |
| GrCustomCoordsTextureEffect.h | 17 * The output color of this effect is a modulation of the input color and a sample from a texture. 24 AutoEffectUnref effect(SkNEW_ARGS(GrCustomCoordsTextureEffect, (tex, p))); 25 return CreateEffectRef(effect);
|
| GrConvolutionEffect.h | 16 * A convolution effect. The kernel is specified as an array of 2 * half-width 31 AutoEffectUnref effect(SkNEW_ARGS(GrConvolutionEffect, (tex, 37 return CreateEffectRef(effect); 47 AutoEffectUnref effect(SkNEW_ARGS(GrConvolutionEffect, (tex, 53 return CreateEffectRef(effect);
|
| GrDistanceFieldTextureEffect.h | 18 * The output color of this effect is a modulation of the input color and a sample from a 29 AutoEffectUnref effect(SkNEW_ARGS(GrDistanceFieldTextureEffect, (tex, params, 35 AutoEffectUnref effect(SkNEW_ARGS(GrDistanceFieldTextureEffect, (tex, params, 38 return CreateEffectRef(effect); 77 * The output color of this effect is a modulation of the input color and samples from a 88 AutoEffectUnref effect(SkNEW_ARGS(GrDistanceFieldLCDTextureEffect, 91 return CreateEffectRef(effect);
|
| /hardware/qcom/audio/voice_processing/ |
| voice_processing.c | 49 // Effect/Preprocessor state 57 // Effect context 62 struct session_s *session; // session the effect is on 80 // Default Effect descriptors. Device specific descriptors should be defined in 84 // UUIDs for effect types have been generated from http://www.itu.int/ITU-T/asn1/uuid.html 159 // Effect functions 167 static int effect_set_state(struct effect_s *effect, uint32_t state) 170 ALOGV("effect_set_state() id %d, new %d old %d", effect->id, state, effect->state); 173 switch(effect->state) 481 struct effect_s *effect = (struct effect_s *)self; local 513 struct effect_s *effect = (struct effect_s *)self; local 640 struct effect_s *effect = (struct effect_s *)self; local [all...] |
| /external/chromium_org/content/browser/web_contents/ |
| web_drag_utils_win.h | 14 blink::WebDragOperation WinDragOpToWebDragOp(DWORD effect);
|
| /external/chromium_org/ui/base/dragdrop/ |
| drag_drop_types.h | 30 static int DropEffectToDragOperation(uint32 effect);
|
| /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);
|
| desktop_drop_target_win.h | 39 DWORD effect) OVERRIDE; 43 DWORD effect) OVERRIDE; 48 DWORD effect) OVERRIDE; 58 DWORD effect,
|
| /frameworks/base/media/mca/effect/java/android/media/effect/effects/ |
| BackDropperEffect.java | 17 package android.media.effect.effects; 21 import android.media.effect.EffectContext; 22 import android.media.effect.FilterGraphEffect; 23 import android.media.effect.EffectUpdateListener; 29 * Background replacement Effect. 35 * Effect parameters:
|
| /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
| SkiaImageFilterBuilder.cpp | 58 PassRefPtr<SkImageFilter> SkiaImageFilterBuilder::build(FilterEffect* effect, ColorSpace colorSpace, bool destinationRequiresValidPreMultipliedPixels) 60 if (!effect) 63 bool requiresPMColorValidation = effect->mayProduceInvalidPreMultipliedPixels() && destinationRequiresValidPreMultipliedPixels; 65 if (SkImageFilter* filter = effect->getImageFilter(colorSpace, requiresPMColorValidation)) 69 RefPtr<SkImageFilter> origFilter = requiresPMColorValidation ? effect->createImageFilter(this) : effect->createImageFilterWithoutValidation(this); 70 RefPtr<SkImageFilter> filter = transformColorSpace(origFilter.get(), effect->operatingColorSpace(), colorSpace); 71 effect->setImageFilter(colorSpace, requiresPMColorValidation, filter.get()); 73 effect->setImageFilter(effect->operatingColorSpace(), requiresPMColorValidation, origFilter.get()) [all...] |
| /external/chromium_org/v8/src/ |
| effects.h | 19 // An effect can either be definite, if the write is known to have taken place, 25 // effect cancels out any previous effect upon sequencing. A possible effect 26 // merges into a previous effect, i.e., type bounds are merged. Alternative 27 // composition always merges bounds. It yields a possible effect if at least 29 struct Effect { 35 Effect() : modality(DEFINITE) {} 36 Effect(Bounds b, Modality m = DEFINITE) : modality(m), bounds(b) {} 38 // The unknown effect 90 Effect effect = Lookup(var); local [all...] |
| /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...] |