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

1 2 3 4 5 67 8 91011>>

  /external/skia/gm/
texturedomaineffect.cpp 125 SkAutoTUnref<GrEffectRef> effect(
131 if (!effect) {
139 drawState->addColorEffect(effect, 1);
  /cts/tests/tests/media/src/android/media/cts/
EnvReverbTest.java 56 assertTrue("invalid effect ID", (envReverb.getId() != 0));
63 fail("Effect library not loaded");
284 // 2 - Effect enable/disable
345 assertFalse("effect control not lost by effect1", mHasControl);
419 Log.e(TAG, "getReverb() Effect library not loaded exception: "+e);
485 AudioEffect effect, boolean controlGranted) {
487 if (effect == mReverb2) {
498 public void onEnableStatusChange(AudioEffect effect, boolean enabled) {
500 if (effect == mReverb2) {
510 public void onParameterChange(EnvironmentalReverb effect,
    [all...]
EqualizerTest.java 59 assertTrue("invalid effect ID", (eq.getId() != 0));
66 fail("Effect library not loaded");
218 // 2 - Effect enable/disable
282 assertFalse("effect control not lost by effect1", mHasControl);
356 Log.e(TAG, "getEqualizer() Effect library not loaded exception: "+e);
421 AudioEffect effect, boolean controlGranted) {
423 if (effect == mEqualizer2) {
434 public void onEnableStatusChange(AudioEffect effect, boolean enabled) {
436 if (effect == mEqualizer2) {
446 public void onParameterChange(Equalizer effect,
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkAlphaThresholdFilter.cpp 27 virtual bool asNewEffect(GrEffectRef** effect, GrTexture* texture,
63 AutoEffectUnref effect(SkNEW_ARGS(AlphaThresholdEffect, (texture,
67 return CreateEffectRef(effect);
251 bool SkAlphaThresholdFilterImpl::asNewEffect(GrEffectRef** effect, GrTexture* texture,
253 if (effect) {
290 *effect = AlphaThresholdEffect::Create(texture,
SkMagnifierImageFilter.cpp 35 AutoEffectUnref effect(SkNEW_ARGS(GrMagnifierEffect, (texture,
42 return CreateEffectRef(effect);
199 GrEffectRef* effect = GrMagnifierEffect::Create( local
207 SkASSERT(NULL != effect);
208 return effect;
256 bool SkMagnifierImageFilter::asNewEffect(GrEffectRef** effect, GrTexture* texture, const SkMatrix&, const SkIRect&) const {
257 if (effect) {
261 *effect = GrMagnifierEffect::Create(texture,
  /external/chromium_org/v8/test/mjsunit/regress/
regress-deopt-store-effect.js 30 // Test deopt after generic store with effect context.
50 // Test deopt after polymorphic as monomorphic store with effect context.
67 // Test deopt after polymorphic store with effect context.
  /external/skia/src/effects/
SkAlphaThresholdFilter.cpp 27 virtual bool asNewEffect(GrEffectRef** effect, GrTexture* texture,
63 AutoEffectUnref effect(SkNEW_ARGS(AlphaThresholdEffect, (texture,
67 return CreateEffectRef(effect);
251 bool SkAlphaThresholdFilterImpl::asNewEffect(GrEffectRef** effect, GrTexture* texture,
253 if (effect) {
290 *effect = AlphaThresholdEffect::Create(texture,
SkMagnifierImageFilter.cpp 35 AutoEffectUnref effect(SkNEW_ARGS(GrMagnifierEffect, (texture,
42 return CreateEffectRef(effect);
199 GrEffectRef* effect = GrMagnifierEffect::Create( local
207 SkASSERT(NULL != effect);
208 return effect;
256 bool SkMagnifierImageFilter::asNewEffect(GrEffectRef** effect, GrTexture* texture, const SkMatrix&, const SkIRect&) const {
257 if (effect) {
261 *effect = GrMagnifierEffect::Create(texture,
  /cts/tests/tests/graphics/src/android/graphics/cts/
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);
PathDashPathEffectTest.java 42 PathDashPathEffect effect = new PathDashPathEffect(shape(), ADVANCE, 0, local
46 p.setPathEffect(effect);
  /external/chromium_org/third_party/skia/include/core/
SkXfermode.h 193 to call this with all params NULL to simply test the return value. If effect is non-NULL
194 then the xfermode may optionally allocate an effect to return and the caller as *effect.
196 *effect, the caller should set *effect to NULL beforehand. background specifies the
197 texture to use as the background for compositing, and should be accessed in the effect's
198 fragment shader. If NULL, the effect should request access to destination color
201 virtual bool asNewEffect(GrEffectRef** effect, GrTexture* background = NULL) const;
203 /** Returns true if the xfermode can be expressed as coeffs (src, dst), or as an effect
204 (effect). This helper calls the asCoeff() and asNewEffect() virtuals. If the xfermode i
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
SkGr.cpp 458 SkAutoTUnref<GrEffectRef> effect(colorFilter->asNewEffect(context));
459 if (NULL != effect.get()) {
460 grPaint->addColorEffect(effect);
467 // supports it. If not, then install a dither effect.
473 // Suspect the dithering flag has no effect on these configs, otherwise
479 SkAutoTUnref<GrEffectRef> effect(GrDitherEffect::Create());
480 if (NULL != effect.get()) {
481 grPaint->addColorEffect(effect);
531 // setup the shader as the first color effect on the paint
535 SkAutoTUnref<GrEffectRef> effect(grEffect)
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrConvexPolyEffect.cpp 75 GrEffectRef* effect; local
80 effect = AARectEffect::Create(edgeType, rect);
81 } while (NULL == effect);
82 return effect;
367 GrEffectRef* effect; local
371 effect = GrConvexPolyEffect::Create(edgeType, count, edges);
372 } while (NULL == effect);
373 return effect;
  /external/skia/include/core/
SkXfermode.h 193 to call this with all params NULL to simply test the return value. If effect is non-NULL
194 then the xfermode may optionally allocate an effect to return and the caller as *effect.
196 *effect, the caller should set *effect to NULL beforehand. background specifies the
197 texture to use as the background for compositing, and should be accessed in the effect's
198 fragment shader. If NULL, the effect should request access to destination color
201 virtual bool asNewEffect(GrEffectRef** effect, GrTexture* background = NULL) const;
203 /** Returns true if the xfermode can be expressed as coeffs (src, dst), or as an effect
204 (effect). This helper calls the asCoeff() and asNewEffect() virtuals. If the xfermode i
    [all...]
  /external/skia/src/gpu/
SkGr.cpp 458 SkAutoTUnref<GrEffectRef> effect(colorFilter->asNewEffect(context));
459 if (NULL != effect.get()) {
460 grPaint->addColorEffect(effect);
467 // supports it. If not, then install a dither effect.
473 // Suspect the dithering flag has no effect on these configs, otherwise
479 SkAutoTUnref<GrEffectRef> effect(GrDitherEffect::Create());
480 if (NULL != effect.get()) {
481 grPaint->addColorEffect(effect);
531 // setup the shader as the first color effect on the paint
535 SkAutoTUnref<GrEffectRef> effect(grEffect)
    [all...]
  /external/skia/src/gpu/effects/
GrConvexPolyEffect.cpp 75 GrEffectRef* effect; local
80 effect = AARectEffect::Create(edgeType, rect);
81 } while (NULL == effect);
82 return effect;
367 GrEffectRef* effect; local
371 effect = GrConvexPolyEffect::Create(edgeType, count, edges);
372 } while (NULL == effect);
373 return effect;
  /frameworks/base/media/java/android/media/audiofx/
BassBoost.java 26 * Bass boost is an audio effect to boost or amplify low frequencies of the sound. It is comparable
52 * Bass boost effect strength. Parameter ID for
81 * how much the requesting application needs control of effect parameters. The normal priority
115 * Sets the strength of the bass boost effect. If the implementation does not support per mille
119 * @param strength strength of the effect. The valid range for strength strength is [0, 1000],
120 * where 0 per mille designates the mildest effect and 1000 per mille designates the strongest.
131 * Gets the current strength of the effect.
132 * @return the strength of the effect. The valid range for strength is [0, 1000], where 0 per
133 * mille designates the mildest effect and 1000 per mille the strongest
154 * @param effect the BassBoost on which the interface is registered
    [all...]
LoudnessEnhancer.java 28 * LoudnessEnhancer is an audio effect for increasing audio loudness.
33 * this audio effect in the audio framework.
35 * specify the audio session ID of this AudioTrack or MediaPlayer when constructing the effect
89 * Class constructor for the LoudnessEnhancer audio effect.
92 * this parameter indicates how much the requesting application needs control of effect
114 * Set the target gain for the audio effect.
116 * effect is enabled.
117 * @param gainmB the effect target gain expressed in mB. 0mB corresponds to no amplification.
129 * @return the effect target gain expressed in mB.
151 * @param effect the LoudnessEnhancer on which the interface is registered
    [all...]
PresetReverb.java 42 * <p>The PresetReverb is an output mix auxiliary effect and should be created on
43 * Audio session 0. In order for a MediaPlayer or AudioTrack to be fed into this effect,
44 * they must be explicitely attached to it and a send level must be specified. Use the effect ID
45 * returned by getId() method to designate this particular effect when attaching it to the
114 * parameter indicates how much the requesting application needs control of effect parameters.
119 * As the PresetReverb is an auxiliary effect it is recommended to instantiate it on
170 * @param effect the PresetReverb on which the interface is registered.
175 void onParameterChange(PresetReverb effect, int status, int param, short value);
186 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) {
  /hardware/libhardware_legacy/audio/
AudioHardwareStub.h 61 virtual status_t addAudioEffect(effect_handle_t effect) { return NO_ERROR; }
62 virtual status_t removeAudioEffect(effect_handle_t effect) { return NO_ERROR; }
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
image_view.js 301 * @param {Object} effect Transition effect object.
307 ImageView.prototype.load = function(entry, metadata, effect,
309 if (effect) {
314 effect = null;
341 this.replace(video, effect); // Show the poster immediately.
384 } else if ((effect && effect.constructor.name === 'Slide') &&
386 // Only show thumbnails if there is no effect or the effect is Slide
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
image_view.js 301 * @param {Object} effect Transition effect object.
307 ImageView.prototype.load = function(entry, metadata, effect,
309 if (effect) {
314 effect = null;
341 this.replace(video, effect); // Show the poster immediately.
384 } else if ((effect && effect.constructor.name === 'Slide') &&
386 // Only show thumbnails if there is no effect or the effect is Slide
    [all...]
  /bionic/libc/kernel/uapi/linux/
uinput.h 29 struct ff_effect effect; member in struct:uinput_ff_upload

Completed in 1425 milliseconds

1 2 3 4 5 67 8 91011>>