| /frameworks/base/media/mca/effect/java/android/media/effect/effects/ |
| SepiaEffect.java | 18 package android.media.effect.effects; 20 import android.media.effect.EffectContext; 21 import android.media.effect.SingleFilterEffect;
|
| SharpenEffect.java | 18 package android.media.effect.effects; 20 import android.media.effect.EffectContext; 21 import android.media.effect.SingleFilterEffect;
|
| StraightenEffect.java | 18 package android.media.effect.effects; 20 import android.media.effect.EffectContext; 21 import android.media.effect.SingleFilterEffect;
|
| TintEffect.java | 18 package android.media.effect.effects; 20 import android.media.effect.EffectContext; 21 import android.media.effect.SingleFilterEffect;
|
| VignetteEffect.java | 18 package android.media.effect.effects; 20 import android.media.effect.EffectContext; 21 import android.media.effect.SingleFilterEffect;
|
| IdentityEffect.java | 18 package android.media.effect.effects; 21 import android.media.effect.EffectContext; 22 import android.media.effect.FilterEffect;
|
| /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; 66 RefPtr<FilterEffect> effect = prpEffect; local 68 // The effect must be a newly created filter effect. 69 ASSERT(!m_effectReferences.contains(effect)); 71 m_effectReferences.add(effect, FilterEffectSet()); 73 unsigned numberOfInputEffects = effect->inputEffects().size(); 77 effectReferences(effect->inputEffect(i)).add(effect.get()) [all...] |
| /external/chromium_org/ui/base/dragdrop/ |
| drag_drop_types_win.cc | 12 uint32 effect) { 14 if (effect & DROPEFFECT_LINK) 16 if (effect & DROPEFFECT_COPY) 18 if (effect & DROPEFFECT_MOVE)
|
| 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...] |
| drop_target_win.h | 37 DWORD* effect); 40 DWORD* effect); 45 DWORD* effect); 63 DWORD effect); 72 DWORD effect); 83 DWORD effect);
|
| /external/chromium_org/third_party/WebKit/Source/core/animation/ |
| ElementAnimation.idl | 37 // AnimationPlayer animate((AnimationEffect or sequence<Dictionary>)? effect, optional (double or Dictionary) timing); 38 [Custom, RaisesException] AnimationPlayer animate(object effect, optional object timing);
|
| InertAnimation.cpp | 37 PassRefPtrWillBeRawPtr<InertAnimation> InertAnimation::create(PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, bool paused) 39 return adoptRefWillBeNoop(new InertAnimation(effect, timing, paused)); 42 InertAnimation::InertAnimation(PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, bool paused) 44 , m_effect(effect)
|
| /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
| MediaAudioEffectTest.java | 149 //Test case 1.0: test constructor from effect type and get effect ID 166 AudioEffect effect = new AudioEffect(desc[0].type, local 170 assertNotNull(msg + ": could not create AudioEffect", effect); 172 assertTrue(msg +": invalid effect ID", (effect.getId() != 0)); 177 effect.release(); 183 msg = msg.concat(": Effect not found: "+desc[0].name); 186 msg = msg.concat(": Effect library not loaded"); 192 //Test case 1.1: test constructor from effect uui 208 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_NULL, local 234 AudioEffect effect = new AudioEffect(UUID.randomUUID(), local 257 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local 286 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local 323 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_ENV_REVERB, local 363 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_ENV_REVERB, local 410 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_ENV_REVERB, local 442 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local 475 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local 505 AudioEffect effect = null; local 539 AudioEffect effect = null; local 572 AudioEffect effect = null; local 605 AudioEffect effect = null; local 639 AudioEffect effect = null; local 676 AudioEffect effect = null; local 713 AudioEffect effect = null; local 749 AudioEffect effect = null; local 783 AudioEffect effect = null; local 817 AudioEffect effect = null; local 851 AudioEffect effect = null; local 884 AudioEffect effect = null; local 917 AudioEffect effect = null; local 952 AudioEffect effect = null; local 987 AudioEffect effect = null; local 1022 AudioEffect effect = null; local 1310 AudioEffect effect = null; local [all...] |
| /frameworks/base/media/mca/effect/java/android/media/effect/ |
| Effect.java | 18 package android.media.effect; 26 * <p>To create an Effect you must first create an EffectContext. You can obtain an instance of the 28 * {@link android.media.effect.EffectContext#getFactory() getFactory()}. The EffectFactory allows 32 * applying an effect. An effect is bound to a single EffectContext, which in turn is bound to a 37 public abstract class Effect { 40 * Get the effect name. 42 * Returns the unique name of the effect, which matches the name used for instantiating this 43 * effect by the EffectFactory. 45 * @return The name of the effect [all...] |
| /external/chromium_org/content/browser/web_contents/ |
| web_drag_utils_win.cc | 20 WebDragOperation WinDragOpToWebDragOp(DWORD effect) { 21 DCHECK(effect == DROPEFFECT_NONE || effect == DROPEFFECT_COPY || 22 effect == DROPEFFECT_LINK || effect == DROPEFFECT_MOVE); 24 return WinDragOpMaskToWebDragOpMask(effect);
|
| /external/chromium_org/third_party/skia/src/gpu/effects/ |
| GrSimpleTextureEffect.h | 16 * The output color of this effect is a modulation of the input color and a sample from a texture. 29 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, GrTextureParams::kNone_FilterMode, coordSet))); 30 return CreateEffectRef(effect); 38 AutoEffectUnref effect( 40 return CreateEffectRef(effect); 47 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, p, coordSet))); 48 return CreateEffectRef(effect);
|
| GrBicubicEffect.h | 38 * Create a simple filter effect with custom bicubic coefficients and optional domain. 47 AutoEffectUnref effect(SkNEW_ARGS(GrBicubicEffect, (tex, coefficients, 50 return CreateEffectRef(effect); 55 * Create a Mitchell filter effect with specified texture matrix and x/y tile modes. 63 * Create a filter effect with custom bicubic coefficients, the texture matrix, and the x/y 68 AutoEffectUnref effect(SkNEW_ARGS(GrBicubicEffect, (tex, coefficients, matrix, tileModes))); 69 return CreateEffectRef(effect); 73 * Create a Mitchell filter effect with a texture matrix and a domain. 76 AutoEffectUnref effect(SkNEW_ARGS(GrBicubicEffect, (tex, gMitchellCoefficients, matrix, 78 return CreateEffectRef(effect); [all...] |
| /external/skia/src/gpu/effects/ |
| GrSimpleTextureEffect.h | 16 * The output color of this effect is a modulation of the input color and a sample from a texture. 29 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, GrTextureParams::kNone_FilterMode, coordSet))); 30 return CreateEffectRef(effect); 38 AutoEffectUnref effect( 40 return CreateEffectRef(effect); 47 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, p, coordSet))); 48 return CreateEffectRef(effect);
|
| GrBicubicEffect.h | 38 * Create a simple filter effect with custom bicubic coefficients and optional domain. 47 AutoEffectUnref effect(SkNEW_ARGS(GrBicubicEffect, (tex, coefficients, 50 return CreateEffectRef(effect); 55 * Create a Mitchell filter effect with specified texture matrix and x/y tile modes. 63 * Create a filter effect with custom bicubic coefficients, the texture matrix, and the x/y 68 AutoEffectUnref effect(SkNEW_ARGS(GrBicubicEffect, (tex, coefficients, matrix, tileModes))); 69 return CreateEffectRef(effect); 73 * Create a Mitchell filter effect with a texture matrix and a domain. 76 AutoEffectUnref effect(SkNEW_ARGS(GrBicubicEffect, (tex, gMitchellCoefficients, matrix, 78 return CreateEffectRef(effect); [all...] |
| /device/samsung/manta/voicefx/ |
| eS305VoiceProcessing.cpp | 35 // number of sessions this effect bundle can be used for 53 // Effect/Preprocessor state 56 PFX_EFFECT_STATE_CREATED, // effect created 65 // Effect operation table. Functions for all pre processors are declared in sPreProcOps[] table. 78 // Effect context 83 adnc_pfx_session_t *session; // session the effect is on 84 const adnc_pfx_ops_t *ops; // effect ops table 98 // effect settings 148 // Effect descriptors 151 // UUIDs for effect types have been generated from http://www.itu.int/ITU-T/asn1/uuid.htm 744 adnc_pfx_effect_t * effect = (adnc_pfx_effect_t *) self; local 929 adnc_pfx_effect_t * effect = (adnc_pfx_effect_t *) self; local [all...] |
| /frameworks/base/core/jni/android/graphics/ |
| PathEffect.cpp | 15 SkPathEffect* effect = reinterpret_cast<SkPathEffect*>(effectHandle); local 16 SkSafeUnref(effect); 23 SkPathEffect* effect = SkComposePathEffect::Create(outer, inner); local 24 return reinterpret_cast<jlong>(effect); 31 SkPathEffect* effect = SkSumPathEffect::Create(first, second); local 32 return reinterpret_cast<jlong>(effect); 44 SkPathEffect* effect = SkDashPathEffect::Create(intervals, count, phase); local 45 return reinterpret_cast<jlong>(effect); 52 SkPathEffect* effect = SkPath1DPathEffect::Create(*shape, advance, phase, local 54 return reinterpret_cast<jlong>(effect); 58 SkPathEffect* effect = SkCornerPathEffect::Create(radius); local 64 SkPathEffect* effect = SkDiscretePathEffect::Create(length, deviation); local [all...] |
| /external/chromium_org/third_party/skia/include/gpu/ |
| GrEffect.h | 27 * GrEffectRef ref count reaches zero the scratch GrResources owned by the effect can be recycled 59 explicit GrEffectRef(GrEffect* effect); 80 memory pool. The ref count of an effect must reach 0 before the thread terminates and the pool 81 is destroyed. To create a static effect use the macro GR_CREATE_STATIC_EFFECT declared below. 91 * indicate whether the input components to this effect in the FS will have known values. 98 /** Will this effect read the source color value? */ 118 /** Returns true if this and other effect conservatively draw identically. It can only return 131 /** Human-meaningful string to identify this effect; may be embedded 150 /** Will this effect read the destination pixel value? */ 153 /** Will this effect read the fragment position? * [all...] |
| /external/skia/include/gpu/ |
| GrEffect.h | 27 * GrEffectRef ref count reaches zero the scratch GrResources owned by the effect can be recycled 59 explicit GrEffectRef(GrEffect* effect); 80 memory pool. The ref count of an effect must reach 0 before the thread terminates and the pool 81 is destroyed. To create a static effect use the macro GR_CREATE_STATIC_EFFECT declared below. 91 * indicate whether the input components to this effect in the FS will have known values. 98 /** Will this effect read the source color value? */ 118 /** Returns true if this and other effect conservatively draw identically. It can only return 131 /** Human-meaningful string to identify this effect; may be embedded 150 /** Will this effect read the destination pixel value? */ 153 /** Will this effect read the fragment position? * [all...] |
| /frameworks/av/media/libeffects/preprocessing/ |
| PreProcessing.cpp | 56 // Effect/Preprocessor state 71 // Effect operation table. Functions for all pre processors are declared in sPreProcOps[] table. 84 // Effect context 89 preproc_session_t *session; // session the effect is on 90 const preproc_ops_t *ops; // effect ops table 108 uint32_t samplingRate; // sampling rate at effect process interface 172 // Effect descriptors 175 // UUIDs for effect types have been generated from http://www.itu.int/ITU-T/asn1/uuid.html 268 int AgcInit (preproc_effect_t *effect) 271 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine) 1165 preproc_effect_t * effect = (preproc_effect_t *)self; local 1342 preproc_effect_t * effect = (preproc_effect_t *) self; local 1701 preproc_effect_t * effect = (preproc_effect_t *) self; local 1716 preproc_effect_t * effect = (preproc_effect_t *)self; local [all...] |
| /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();
|