HomeSort by relevance Sort by last modified time
    Searched refs:Effect (Results 1 - 25 of 45) sorted by null

1 2

  /frameworks/base/media/mca/effect/java/android/media/effect/
EffectUpdateListener.java 18 package android.media.effect;
21 * Some effects may issue callbacks to inform the host of changes to the effect state. This is the
27 * Called when the effect state is updated.
29 * @param effect The effect that has been updated.
30 * @param info A value that gives more information about the update. See the effect's
33 public void onEffectUpdated(Effect effect, Object info);
Effect.java 18 package android.media.effect;
26 * <p>To create an Effect you must first create an EffectContext. You can obtain an instance of the
28 * {@link android.media.effect.EffectContext#getFactory() getFactory()}. The EffectFactory allows
32 * applying an effect. An effect is bound to a single EffectContext, which in turn is bound to a
37 public abstract class Effect {
40 * Get the effect name.
42 * Returns the unique name of the effect, which matches the name used for instantiating this
43 * effect by the EffectFactory.
45 * @return The name of the 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...]
FilterEffect.java 18 package android.media.effect;
32 public abstract class FilterEffect extends Effect {
46 * Get the effect name.
48 * Returns the unique name of the effect, which matches the name used for instantiating this
49 * effect by the EffectFactory.
51 * @return The name of the effect.
76 * Returns the active filter context for this effect.
  /external/chromium_org/v8/src/
effects.h 19 // An effect can either be definite, if the write is known to have taken place,
25 // effect cancels out any previous effect upon sequencing. A possible effect
26 // merges into a previous effect, i.e., type bounds are merged. Alternative
27 // composition always merges bounds. It yields a possible effect if at least
29 struct Effect {
35 Effect() : modality(DEFINITE) {}
36 explicit Effect(Bounds b, Modality m = DEFINITE) : modality(m), bounds(b) {}
38 // The unknown effect
90 Effect effect = Lookup(var); local
    [all...]
typing.h 38 Effect ObservedOnStack(Object* value);
  /external/chromium_org/third_party/skia/include/gpu/
GrProcessorUnitTest.h 101 #define GR_DEFINE_FRAGMENT_PROCESSOR_TEST(Effect) \
102 GrProcessorTestFactory<GrFragmentProcessor> Effect :: gTestFactory(Effect :: TestCreate)
104 #define GR_DEFINE_GEOMETRY_PROCESSOR_TEST(Effect) \
105 GrProcessorTestFactory<GrGeometryProcessor> Effect :: gTestFactory(Effect :: TestCreate)
  /frameworks/av/media/libeffects/factory/
Android.mk 3 # Effect factory library
  /external/skia/include/gpu/
GrEffectUnitTest.h 86 #define GR_DEFINE_EFFECT_TEST(Effect) \
87 GrEffectTestFactory Effect :: gTestFactory(Effect :: TestCreate)
  /frameworks/av/include/media/
IEffect.h 30 DECLARE_META_INTERFACE(Effect);
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
image_view.js 112 new ImageView.Effect.None(),
113 ImageView.Effect.DEFAULT_DURATION);
252 * @param {Object} effect Transition effect object.
259 function(item, effect, displayCallback, loadCallback) {
263 if (effect) {
268 effect = null;
296 } else if ((effect && effect.constructor.name === 'Slide') &&
298 // Only show thumbnails if there is no effect or the effect is Slide
    [all...]
  /cts/tests/tests/effect/src/android/effect/cts/
EffectTest.java 17 package android.effect.cts;
20 import android.media.effect.Effect;
21 import android.media.effect.EffectContext;
22 import android.media.effect.EffectFactory;
35 /** This is the effect context we will run the tests in */
58 /** Assert an effect context can be created and attached to GL context. */
74 "Effect '" + effectName + "' supported",
82 assertFalse("Empty effect name unsupported", factory.isEffectSupported(""));
83 assertFalse("Bogus effect name unsupported", factory.isEffectSupported("!BOGUS!"))
91 Effect effect = factory.createEffect(effectName); local
100 Effect effect = factory.createEffect(EffectFactory.EFFECT_SEPIA); local
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
simple-inlining.js 32 // Effect context.
54 // Effect context.
76 // Effect context.
98 // Effect context.
120 // Effect context.
143 // Effect context.
inline-param.js 32 // Effect context.
55 // Effect context.
69 // Effect context.
inline-two.js 32 // Effect context.
55 // Effect context.
80 // Effect context.
inline-compare.js 33 // Effect context.
inline-conditional.js 31 // Effect context.
inline-global-access.js 34 // Effect context.
  /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...]
  /frameworks/av/media/libmedia/
IEffect.cpp 128 IMPLEMENT_META_INTERFACE(Effect, "android.media.IEffect");
  /developers/build/prebuilts/gradle/MediaEffects/Application/src/main/java/com/example/android/mediaeffects/
MediaEffectsFragment.java 22 import android.media.effect.Effect;
23 import android.media.effect.EffectContext;
24 import android.media.effect.EffectFactory;
48 private Effect mEffect;
119 //if an effect is chosen initialize it and apply it to the texture
126 private void setCurrentEffect(int effect) {
127 mCurrentEffect = effect;
153 // Initialize the correct effect based on the selected menu/action item
279 // if no effect is chosen, just render the original bitma
    [all...]
  /developers/samples/android/media/MediaEffects/Application/src/main/java/com/example/android/mediaeffects/
MediaEffectsFragment.java 22 import android.media.effect.Effect;
23 import android.media.effect.EffectContext;
24 import android.media.effect.EffectFactory;
48 private Effect mEffect;
119 //if an effect is chosen initialize it and apply it to the texture
126 private void setCurrentEffect(int effect) {
127 mCurrentEffect = effect;
153 // Initialize the correct effect based on the selected menu/action item
279 // if no effect is chosen, just render the original bitma
    [all...]
  /development/samples/browseable/MediaEffects/src/com.example.android.mediaeffects/
MediaEffectsFragment.java 22 import android.media.effect.Effect;
23 import android.media.effect.EffectContext;
24 import android.media.effect.EffectFactory;
48 private Effect mEffect;
119 //if an effect is chosen initialize it and apply it to the texture
126 private void setCurrentEffect(int effect) {
127 mCurrentEffect = effect;
153 // Initialize the correct effect based on the selected menu/action item
279 // if no effect is chosen, just render the original bitma
    [all...]
  /developers/build/lib/
assetstudio.jar 
  /prebuilts/devtools/tools/lib/
asset-studio.jar 

Completed in 1314 milliseconds

1 2