HomeSort by relevance Sort by last modified time
    Searched full:effect (Results 1 - 25 of 5616) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/mca/effect/java/android/media/effect/
package.html 5 adjust brightness, adjust saturation, rotate an image, apply a fisheye effect, and much more. The
17 <p>An {@link android.media.effect.Effect} object defines a single media effect that you can apply to
18 an image frame. The basic workflow to create an {@link android.media.effect.Effect} is:</p>
21 <li>Call {@link android.media.effect.EffectContext#createWithCurrentGlContext
23 <li>Use the returned {@link android.media.effect.EffectContext} to call {@link
24 android.media.effect.EffectContext#getFactory EffectContext.getFactory()}, which returns an instance
25 of {@link android.media.effect.EffectFactory}.</li
    [all...]
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);
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFilterBuilder.cpp 35 void SVGFilterBuilder::add(const AtomicString& id, PassRefPtr<FilterEffect> effect)
38 m_lastEffect = effect;
45 m_lastEffect = effect;
66 RefPtr<FilterEffect> effect = prpEffect; local
68 // The effect must be a newly created filter effect.
69 ASSERT(!m_effectReferences.contains(effect));
71 m_effectReferences.add(effect, FilterEffectSet());
73 unsigned numberOfInputEffects = effect->inputEffects().size();
77 effectReferences(effect->inputEffect(i)).add(effect.get())
    [all...]
  /development/samples/browseable/RevealEffectBasic/
_index.jd 7 Basic sample to demonstrate the reveal 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 Effect(Bounds b, Modality m = DEFINITE) : modality(m), bounds(b) {}
38 // The unknown effect
90 Effect effect = Lookup(var); local
    [all...]
  /external/chromium_org/ui/base/dragdrop/
drop_target_win.cc 42 DWORD* effect) {
47 reinterpret_cast<POINT*>(&cursor_position), *effect); local
52 *effect = OnDragEnter(current_data_object_, key_state, screen_pt, *effect);
58 DWORD* effect) {
62 drop_helper->DragOver(reinterpret_cast<POINT*>(&cursor_position), *effect); local
65 *effect = OnDragOver(current_data_object_, key_state, screen_pt, *effect);
84 DWORD* effect) {
89 reinterpret_cast<POINT*>(&cursor_position), *effect);
    [all...]
drag_drop_types_win.cc 12 uint32 effect) {
14 if (effect & DROPEFFECT_LINK)
16 if (effect & DROPEFFECT_COPY)
18 if (effect & DROPEFFECT_MOVE)
  /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/third_party/skia/include/gpu/
GrDrawEffect.h 9 * effect subclass (e.g. GrGLEffect). It is used to by the backend-specific class to generate a
10 * cache key for the effect, generate code on a program cache miss, and to upload uniform values to
12 * In addition to the effect, it also communicates any changes between the relationship between
13 * the view matrix and local coordinate system since the effect was installed in its GrDrawState.
14 * The typical use case is that sometime after an effect was installed a decision was made to draw
16 * coord-change-matrix would be the inverse of the view matrix that was set when the effect was
27 const GrEffectRef* effect() const { return fEffectStage->getEffect(); } function in class:GrDrawEffect
30 const T& castEffect() const { return *static_cast<const T*>(this->effect()->get()); }
  /external/skia/include/gpu/
GrDrawEffect.h 9 * effect subclass (e.g. GrGLEffect). It is used to by the backend-specific class to generate a
10 * cache key for the effect, generate code on a program cache miss, and to upload uniform values to
12 * In addition to the effect, it also communicates any changes between the relationship between
13 * the view matrix and local coordinate system since the effect was installed in its GrDrawState.
14 * The typical use case is that sometime after an effect was installed a decision was made to draw
16 * coord-change-matrix would be the inverse of the view matrix that was set when the effect was
27 const GrEffectRef* effect() const { return fEffectStage->getEffect(); } function in class:GrDrawEffect
30 const T& castEffect() const { return *static_cast<const T*>(this->effect()->get()); }
  /frameworks/base/core/jni/android/graphics/
PathEffect.cpp 15 SkPathEffect* effect = reinterpret_cast<SkPathEffect*>(effectHandle); local
16 SkSafeUnref(effect);
23 SkPathEffect* effect = SkComposePathEffect::Create(outer, inner); local
24 return reinterpret_cast<jlong>(effect);
31 SkPathEffect* effect = SkSumPathEffect::Create(first, second); local
32 return reinterpret_cast<jlong>(effect);
44 SkPathEffect* effect = SkDashPathEffect::Create(intervals, count, phase); local
45 return reinterpret_cast<jlong>(effect);
52 SkPathEffect* effect = SkPath1DPathEffect::Create(*shape, advance, phase, local
54 return reinterpret_cast<jlong>(effect);
58 SkPathEffect* effect = SkCornerPathEffect::Create(radius); local
64 SkPathEffect* effect = SkDiscretePathEffect::Create(length, deviation); local
    [all...]
  /frameworks/av/include/media/
EffectsFactoryApi.h 30 // Effect factory interface
38 // Each effect must have a different effect uuid (see
42 // reset the index of the effect descriptor returned by next call to
61 // Description: Returns a descriptor of the next available effect.
62 // See effect_descriptor_t for a details on effect descriptor.
70 // pDescriptor: address where to return the effect descriptor.
74 // -ENOENT no more effect available
77 // -ENOSYS effect list has changed since last execution of
79 // *pDescriptor: updated with the effect descriptor
    [all...]
AudioEffect.h 65 * NO_INIT effect library failed to initialize
74 * Returns an effect descriptor during effect
78 * index: index of the queried effect.
79 * descriptor: address where the effect descriptor should be returned.
84 * NO_INIT effect library failed to initialize
86 * INVALID_OPERATION effect list has changed since last execution of queryNumberEffects()
89 * *descriptor: updated with effect descriptor
95 * Returns the descriptor for the specified effect uuid.
98 * uuid: pointer to effect uuid
    [all...]
  /external/chromium_org/content/browser/android/
overscroll_glow.h 29 // Create a new effect. If |enabled| is false, the effect will remain
31 // Note: No resources will be allocated until the effect is both
37 // Enable the effect. If the effect was previously disabled, it will remain
41 // Deactivate and detach the effect. Subsequent calls to |OnOverscrolled()| or
42 // |Animate()| will have no effect.
45 // Effect layers will be attached to |overscrolling_layer| if necessary.
48 // Returns true if the effect still needs animation ticks.
55 // Returns true if the effect still needs animation ticks
    [all...]
  /external/clang/test/SemaCXX/
return.cpp 26 const int scalar_c(); // expected-warning{{'const' type qualifier on return type has no effect}}
27 int const scalar_c2(); // expected-warning{{'const' type qualifier on return type has no effect}}
31 const // expected-warning{{'const' type qualifier on return type has no effect}}
36 const // expected-warning{{'const' type qualifier on return type has no effect}}
39 char* const h(); // expected-warning{{'const' type qualifier on return type has no effect}}
40 char* volatile i(); // expected-warning{{'volatile' type qualifier on return type has no effect}}
43 volatile // expected-warning{{'const volatile' type qualifiers on return type have no effect}}
47 const volatile int scalar_cv(); // expected-warning{{'const volatile' type qualifiers on return type have no effect}}
53 mixed_ret(); // expected-warning {{'volatile' type qualifier on return type has no effect}}
55 const int volatile // expected-warning {{'const volatile' type qualifiers on return type have no effect}}
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaAudioEffectTest.java 149 //Test case 1.0: test constructor from effect type and get effect ID
166 AudioEffect effect = new AudioEffect(desc[0].type, local
170 assertNotNull(msg + ": could not create AudioEffect", effect);
172 assertTrue(msg +": invalid effect ID", (effect.getId() != 0));
177 effect.release();
183 msg = msg.concat(": Effect not found: "+desc[0].name);
186 msg = msg.concat(": Effect library not loaded");
192 //Test case 1.1: test constructor from effect uui
208 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_NULL, local
234 AudioEffect effect = new AudioEffect(UUID.randomUUID(), local
257 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local
286 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local
323 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_ENV_REVERB, local
363 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_ENV_REVERB, local
410 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_ENV_REVERB, local
442 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local
475 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local
505 AudioEffect effect = null; local
539 AudioEffect effect = null; local
572 AudioEffect effect = null; local
605 AudioEffect effect = null; local
639 AudioEffect effect = null; local
676 AudioEffect effect = null; local
713 AudioEffect effect = null; local
749 AudioEffect effect = null; local
783 AudioEffect effect = null; local
817 AudioEffect effect = null; local
851 AudioEffect effect = null; local
884 AudioEffect effect = null; local
917 AudioEffect effect = null; local
952 AudioEffect effect = null; local
987 AudioEffect effect = null; local
1022 AudioEffect effect = null; local
1310 AudioEffect effect = null; local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrBicubicEffect.h 38 * Create a simple filter effect with custom bicubic coefficients and optional domain.
47 AutoEffectUnref effect(SkNEW_ARGS(GrBicubicEffect, (tex, coefficients,
50 return CreateEffectRef(effect);
55 * Create a Mitchell filter effect with specified texture matrix and x/y tile modes.
63 * Create a filter effect with custom bicubic coefficients, the texture matrix, and the x/y
68 AutoEffectUnref effect(SkNEW_ARGS(GrBicubicEffect, (tex, coefficients, matrix, tileModes)));
69 return CreateEffectRef(effect);
73 * Create a Mitchell filter effect with a texture matrix and a domain.
76 AutoEffectUnref effect(SkNEW_ARGS(GrBicubicEffect, (tex, gMitchellCoefficients, matrix,
78 return CreateEffectRef(effect);
    [all...]
GrDashingEffect.h 28 * An effect that renders a dashed line. It is intended to be used as a coverage effect.
29 * The effect is meant for dashed lines that only have a single on/off interval pair.
30 * Bounding geometry is rendered and the effect computes coverage based on the fragment's
  /external/skia/src/gpu/effects/
GrBicubicEffect.h 38 * Create a simple filter effect with custom bicubic coefficients and optional domain.
47 AutoEffectUnref effect(SkNEW_ARGS(GrBicubicEffect, (tex, coefficients,
50 return CreateEffectRef(effect);
55 * Create a Mitchell filter effect with specified texture matrix and x/y tile modes.
63 * Create a filter effect with custom bicubic coefficients, the texture matrix, and the x/y
68 AutoEffectUnref effect(SkNEW_ARGS(GrBicubicEffect, (tex, coefficients, matrix, tileModes)));
69 return CreateEffectRef(effect);
73 * Create a Mitchell filter effect with a texture matrix and a domain.
76 AutoEffectUnref effect(SkNEW_ARGS(GrBicubicEffect, (tex, gMitchellCoefficients, matrix,
78 return CreateEffectRef(effect);
    [all...]
GrDashingEffect.h 28 * An effect that renders a dashed line. It is intended to be used as a coverage effect.
29 * The effect is meant for dashed lines that only have a single on/off interval pair.
30 * Bounding geometry is rendered and the effect computes coverage based on the fragment's
  /external/chromium_org/third_party/WebKit/Source/core/animation/
ElementAnimation.h 48 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Dictionary& timingInputDictionary)
50 return animateInternal(element, effect, TimingInput::convert(timingInputDictionary));
53 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, double duration)
55 return animateInternal(element, effect, TimingInput::convert(duration));
58 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect)
60 return animateInternal(element, effect, Timing());
65 RefPtrWillBeRawPtr<AnimationEffect> effect = EffectInput::convert(&element, keyframeDictionaryVector, exceptionState); local
68 ASSERT(effect);
69 return animateInternal(element, effect.release(), TimingInput::convert(timingInputDictionary));
74 RefPtrWillBeRawPtr<AnimationEffect> effect = EffectInput::convert(&element, keyframeDictionaryVector, exceptionState) local
83 RefPtrWillBeRawPtr<AnimationEffect> effect = EffectInput::convert(&element, keyframeDictionaryVector, exceptionState); local
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
Promise-already-rejected-expected.txt 1 Resolve or reject do not take effect on a rejected Promise.
Promise-already-resolved-expected.txt 1 Resolve or reject do not take effect on a resolved Promise.
  /external/clang/test/Preprocessor/
import_self.c 3 // This #import should have no effect, as we're importing the current file.
  /external/eigen/doc/snippets/
tut_arithmetic_transpose_aliasing.cpp 5 cout << "and the result of the aliasing effect:\n" << a << endl

Completed in 1606 milliseconds

1 2 3 4 5 6 7 8 91011>>