HomeSort by relevance Sort by last modified time
    Searched refs:effects (Results 51 - 75 of 330) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/av/media/libeffects/config/include/media/
EffectsConfig.h 21 /** @file Parses audio effects configuration file to C and C++ structure.
64 using Effects = std::vector<Effect>;
69 std::vector<std::reference_wrapper<Effect>> effects; member in struct:android::effectsConfig::Stream
84 Effects effects; member in struct:android::effectsConfig::Config
  /frameworks/av/media/libeffects/config/src/
EffectsConfig.cpp 87 /** All output stream types which support effects.
104 /** All input stream types which support effects.
155 * @return true and pushes the effect in effects on success,
157 bool parseEffect(const XMLElement& xmlEffect, Libraries& libraries, Effects* effects) {
196 // Handle proxy effects
215 effects->push_back(std::move(effect));
223 bool parseStream(const XMLElement& xmlStream, Effects& effects, std::vector<Stream>* streams) {
241 auto* effect = findByName(effectName, effects);
    [all...]
  /frameworks/av/media/libeffects/downmix/
Android.mk 20 $(call include-path-for, audio-effects) \
  /frameworks/av/media/libeffects/preprocessing/
Android.mk 19 $(call include-path-for, audio-effects)
  /frameworks/base/data/sounds/
AudioPackage12.mk 28 $(LOCAL_PATH)/effects/ogg/$(fn).ogg:system/media/audio/ui/$(fn).ogg)
30 $(LOCAL_PATH)/effects/material/ogg/$(fn).ogg:system/media/audio/ui/$(fn).ogg)
AudioPackageGo.mk 43 $(LOCAL_PATH)/effects/ogg/Effect_Tick.ogg:system/media/audio/ui/Effect_Tick.ogg \
44 $(LOCAL_PATH)/effects/ogg/KeypressStandard.ogg:system/media/audio/ui/KeypressStandard.ogg \
45 $(LOCAL_PATH)/effects/ogg/KeypressSpacebar.ogg:system/media/audio/ui/KeypressSpacebar.ogg \
46 $(LOCAL_PATH)/effects/ogg/KeypressDelete.ogg:system/media/audio/ui/KeypressDelete.ogg \
47 $(LOCAL_PATH)/effects/ogg/KeypressInvalid.ogg:system/media/audio/ui/KeypressInvalid.ogg \
48 $(LOCAL_PATH)/effects/ogg/KeypressReturn.ogg:system/media/audio/ui/KeypressReturn.ogg \
AudioTv.mk 41 $(LOCAL_PATH)/effects/ogg/camera_click_48k.ogg:system/media/audio/ui/camera_click.ogg \
42 $(LOCAL_PATH)/effects/ogg/camera_focus.ogg:system/media/audio/ui/camera_focus.ogg \
43 $(LOCAL_PATH)/effects/ogg/Dock.ogg:system/media/audio/ui/Dock.ogg \
44 $(LOCAL_PATH)/effects/ogg/Effect_Tick_48k.ogg:system/media/audio/ui/Effect_Tick.ogg \
45 $(LOCAL_PATH)/effects/ogg/KeypressDelete_120_48k.ogg:system/media/audio/ui/KeypressDelete.ogg \
46 $(LOCAL_PATH)/effects/ogg/KeypressInvalid_120_48k.ogg:system/media/audio/ui/KeypressInvalid.ogg \
47 $(LOCAL_PATH)/effects/ogg/KeypressReturn_120_48k.ogg:system/media/audio/ui/KeypressReturn.ogg \
48 $(LOCAL_PATH)/effects/ogg/KeypressSpacebar_120_48k.ogg:system/media/audio/ui/KeypressSpacebar.ogg \
49 $(LOCAL_PATH)/effects/ogg/KeypressStandard_120_48k.ogg:system/media/audio/ui/KeypressStandard.ogg \
50 $(LOCAL_PATH)/effects/ogg/Lock.ogg:system/media/audio/ui/Lock.ogg
    [all...]
AudioPackage13.mk 29 $(LOCAL_PATH)/effects/ogg/$(fn).ogg:system/media/audio/ui/$(fn).ogg)
31 $(LOCAL_PATH)/effects/material/ogg/$(fn).ogg:system/media/audio/ui/$(fn).ogg)
OriginalAudio.mk 29 $(LOCAL_PATH)/effects/Effect_Tick.ogg:system/media/audio/ui/Effect_Tick.ogg \
30 $(LOCAL_PATH)/effects/KeypressStandard.ogg:system/media/audio/ui/KeypressStandard.ogg \
31 $(LOCAL_PATH)/effects/KeypressSpacebar.ogg:system/media/audio/ui/KeypressSpacebar.ogg \
32 $(LOCAL_PATH)/effects/KeypressDelete.ogg:system/media/audio/ui/KeypressDelete.ogg \
33 $(LOCAL_PATH)/effects/KeypressReturn.ogg:system/media/audio/ui/KeypressReturn.ogg \
34 $(LOCAL_PATH)/effects/VideoRecord.ogg:system/media/audio/ui/VideoRecord.ogg \
35 $(LOCAL_PATH)/effects/VideoStop.ogg:system/media/audio/ui/VideoStop.ogg \
36 $(LOCAL_PATH)/effects/camera_click.ogg:system/media/audio/ui/camera_click.ogg \
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue15303.go 7 // Ensure that inlined struct/array comparisons have the right side-effects.
issue5373.go 7 // Ensure that zeroing range loops have the requisite side-effects.
40 // Index variable whose evaluation has side-effects
55 // Range expression whose evaluation has side-effects
  /prebuilts/go/linux-x86/test/fixedbugs/
issue15303.go 7 // Ensure that inlined struct/array comparisons have the right side-effects.
issue5373.go 7 // Ensure that zeroing range loops have the requisite side-effects.
40 // Index variable whose evaluation has side-effects
55 // Range expression whose evaluation has side-effects
  /art/compiler/optimizing/
side_effects_analysis.h 39 // Compute side effects of individual blocks and loops.
47 void UpdateLoopEffects(HLoopInformation* info, SideEffects effects);
55 // Side effects of individual blocks, that is the union of the side effects
59 // Side effects of loops, that is the union of the side effects of the
  /external/skia/src/gpu/
GrPathRendering.cpp 49 GlyphGenerator(const SkTypeface& typeface, const SkScalerContextEffects& effects,
51 : fScalerContext(typeface.createScalerContext(effects, &desc))
75 const SkScalerContextEffects& effects,
84 sk_sp<GlyphGenerator> generator(new GlyphGenerator(*typeface, effects, *desc));
102 // No effects, so we make a dummy struct
  /frameworks/av/media/libeffects/factory/
EffectsFactory.h 37 // Structure used for storing effects with their sub effects.
39 // object holds the effect desc and the list sub_elem holds the sub effects
51 list_elem_t *effects; //list of effect_descriptor_t member in struct:lib_entry_s
67 // and the descriptor of the sub effects.
69 // sub effects as the sub effects are not linked
82 // Description: Returns the descriptors of the sub effects of the effect
  /frameworks/av/services/audiopolicy/service/
AudioPolicyEffects.h 34 // This class will manage all effects attached to input and output streams in
49 // managing audio effects.
51 // Return a list of effect descriptors for default input effects
57 // Add all input effects associated with this input
58 // Effects are attached depending on the audio_source_t
63 // Add all input effects associated to this input
68 // Return a list of effect descriptors for default output effects
74 // Add all output effects associated to this output
75 // Effects are attached depending on the audio_stream_type_t
80 // release all output effects associated with this output stream and audiosessio
    [all...]
  /frameworks/base/media/mca/effect/java/android/media/effect/effects/
IdentityEffect.java 18 package android.media.effect.effects;
  /external/skia/src/ports/
SkFontHost_FreeType_common.h 32 SkScalerContext_FreeType_Base(sk_sp<SkTypeface> typeface, const SkScalerContextEffects& effects,
34 : INHERITED(std::move(typeface), effects, desc)
  /external/skia/tools/lua/
agg_dash.lua 22 io.write("Total dashed effects is: ", dashCount, "\n")
  /hardware/qcom/display/msm8960/libtilerenderer/
Android.mk 13 external/skia/include/effects \
  /external/skia/src/fonts/
SkRandomScalerContext.cpp 42 const SkScalerContextEffects& effects,
45 : SkScalerContext(std::move(face), effects, desc)
47 fProxy = this->getRandomTypeface()->proxy()->createScalerContext(effects, desc);
198 SkScalerContext* SkRandomTypeface::onCreateScalerContext(const SkScalerContextEffects& effects,
201 effects, desc, fFakeIt);
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
bool.go 13 if f() == 0 || f() == 0 { // OK f might have side effects
19 _ = i == byte(1) || i == byte(1) // TODO conversions are treated as if they may have side effects
71 _ = f() != 0 && f() != 0 // OK f might have side effects
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
bool.go 13 if f() == 0 || f() == 0 { // OK f might have side effects
19 _ = i == byte(1) || i == byte(1) // TODO conversions are treated as if they may have side effects
71 _ = f() != 0 && f() != 0 // OK f might have side effects
  /device/google/dragon/audio/hal/
Android.mk 42 $(call include-path-for, audio-effects)

Completed in 3832 milliseconds

1 23 4 5 6 7 8 91011>>