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

1 23 4 5 6 7 8 91011>>

  /system/media/mca/effect/java/android/media/effect/effects/
NegativeEffect.java 18 package android.media.effect.effects;
20 import android.media.effect.EffectContext;
21 import android.media.effect.SingleFilterEffect;
PosterizeEffect.java 18 package android.media.effect.effects;
20 import android.media.effect.EffectContext;
21 import android.media.effect.SingleFilterEffect;
RedEyeEffect.java 19 package android.media.effect.effects;
21 import android.media.effect.EffectContext;
22 import android.media.effect.SingleFilterEffect;
RotateEffect.java 18 package android.media.effect.effects;
20 import android.media.effect.EffectContext;
21 import android.media.effect.SizeChangeEffect;
SaturateEffect.java 18 package android.media.effect.effects;
20 import android.media.effect.EffectContext;
21 import android.media.effect.SingleFilterEffect;
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;
CropEffect.java 18 package android.media.effect.effects;
20 import android.media.effect.EffectContext;
21 import android.media.effect.SizeChangeEffect;
22 import android.media.effect.SingleFilterEffect;
  /packages/apps/MusicFX/res/values-tl/
strings.xml 20 <string name="no_effects" msgid="2597309825423473135">"Hindi available ang mga effect"</string>
21 <string name="main_toggle_effects_title" msgid="612896145300512593">"Mga effect ng audio"</string>
23 <string name="headset_plug" msgid="1161319499289612110">"Paki-plug ang mga headphone para sa mga effect na ito"</string>
25 <string name="virtualizer_strength" msgid="5035111173763913313">"3D effect"</string>
27 <string name="pr_summary" msgid="7457279522425453515">"Karagdagang mga effect sa reverberation ng kuwarto"</string>
32 <string name="picker_title" msgid="8464126693702817261">"Control panel ng mga effect sa musika"</string>
  /system/media/mca/effect/java/android/media/effect/
SizeChangeEffect.java 17 package android.media.effect;
23 import android.media.effect.Effect;
24 import android.media.effect.EffectContext;
29 * Effect subclass for effects based on a single Filter with output size differnet
31 * to obtain an Effect implementation.
EffectFactory.java 18 package android.media.effect;
26 * creating a certain effect, the application should confirm that the effect is supported on this
34 "android.media.effect.effects.", // Default effect package
59 "android.media.effect.effects.BrightnessEffect";
74 "android.media.effect.effects.ContrastEffect";
88 "android.media.effect.effects.FisheyeEffect";
93 * background visible before the effect becomes active. The effect will wai
507 Effect effect = null; local
    [all...]
FilterEffect.java 18 package android.media.effect;
35 public abstract class FilterEffect extends Effect {
49 * Get the effect name.
51 * Returns the unique name of the effect, which matches the name used for instantiating this
52 * effect by the EffectFactory.
54 * @return The name of the effect.
79 * Returns the active filter context for this effect.
SingleFilterEffect.java 18 package android.media.effect;
24 import android.media.effect.Effect;
25 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.
44 * @param name The name of this effect (used to create it in the EffectFactory).
  /frameworks/base/media/java/android/media/audiofx/
AudioEffect.java 43 * <p>To apply the audio effect to a specific AudioTrack or MediaPlayer instance,
48 * <p>Creating an AudioEffect object will create the corresponding effect engine in the audio
49 * framework if no instance of the same effect type exists in the specified audio session.
52 * control of the effect engine or not depending on the priority parameter. If priority is higher
53 * than the priority used by the current effect engine owner, the control will be transfered to the
55 * application will be notified of changes in effect engine state or control ownership by the
67 // effect type UUIDs are taken from hardware/libhardware/include/hardware/audio_effect.h
70 * The following UUIDs define effect types corresponding to standard audio
77 * UUID for environmental reverb effect
83 * UUID for preset reverb effect
1158 AudioEffect effect = (AudioEffect) ((WeakReference) effect_ref).get(); local
    [all...]
  /dalvik/tests/004-annotations/src/android/test/anno/
AnnoFancyField.java 7 @Inherited // should have no effect
  /external/webkit/LayoutTests/fast/dom/HTMLLinkElement/
prefetch-onerror-expected.txt 1 This tests that onerror events can be attached to link elements with rel=prefetch. Since prefetch links are just there as a performance optimization, the onerror/onload event is their only programatic side-effect.
prefetch-onload-expected.txt 1 This tests that onload events can be attached to link elements with rel=prefetch. Since prefetch links are just there as a performance optimization, the onload event is their only programatic side-effect.
  /frameworks/base/media/libeffects/factory/
Android.mk 3 # Effect factory library
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/filters/
DoodleFilter.java 25 import android.media.effect.Effect;
26 import android.media.effect.EffectFactory;
72 Effect effect = getEffect(EffectFactory.EFFECT_BITMAPOVERLAY); local
73 effect.setParameter("bitmap", bitmap);
74 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
  /frameworks/base/media/java/android/media/videoeditor/
EffectColor.java 21 * This class allows to apply color effect on a media item.
24 public class EffectColor extends Effect {
61 * The effect type
66 * The effect color
83 * @param effectId The effect id
86 * @param durationMs The duration of this effect in milliseconds
87 * @param type type of the effect. type is one of: TYPE_COLOR,
126 * Get the effect type.
128 * @return The effect type
135 * Get the color if effect type is TYPE_COLOR or TYPE_GRADIENT
    [all...]
  /frameworks/base/media/libeffects/data/
audio_effects.conf 1 # List of effect libraries to load. Each library element must contain a "path" element
23 # list of effects to load. Each effect element must contain a "library" and a "uuid" element.
26 # The name of the effect element is indicative, only the value of the "uuid" element
27 # designates the effect.
28 # The uuid is the implementation specific UUID as specified by the effect vendor. This is not the
29 # generic effect type UUID.
33 # uuid <effect uuid>
92 # Each input source element contains a list of effects elements. The name of the effect
94 # Each effect element may optionally contain a list of parameters and their
95 # default value to apply when the pre processor effect is created
    [all...]
  /external/chromium/chrome/browser/tab_contents/
web_drop_target_win.cc 31 // A helper method for getting the preferred drop effect.
32 DWORD GetPreferredDropEffect(DWORD effect) {
33 if (effect & DROPEFFECT_COPY)
35 if (effect & DROPEFFECT_LINK)
37 if (effect & DROPEFFECT_MOVE)
53 DWORD OnDragEnter(IDataObject* data_object, DWORD effect) {
55 GetPreferredDropEffect(effect) : DROPEFFECT_NONE;
58 DWORD OnDragOver(IDataObject* data_object, DWORD effect) {
60 GetPreferredDropEffect(effect) : DROPEFFECT_NONE;
66 DWORD OnDrop(IDataObject* data_object, DWORD effect) {
    [all...]

Completed in 241 milliseconds

1 23 4 5 6 7 8 91011>>