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

<<11121314151617181920>>

  /external/chromium_org/v8/test/webkit/
dfg-to-string-side-effect-clobbers-toString.js 25 "Tests what happens when you do ToString twice, and it has a side effect that clobbers the toString method in between the two ToStrings."
  /external/chromium_org/v8/test/webkit/fast/js/
Promise-already-rejected.js 26 description('Resolve or reject do not take effect on a rejected Promise.');
Promise-already-resolved.js 26 description('Resolve or reject do not take effect on a resolved Promise.');
  /external/skia/src/gpu/effects/
GrRRectEffect.cpp 123 GrEffectRef* effect; local
126 effect = GrRRectEffect::Create(et, rrect);
127 } while (NULL == effect);
128 return effect;
475 GrEffectRef* effect; local
478 effect = GrRRectEffect::Create(et, rrect);
479 } while (NULL == effect);
480 return effect;
    [all...]
  /frameworks/base/media/java/android/media/audiofx/
Equalizer.java 126 * how much the requesting application needs control of effect parameters. The normal priority
291 * Gets the band that has the most effect on the given frequency.
293 * @return the frequency band that has most effect on the given frequency.
379 * @param effect the Equalizer on which the interface is registered.
385 void onParameterChange(Equalizer effect, int status, int param1, int param2, int value);
396 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) {
  /hardware/libhardware/include/hardware/
audio.h 241 effect_handle_t effect);
243 effect_handle_t effect);
  /packages/apps/MusicFX/src/com/android/musicfx/
ActivityMusic.java 76 * Indicates if Virtualizer effect is supported.
81 * Indicates if BassBoost effect is supported.
85 * Indicates if Equalizer effect is supported.
89 * Indicates if Preset Reverb effect is supported.
248 for (final Descriptor effect : effects) {
249 Log.v(TAG, effect.name.toString() + ", type: " + effect.type.toString());
251 if (effect.type.equals(AudioEffect.EFFECT_TYPE_VIRTUALIZER)) {
253 if (effect.uuid.equals(UUID.fromString("1d4033c0-8557-11df-9f2d-0002a5d5c51b"))) {
256 } else if (effect.type.equals(AudioEffect.EFFECT_TYPE_BASS_BOOST))
    [all...]
  /prebuilts/devtools/tools/lib/
asset-studio.jar 
  /external/chromium_org/third_party/skia/src/effects/
SkLightingImageFilter.cpp 277 virtual bool asNewEffect(GrEffectRef** effect, GrTexture*, const SkMatrix& matrix, const SkIRect& bounds) const SK_OVERRIDE;
299 virtual bool asNewEffect(GrEffectRef** effect, GrTexture*, const SkMatrix& matrix, const SkIRect& bounds) const SK_OVERRIDE;
342 AutoEffectUnref effect(SkNEW_ARGS(GrDiffuseLightingEffect, (texture,
347 return CreateEffectRef(effect);
379 AutoEffectUnref effect(SkNEW_ARGS(GrSpecularLightingEffect, (texture,
385 return CreateEffectRef(effect);
    [all...]
SkBlurMaskFilter.cpp 556 * Create a simple filter effect with custom bicubic coefficients.
575 AutoEffectUnref effect(SkNEW_ARGS(GrRectBlurEffect, (rect, sigma, blurProfileTexture)));
576 return CreateEffectRef(effect);
797 SkAutoTUnref<GrEffectRef> effect(GrRectBlurEffect::Create(
799 if (!effect) {
808 grp->addCoverageEffect(effect);
    [all...]
  /external/skia/src/effects/
SkLightingImageFilter.cpp 277 virtual bool asNewEffect(GrEffectRef** effect, GrTexture*, const SkMatrix& matrix, const SkIRect& bounds) const SK_OVERRIDE;
299 virtual bool asNewEffect(GrEffectRef** effect, GrTexture*, const SkMatrix& matrix, const SkIRect& bounds) const SK_OVERRIDE;
342 AutoEffectUnref effect(SkNEW_ARGS(GrDiffuseLightingEffect, (texture,
347 return CreateEffectRef(effect);
379 AutoEffectUnref effect(SkNEW_ARGS(GrSpecularLightingEffect, (texture,
385 return CreateEffectRef(effect);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkImageFilter.cpp 199 GrEffectRef* effect; local
205 this->asNewEffect(&effect, srcTexture, matrix, bounds);
206 SkASSERT(effect);
207 SkAutoUnref effectRef(effect);
209 paint.addColorEffect(effect);
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkLinearGradient.cpp 487 AutoEffectUnref effect(SkNEW_ARGS(GrLinearGradient, (ctx, shader, matrix, tm)));
488 return CreateEffectRef(effect);
532 GrEffectRef* effect; local
533 shader->asNewEffect(context, paint, NULL, &grColor, &effect);
534 return effect;
SkRadialGradient.cpp 496 AutoEffectUnref effect(SkNEW_ARGS(GrRadialGradient, (ctx, shader, matrix, tm)));
497 return CreateEffectRef(effect);
543 GrEffectRef* effect; local
544 shader->asNewEffect(context, paint, NULL, &grColor, &effect);
545 return effect;
  /external/skia/src/core/
SkImageFilter.cpp 199 GrEffectRef* effect; local
205 this->asNewEffect(&effect, srcTexture, matrix, bounds);
206 SkASSERT(effect);
207 SkAutoUnref effectRef(effect);
209 paint.addColorEffect(effect);
  /external/skia/src/effects/gradients/
SkLinearGradient.cpp 487 AutoEffectUnref effect(SkNEW_ARGS(GrLinearGradient, (ctx, shader, matrix, tm)));
488 return CreateEffectRef(effect);
532 GrEffectRef* effect; local
533 shader->asNewEffect(context, paint, NULL, &grColor, &effect);
534 return effect;
SkRadialGradient.cpp 496 AutoEffectUnref effect(SkNEW_ARGS(GrRadialGradient, (ctx, shader, matrix, tm)));
497 return CreateEffectRef(effect);
543 GrEffectRef* effect; local
544 shader->asNewEffect(context, paint, NULL, &grColor, &effect);
545 return effect;
  /packages/apps/LegacyCamera/src/com/android/camera/
EffectsRecorder.java 123 /** Determine if a given effect is supported at runtime
276 public void setEffect(int effect, Object effectParameter) {
278 "setEffect: effect ID " + effect +
289 mEffect = effect;
433 Log.v(TAG, "Effect initializing. Preview size "
457 throw new RuntimeException("Unknown effect ID" + mEffect + "!");
476 throw new RuntimeException("Unable to connect camera to effect input", e);
527 throw new RuntimeException("No effect selected!");
530 throw new RuntimeException("No effect parameter provided!")
    [all...]
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
EqualizerTest.java 330 public void onEnableStatusChange(AudioEffect effect, boolean enabled) {
333 public void onControlStatusChange(AudioEffect effect, boolean controlGranted) {
337 public void onParameterChange(Equalizer effect, int status, int param1, int param2, int value) {
363 Log.e(TAG,"Equalizer effect not supported");
369 Log.e(TAG,"Equalizer effect not found");
  /device/generic/goldfish/audio/
audio_hw.c 203 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
209 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
357 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
363 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
  /external/chromium_org/content/renderer/media/webrtc/
peer_connection_dependency_factory.cc 61 const media::AudioParameters::PlatformEffectsMask effect; member in struct:content::__anon12023
71 // the constraint to false to later disable the software effect.
85 // effect.
86 *effects &= ~kConstraintEffectMap[i].effect;
87 DVLOG(1) << "Disabling platform effect: "
88 << kConstraintEffectMap[i].effect;
89 } else if (*effects & kConstraintEffectMap[i].effect) {
90 // If the constraint is true, leave the platform effect enabled, and
91 // set the constraint to false to later disable the software effect.
  /external/chromium_org/third_party/skia/include/core/
SkImageFilter.h 274 * If effect is non-NULL, a new GrEffect instance is stored
278 * The effect can assume its vertexCoords space maps 1-to-1 with texels
280 * parameters before they are used in the effect. Note that this function
284 virtual bool asNewEffect(GrEffectRef** effect,
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-json.js 66 // Proxy with side effect.
84 parent2.c = "remove"; // Revert side effect.
  /external/skia/include/core/
SkImageFilter.h 274 * If effect is non-NULL, a new GrEffect instance is stored
278 * The effect can assume its vertexCoords space maps 1-to-1 with texels
280 * parameters before they are used in the effect. Note that this function
284 virtual bool asNewEffect(GrEffectRef** effect,
  /frameworks/native/services/inputflinger/
EventHub.cpp 619 ff_effect effect; local
620 memset(&effect, 0, sizeof(effect));
621 effect.type = FF_RUMBLE;
622 effect.id = device->ffEffectId;
623 effect.u.rumble.strong_magnitude = 0xc000;
624 effect.u.rumble.weak_magnitude = 0xc000;
625 effect.replay.length = (duration + 999999LL) / 1000000LL;
626 effect.replay.delay = 0;
627 if (ioctl(device->fd, EVIOCSFF, &effect)) {
    [all...]

Completed in 1048 milliseconds

<<11121314151617181920>>