HomeSort by relevance Sort by last modified time
    Searched defs:effect (Results 51 - 75 of 197) sorted by null

1 23 4 5 6 7 8

  /frameworks/base/media/mca/effect/java/android/media/effect/
SizeChangeEffect.java 17 package android.media.effect;
20 import android.media.effect.EffectContext;
23 * Effect subclass for effects based on a single Filter with output size differnet
25 * to obtain an Effect implementation.
FilterGraphEffect.java 17 package android.media.effect;
23 import android.media.effect.FilterEffect;
24 import android.media.effect.EffectContext;
30 * Effect subclass for effects based on a single Filter. Subclasses need only invoke the
31 * constructor with the correct arguments to obtain an Effect implementation.
48 * @param name The name of this effect (used to create it in the EffectFactory).
73 throw new RuntimeException("Could not setup effect", e);
77 throw new RuntimeException("Could not setup effect");
91 throw new RuntimeException("Internal error applying effect");
97 throw new RuntimeException("Internal error applying effect");
    [all...]
EffectFactory.java 18 package android.media.effect;
25 * creating a certain effect, the application should confirm that the effect is supported on this
33 "android.media.effect.effects.", // Default effect package
58 "android.media.effect.effects.BrightnessEffect";
73 "android.media.effect.effects.ContrastEffect";
87 "android.media.effect.effects.FisheyeEffect";
92 * background visible before the effect becomes active. The effect will wai
506 Effect effect = null; local
    [all...]
  /frameworks/base/media/mca/effect/java/android/media/effect/effects/
IdentityEffect.java 18 package android.media.effect.effects;
21 import android.media.effect.EffectContext;
22 import android.media.effect.FilterEffect;
  /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...]
  /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/third_party/WebKit/Source/core/animation/
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/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...]
  /external/skia/src/gpu/effects/
GrBezierEffect.cpp 150 GrEffectRef* effect; local
154 effect = GrConicEffect::Create(edgeType, caps);
155 } while (NULL == effect);
156 return effect;
288 GrEffectRef* effect; local
292 effect = GrQuadEffect::Create(edgeType, caps);
293 } while (NULL == effect);
294 return effect;
436 GrEffectRef* effect; local
440 effect = GrCubicEffect::Create(edgeType, caps)
    [all...]
  /external/skia/src/gpu/gl/
GrGLProgramDesc.cpp 24 const GrEffectRef& effect = *stage.getEffect(); local
25 const GrBackendEffectFactory& factory = effect->getFactory();
27 if (effect->willReadDstColor()) {
30 if (effect->willReadFragmentPosition()) {
33 if (effect->hasVertexCode()) {
65 const GrEffect* effect = drawState.getColorStage(firstEffectiveColorStage).getEffect()->get(); local
66 inputColorIsUsed = effect->willUseInputColor();
76 const GrEffect* effect = drawState.getCoverageStage(firstEffectiveCoverageStage).getEffect()->get(); local
77 inputCoverageIsUsed = effect->willUseInputColor();
88 // we only need the local coords if we're actually going to generate effect cod
    [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...]
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorButton.java 109 EffectSettingPopup effect = (EffectSettingPopup) inflater.inflate( local
111 effect.initialize(mPreference);
112 effect.setSettingChangedListener(this);
113 mPopup = effect;
  /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
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 17 package android.effect.cts;
  /development/ndk/platforms/android-L/include/linux/
uinput.h 29 struct ff_effect effect; member in struct:uinput_ff_upload
  /external/chromium_org/third_party/skia/src/core/
SkPicture.cpp 160 const SkPathEffect* effect = op.paint.getPathEffect(); local
161 if (effect) {
163 SkPathEffect::DashType dashType = effect->asADash(&info);
238 *reason = "Can't use multisample on dash effect.";
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgramEffects.cpp 76 void GrGLProgramEffects::bindTextures(GrGpuGL* gpu, const GrProcessor& effect, int effectIdx) {
79 SkASSERT(numSamplers == effect.numTextures());
82 const GrTextureAccess& textureAccess = effect.textureAccess(s);
118 const GrProcessor& effect = *effectStage.getProcessor(); local
119 fGLProcessors[index]->setData(programDataManager, effect);
125 this->bindTextures(gpu, effect, index);
183 const GrProcessor& effect = *effectStage.getProcessor(); local
184 fGLProcessors[e]->setData(pdman, effect);
186 this->bindTextures(gpu, effect, e);
  /external/chromium_org/third_party/skia/src/gpu/gl/builders/
GrGLFragmentShaderBuilder.cpp 83 const GrProcessor* effect = fProgramBuilder->fCodeStage.effectStage()->getProcessor(); local
88 if (!static_cast<const GrFragmentProcessor*>(effect)->willReadDstColor()) {
145 const GrProcessor* effect = cs->effectStage()->getProcessor(); local
146 if (!effect->willReadFragmentPosition()) {
GrGLFullProgramBuilder.cpp 29 // emit the per-effect code for both color and coverage effects
114 const GrProcessor& effect = *stage.getProcessor(); local
115 SkSTArray<2, GrGLProcessor::TransformedCoords> coords(effect.numTransforms());
116 SkSTArray<4, GrGLProcessor::TextureSampler> samplers(effect.numTextures());
119 this->emitSamplers(effect, &samplers);
141 const GrProcessor* effect = effectStage.getProcessor(); local
142 int numTransforms = effect->numTransforms();
190 kPosition_GrCoordSet == effect->coordTransform(t).sourceCoords() ?

Completed in 1482 milliseconds

1 23 4 5 6 7 8