HomeSort by relevance Sort by last modified time
    Searched refs:effect (Results 126 - 150 of 505) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/test/MC/AsmParser/
directive_fill.s 63 # CHECK-WARNINGS: '.fill' directive with negative repeat count has no effect
67 # CHECK-WARNINGS: '.fill' directive with negative size has no effect
  /cts/tests/tests/media/src/android/media/cts/
BassBoostTest.java 56 assertTrue("invalid effect ID", (eq.getId() != 0));
64 fail("Effect library not loaded");
164 // 2 - Effect enable/disable
229 assertFalse("effect control not lost by effect1", mHasControl);
302 Log.e(TAG, "getBassBoost() Effect library not loaded exception: "+e);
368 AudioEffect effect, boolean controlGranted) {
370 if (effect == mBassBoost2) {
381 public void onEnableStatusChange(AudioEffect effect, boolean enabled) {
383 if (effect == mBassBoost2) {
393 public void onParameterChange(BassBoost effect, int status
    [all...]
PresetReverbTest.java 55 assertTrue("invalid effect ID", (reverb.getId() != 0));
62 fail("Effect library not loaded");
126 // 2 - Effect enable/disable
189 assertFalse("effect control not lost by effect1", mHasControl);
263 Log.e(TAG, "getReverb() Effect library not loaded exception: "+e);
329 AudioEffect effect, boolean controlGranted) {
331 if (effect == mReverb2) {
342 public void onEnableStatusChange(AudioEffect effect, boolean enabled) {
344 if (effect == mReverb2) {
354 public void onParameterChange(PresetReverb effect,
    [all...]
VirtualizerTest.java 57 assertTrue(" invalid effect ID", (eq.getId() != 0));
64 fail("Effect library not loaded");
164 // 2 - Effect enable/disable
230 assertFalse("effect control not lost by effect1", mHasControl);
306 Log.e(TAG, "getVirtualizer() Effect library not loaded exception: "+e);
372 AudioEffect effect, boolean controlGranted) {
374 if (effect == mVirtualizer2) {
385 public void onEnableStatusChange(AudioEffect effect, boolean enabled) {
387 if (effect == mVirtualizer2) {
397 public void onParameterChange(Virtualizer effect, int status
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8ElementCustom.cpp 85 // AnimationPlayer animate(AnimationEffect? effect);
89 TONATIVE_VOID(AnimationEffect*, effect, V8AnimationEffect::toNativeWithTypeCheck(info.GetIsolate(), info[0]));
90 v8SetReturnValueFast(info, WTF::getPtr(ElementAnimation::animate(*impl, effect)), impl);
93 // [RaisesException] AnimationPlayer animate(sequence<Dictionary> effect);
105 // AnimationPlayer animate(AnimationEffect? effect, double timing);
109 TONATIVE_VOID(AnimationEffect*, effect, V8AnimationEffect::toNativeWithTypeCheck(info.GetIsolate(), info[0]));
111 v8SetReturnValueFast(info, WTF::getPtr(ElementAnimation::animate(*impl, effect, duration)), impl);
114 // AnimationPlayer animate(AnimationEffect? effect, Dictionary timing);
118 TONATIVE_VOID(AnimationEffect*, effect, V8AnimationEffect::toNativeWithTypeCheck(info.GetIsolate(), info[0]));
124 v8SetReturnValueFast(info, WTF::getPtr(ElementAnimation::animate(*impl, effect, timingInput)), impl)
    [all...]
  /external/chromium_org/third_party/skia/gm/
convexpolyeffect.cpp 138 SkAutoTUnref<GrEffectRef> effect(GrConvexPolyEffect::Create(edgeType, p));
139 if (!effect) {
142 drawState->addCoverageEffect(effect, 1);
190 SkAutoTUnref<GrEffectRef> effect(GrConvexPolyEffect::Create(edgeType, rect));
191 if (!effect) {
197 drawState->addCoverageEffect(effect, 1);
beziereffects.cpp 74 float fKLM[4]; // The last value is ignored. The effect expects a vec4f.
80 // Mult by 3 for each edge effect type
96 SkAutoTUnref<GrEffectRef> effect; variable
104 effect.reset(GrCubicEffect::Create(et, *tt.target()->caps()));
105 if (!effect) {
173 drawState->addCoverageEffect(effect, 1);
232 float fKLM[4]; // The last value is ignored. The effect expects a vec4f.
238 // Mult by 3 for each edge effect type
254 SkAutoTUnref<GrEffectRef> effect; variable
262 effect.reset(GrConicEffect::Create(et, *tt.target()->caps()))
443 SkAutoTUnref<GrEffectRef> effect; variable
    [all...]
texturedomaineffect.cpp 125 SkAutoTUnref<GrEffectRef> effect(
131 if (!effect) {
139 drawState->addColorEffect(effect, 1);
  /external/skia/gm/
convexpolyeffect.cpp 138 SkAutoTUnref<GrEffectRef> effect(GrConvexPolyEffect::Create(edgeType, p));
139 if (!effect) {
142 drawState->addCoverageEffect(effect, 1);
190 SkAutoTUnref<GrEffectRef> effect(GrConvexPolyEffect::Create(edgeType, rect));
191 if (!effect) {
197 drawState->addCoverageEffect(effect, 1);
beziereffects.cpp 74 float fKLM[4]; // The last value is ignored. The effect expects a vec4f.
80 // Mult by 3 for each edge effect type
96 SkAutoTUnref<GrEffectRef> effect; variable
104 effect.reset(GrCubicEffect::Create(et, *tt.target()->caps()));
105 if (!effect) {
173 drawState->addCoverageEffect(effect, 1);
232 float fKLM[4]; // The last value is ignored. The effect expects a vec4f.
238 // Mult by 3 for each edge effect type
254 SkAutoTUnref<GrEffectRef> effect; variable
262 effect.reset(GrConicEffect::Create(et, *tt.target()->caps()))
443 SkAutoTUnref<GrEffectRef> effect; variable
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimations.cpp 61 void getKeyframeValuesForProperty(const KeyframeEffectModelBase* effect, CSSPropertyID id, double scale, bool reverse, PropertySpecificKeyframeVector& values)
64 const PropertySpecificKeyframeVector& group = effect->getPropertySpecificKeyframes(id);
132 bool CompositorAnimations::isCandidateForAnimationOnCompositor(const Timing& timing, const AnimationEffect& effect)
134 const KeyframeEffectModelBase& keyframeEffect = *toKeyframeEffectModelBase(&effect);
190 bool CompositorAnimations::startAnimationOnCompositor(const Element& element, double startTime, const Timing& timing, const AnimationEffect& effect, Vector<int>& startedAnimationIds)
193 ASSERT(isCandidateForAnimationOnCompositor(timing, effect));
196 const KeyframeEffectModelBase& keyframeEffect = *toKeyframeEffectModelBase(&effect);
407 void CompositorAnimationsImpl::getAnimationOnCompositor(const Timing& timing, double startTime, const KeyframeEffectModelBase& effect, Vector<OwnPtr<blink::WebAnimation> >& animations)
414 PropertySet properties = effect.properties();
419 getKeyframeValuesForProperty(&effect, *it, compositorTiming.scaledDuration, compositorTiming.reverse, values)
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-3218915.js 31 // side effect occurred in a comma expression in an effect context.
33 // An unoptimizable function, calling it is a side effect.
39 // If we optimize for x a smi, then x a string will deopt. The side effect
40 // immediately before the deopt is in a comma expresion in an effect context
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrTextureDomain.cpp 176 const GrTextureDomainEffect& effect = drawEffect.castEffect<GrTextureDomainEffect>(); local
177 const GrTextureDomain& domain = effect.textureDomain();
185 const GrTextureDomainEffect& effect = drawEffect.castEffect<GrTextureDomainEffect>(); local
186 const GrTextureDomain& domain = effect.textureDomain();
187 fGLDomain.setData(uman, domain, effect.texture(0)->origin());
211 AutoEffectUnref effect(SkNEW_ARGS(GrTextureDomainEffect, (texture,
217 return CreateEffectRef(effect);
  /external/skia/src/gpu/effects/
GrTextureDomain.cpp 176 const GrTextureDomainEffect& effect = drawEffect.castEffect<GrTextureDomainEffect>(); local
177 const GrTextureDomain& domain = effect.textureDomain();
185 const GrTextureDomainEffect& effect = drawEffect.castEffect<GrTextureDomainEffect>(); local
186 const GrTextureDomain& domain = effect.textureDomain();
187 fGLDomain.setData(uman, domain, effect.texture(0)->origin());
211 AutoEffectUnref effect(SkNEW_ARGS(GrTextureDomainEffect, (texture,
217 return CreateEffectRef(effect);
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
Clipboard.cpp 120 void Clipboard::setDropEffect(const String &effect)
126 if (effect != "none" && effect != "copy" && effect != "link" && effect != "move")
130 // setting the drop effect when this condition is not true.
132 m_dropEffect = effect;
135 void Clipboard::setEffectAllowed(const String &effect)
140 if (dragOpFromIEOp(effect) == DragOperationPrivate) {
152 m_effectAllowed = effect;
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrDrawState.cpp 154 const GrEffectRef* effect = stage.getEffect();
155 SkASSERT(NULL != effect);
157 // type and effect's shader lang type are compatible, and that attributes shared by
168 GrSLType effectSLType = (*effect)->vertexAttribType(i);
216 const GrEffectRef* effect = fColorStages[s].getEffect();
217 (*effect)->getConstantColorComponents(&color, &validComponentFlags);
233 const GrEffectRef* effect = fCoverageStages[s].getEffect();
234 (*effect)->getConstantColorComponents(&color, &validComponentFlags);
258 const GrEffectRef* effect = fCoverageStages[s].getEffect();
259 (*effect)->getConstantColorComponents(&coverage, &validComponentFlags)
    [all...]
  /external/skia/src/gpu/
GrDrawState.cpp 154 const GrEffectRef* effect = stage.getEffect();
155 SkASSERT(NULL != effect);
157 // type and effect's shader lang type are compatible, and that attributes shared by
168 GrSLType effectSLType = (*effect)->vertexAttribType(i);
216 const GrEffectRef* effect = fColorStages[s].getEffect();
217 (*effect)->getConstantColorComponents(&color, &validComponentFlags);
233 const GrEffectRef* effect = fCoverageStages[s].getEffect();
234 (*effect)->getConstantColorComponents(&color, &validComponentFlags);
258 const GrEffectRef* effect = fCoverageStages[s].getEffect();
259 (*effect)->getConstantColorComponents(&coverage, &validComponentFlags)
    [all...]
  /development/samples/HelloEffects/src/com/example/android/mediafx/
HelloEffects.java 28 import android.media.effect.Effect;
29 import android.media.effect.EffectContext;
30 import android.media.effect.EffectFactory;
44 private Effect mEffect;
51 public void setCurrentEffect(int effect) {
52 mCurrentEffect = effect;
95 * Initialize the correct effect based on the selected menu/action item
246 // if no effect is chosen, just render the original bitmap
265 //if an effect is chosen initialize it and apply it to the textur
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFECompositeElement.cpp 112 bool SVGFECompositeElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
114 FEComposite* composite = static_cast<FEComposite*>(effect);
165 RefPtr<FilterEffect> effect = FEComposite::create(filter, m_svgOperator->currentValue()->enumValue(), m_k1->currentValue()->value(), m_k2->currentValue()->value(), m_k3->currentValue()->value(), m_k4->currentValue()->value());
166 FilterEffectVector& inputEffects = effect->inputEffects();
170 return effect.release();
SVGFEDiffuseLightingElement.cpp 85 bool SVGFEDiffuseLightingElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
87 FEDiffuseLighting* diffuseLighting = static_cast<FEDiffuseLighting*>(effect);
183 RefPtr<FilterEffect> effect = FEDiffuseLighting::create(filter, color, m_surfaceScale->currentValue()->value(), m_diffuseConstant->currentValue()->value(), local
185 effect->inputEffects().append(input1);
186 return effect.release();
SVGFESpecularLightingElement.cpp 90 bool SVGFESpecularLightingElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
92 FESpecularLighting* specularLighting = static_cast<FESpecularLighting*>(effect);
190 RefPtr<FilterEffect> effect = FESpecularLighting::create(filter, color, m_surfaceScale->currentValue()->value(), m_specularConstant->currentValue()->value(), local
192 effect->inputEffects().append(input1);
193 return effect.release();
SVGFEDropShadowElement.cpp 130 RefPtr<FilterEffect> effect = FEDropShadow::create(filter, stdDeviationX()->currentValue()->value(), stdDeviationY()->currentValue()->value(), m_dx->currentValue()->value(), m_dy->currentValue()->value(), color, opacity);
131 effect->inputEffects().append(input1);
132 return effect.release();
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
BassBoostTest.java 186 public void setEffect(Object effect) {
187 mBassBoost = (BassBoost)effect;
196 public void onEnableStatusChange(AudioEffect effect, boolean enabled) {
199 public void onControlStatusChange(AudioEffect effect, boolean controlGranted) {
202 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) {
232 Log.e(TAG,"BassBoost effect not supported");
238 Log.e(TAG,"BassBoost effect not found");
VirtualizerTest.java 183 public void setEffect(Object effect) {
184 mVirtualizer = (Virtualizer)effect;
193 public void onEnableStatusChange(AudioEffect effect, boolean enabled) {
196 public void onControlStatusChange(AudioEffect effect, boolean controlGranted) {
199 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) {
228 Log.e(TAG,"Virtualizer effect not supported");
234 Log.e(TAG,"Virtualizer effect not found");
  /external/replicaisland/src/com/replica/replicaisland/
LauncherComponent.java 126 GameObject effect = factory.spawn(mLaunchEffect, local
130 if (effect != null) {
131 manager.add(effect);

Completed in 790 milliseconds

1 2 3 4 56 7 8 91011>>