| /external/chromium_org/third_party/WebKit/Source/core/svg/ |
| SVGFEConvolveMatrixElement.cpp | 132 bool SVGFEConvolveMatrixElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) 134 FEConvolveMatrix* convolveMatrix = static_cast<FEConvolveMatrix*>(effect); 240 RefPtr<FilterEffect> effect = FEConvolveMatrix::create(filter, local 244 effect->inputEffects().append(input1); 245 return effect.release();
|
| SVGFETurbulenceElement.cpp | 107 bool SVGFETurbulenceElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) 109 FETurbulence* turbulence = static_cast<FETurbulence*>(effect);
|
| /external/chromium_org/third_party/skia/src/effects/gradients/ |
| SkSweepGradient.cpp | 211 AutoEffectUnref effect(SkNEW_ARGS(GrSweepGradient, (ctx, shader, matrix))); 212 return CreateEffectRef(effect); 251 GrEffectRef* effect; local 253 shader->asNewEffect(context, paint, NULL, &grColor, &effect); 254 return effect;
|
| SkTwoPointConicalGradient_gpu.cpp | 66 AutoEffectUnref effect(SkNEW_ARGS(Edge2PtConicalEffect, (ctx, shader, matrix, tm))); 67 return CreateEffectRef(effect); 206 GrEffectRef* effect; local 208 shader->asNewEffect(context, paint, NULL, &grColor, &effect); 209 return effect; 374 AutoEffectUnref effect(SkNEW_ARGS(FocalOutside2PtConicalEffect, (ctx, shader, matrix, tm, focalX))); 375 return CreateEffectRef(effect); 480 GrEffectRef* effect; local 482 shader->asNewEffect(context, paint, NULL, &grColor, &effect); 483 return effect; [all...] |
| /external/skia/src/effects/gradients/ |
| SkSweepGradient.cpp | 211 AutoEffectUnref effect(SkNEW_ARGS(GrSweepGradient, (ctx, shader, matrix))); 212 return CreateEffectRef(effect); 251 GrEffectRef* effect; local 253 shader->asNewEffect(context, paint, NULL, &grColor, &effect); 254 return effect;
|
| SkTwoPointConicalGradient_gpu.cpp | 66 AutoEffectUnref effect(SkNEW_ARGS(Edge2PtConicalEffect, (ctx, shader, matrix, tm))); 67 return CreateEffectRef(effect); 206 GrEffectRef* effect; local 208 shader->asNewEffect(context, paint, NULL, &grColor, &effect); 209 return effect; 374 AutoEffectUnref effect(SkNEW_ARGS(FocalOutside2PtConicalEffect, (ctx, shader, matrix, tm, focalX))); 375 return CreateEffectRef(effect); 480 GrEffectRef* effect; local 482 shader->asNewEffect(context, paint, NULL, &grColor, &effect); 483 return effect; [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/animation/ |
| CompositorAnimationsTest.cpp | 105 bool isCandidateForAnimationOnCompositor(const Timing& timing, const AnimationEffect& effect) 107 return CompositorAnimations::instance()->isCandidateForAnimationOnCompositor(timing, effect); 109 void getAnimationOnCompositor(Timing& timing, AnimatableValueKeyframeEffectModel& effect, Vector<OwnPtr<blink::WebAnimation> >& animations) 111 return CompositorAnimationsImpl::getAnimationOnCompositor(timing, std::numeric_limits<double>::quiet_NaN(), effect, animations); 539 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = createKeyframeEffectModel( local 576 getAnimationOnCompositor(m_timing, *effect.get(), result); 584 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = createKeyframeEffectModel( local 623 getAnimationOnCompositor(m_timing, *effect.get(), result); 631 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = createKeyframeEffectModel( local 684 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = createKeyframeEffectModel( local 741 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(frames); local 802 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(frames); local 852 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = createKeyframeEffectModel( local [all...] |
| /cts/tests/tests/security/testeffect/ |
| Android.mk | 17 # Test effect library
|
| /device/asus/fugu/libaudio/ |
| audio_hal_thunks.cpp | 69 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) 72 (void) effect; 76 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) 79 (void) effect; 332 effect_handle_t effect) 337 return tstream->impl->addAudioEffect(effect); 341 effect_handle_t effect) 346 return tstream->impl->removeAudioEffect(effect);
|
| AudioStreamIn.cpp | 240 status_t AudioStreamIn::addAudioEffect(effect_handle_t effect) 242 (void) effect; 247 status_t AudioStreamIn::removeAudioEffect(effect_handle_t effect) 249 (void) effect;
|
| /frameworks/av/include/media/ |
| AudioEffect.h | 65 * NO_INIT effect library failed to initialize 74 * Returns an effect descriptor during effect 78 * index: index of the queried effect. 79 * descriptor: address where the effect descriptor should be returned. 84 * NO_INIT effect library failed to initialize 86 * INVALID_OPERATION effect list has changed since last execution of queryNumberEffects() 89 * *descriptor: updated with effect descriptor 95 * Returns the descriptor for the specified effect uuid. 98 * uuid: pointer to effect uuid [all...] |
| /frameworks/base/media/java/android/media/audiofx/ |
| AudioEffect.java | 42 * <p>To apply the audio effect to a specific AudioTrack or MediaPlayer instance, 47 * <p>Creating an AudioEffect object will create the corresponding effect engine in the audio 48 * framework if no instance of the same effect type exists in the specified audio session. 51 * control of the effect engine or not depending on the priority parameter. If priority is higher 52 * than the priority used by the current effect engine owner, the control will be transfered to the 54 * application will be notified of changes in effect engine state or control ownership by the 66 // effect type UUIDs are taken from hardware/libhardware/include/hardware/audio_effect.h 69 * The following UUIDs define effect types corresponding to standard audio 75 * UUID for environmental reverberation effect 80 * UUID for preset reverberation effect 1197 AudioEffect effect = (AudioEffect) ((WeakReference) effect_ref).get(); local [all...] |
| /hardware/libhardware_legacy/audio/ |
| AudioHardwareGeneric.h | 95 virtual status_t addAudioEffect(effect_handle_t effect) { return NO_ERROR; } 96 virtual status_t removeAudioEffect(effect_handle_t effect) { return NO_ERROR; }
|
| /hardware/libhardware_legacy/include/hardware_legacy/ |
| AudioHardwareInterface.h | 184 virtual status_t addAudioEffect(effect_handle_t effect) = 0; 185 virtual status_t removeAudioEffect(effect_handle_t effect) = 0;
|
| /external/chromium_org/third_party/skia/include/core/ |
| SkMaskFilter.h | 56 @param margin if not null, return the buffer dx/dy need when calculating the effect. Used when 67 * explicit input mask. Per-pixel, the effect receives the incoming mask's coverage as 72 * If effect is non-NULL, a new GrEffect instance is stored in it. The caller assumes ownership 73 * of the effect and must unref it. 75 virtual bool asNewEffect(GrEffectRef** effect, 148 * provided BlurRec parameter. If this effect cannot be represented as a BlurRec, return false
|
| /external/chromium_org/third_party/skia/include/effects/ |
| SkMatrixConvolutionImageFilter.h | 89 virtual bool asNewEffect(GrEffectRef** effect,
|
| /external/chromium_org/third_party/skia/src/gpu/ |
| GrOvalRenderer.cpp | 58 * The output of this effect is a modulation of the input color and coverage for a circle, 166 * The output of this effect is a modulation of the input color and coverage for an axis-aligned 297 * The output of this effect is a modulation of the input color and coverage for an ellipse, 544 GrEffectRef* effect = CircleEdgeEffect::Create(isStrokeOnly && innerRadius > 0); local 546 drawState->addCoverageEffect(effect, kCircleEdgeAttrIndex)->unref(); 684 GrEffectRef* effect = EllipseEdgeEffect::Create(isStrokeOnly && local 689 drawState->addCoverageEffect(effect, kEllipseCenterAttrIndex, kEllipseEdgeAttrIndex)->unref(); 803 GrEffectRef* effect = DIEllipseEdgeEffect::Create(mode); local 807 drawState->addCoverageEffect(effect, kEllipseOuterOffsetAttrIndex, 901 GrEffectRef* effect = GrRRectEffect::Create(edgeType, *inner); local 923 GrEffectRef* effect = GrRRectEffect::Create(edgeType, *outer); local 1054 GrEffectRef* effect = CircleEdgeEffect::Create(isStrokeOnly); local 1158 GrEffectRef* effect = EllipseEdgeEffect::Create(isStrokeOnly); local [all...] |
| /external/skia/include/core/ |
| SkMaskFilter.h | 56 @param margin if not null, return the buffer dx/dy need when calculating the effect. Used when 67 * explicit input mask. Per-pixel, the effect receives the incoming mask's coverage as 72 * If effect is non-NULL, a new GrEffect instance is stored in it. The caller assumes ownership 73 * of the effect and must unref it. 75 virtual bool asNewEffect(GrEffectRef** effect, 148 * provided BlurRec parameter. If this effect cannot be represented as a BlurRec, return false
|
| /external/skia/include/effects/ |
| SkMatrixConvolutionImageFilter.h | 89 virtual bool asNewEffect(GrEffectRef** effect,
|
| /external/skia/src/gpu/ |
| GrOvalRenderer.cpp | 58 * The output of this effect is a modulation of the input color and coverage for a circle, 166 * The output of this effect is a modulation of the input color and coverage for an axis-aligned 297 * The output of this effect is a modulation of the input color and coverage for an ellipse, 544 GrEffectRef* effect = CircleEdgeEffect::Create(isStrokeOnly && innerRadius > 0); local 546 drawState->addCoverageEffect(effect, kCircleEdgeAttrIndex)->unref(); 684 GrEffectRef* effect = EllipseEdgeEffect::Create(isStrokeOnly && local 689 drawState->addCoverageEffect(effect, kEllipseCenterAttrIndex, kEllipseEdgeAttrIndex)->unref(); 803 GrEffectRef* effect = DIEllipseEdgeEffect::Create(mode); local 807 drawState->addCoverageEffect(effect, kEllipseOuterOffsetAttrIndex, 901 GrEffectRef* effect = GrRRectEffect::Create(edgeType, *inner); local 923 GrEffectRef* effect = GrRRectEffect::Create(edgeType, *outer); local 1054 GrEffectRef* effect = CircleEdgeEffect::Create(isStrokeOnly); local 1158 GrEffectRef* effect = EllipseEdgeEffect::Create(isStrokeOnly); local [all...] |
| /hardware/libhardware/modules/audio/ |
| audio_hw.c | 119 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) 124 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) 206 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) 211 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
|
| /external/chromium_org/third_party/skia/gm/ |
| rrects.cpp | 120 SkAutoTUnref<GrEffectRef> effect(GrRRectEffect::Create(edgeType, rrect)); 121 if (effect) { 122 drawState->addCoverageEffect(effect);
|
| /external/skia/gm/ |
| rrects.cpp | 120 SkAutoTUnref<GrEffectRef> effect(GrRRectEffect::Create(edgeType, rrect)); 121 if (effect) { 122 drawState->addCoverageEffect(effect);
|
| /external/chromium_org/third_party/skia/src/effects/ |
| SkTableColorFilter.cpp | 240 AutoEffectUnref effect(SkNEW_ARGS(ColorTableEffect, (texture, flags))); 241 return CreateEffectRef(effect); 360 // If we kept the table in the effect then we could actually run known inputs through the 392 GrEffectRef* effect = NULL; local 394 // passing NULL because this effect does no tiling or filtering. 397 effect = ColorTableEffect::Create(texture, fFlags); 404 return effect;
|
| /external/skia/src/effects/ |
| SkTableColorFilter.cpp | 240 AutoEffectUnref effect(SkNEW_ARGS(ColorTableEffect, (texture, flags))); 241 return CreateEffectRef(effect); 360 // If we kept the table in the effect then we could actually run known inputs through the 392 GrEffectRef* effect = NULL; local 394 // passing NULL because this effect does no tiling or filtering. 397 effect = ColorTableEffect::Create(texture, fFlags); 404 return effect;
|