/external/skia/gn/ |
D | effects.gni | 5 # //include/effects/BUILD.bazel 6 # //src/effects/BUILD.bazel 14 # Generated by Bazel rule //include/effects:public_hdrs 16 "$_include/effects/Sk1DPathEffect.h", 17 "$_include/effects/Sk2DPathEffect.h", 18 "$_include/effects/SkBlenders.h", 19 "$_include/effects/SkBlurMaskFilter.h", 20 "$_include/effects/SkColorMatrix.h", 21 "$_include/effects/SkColorMatrixFilter.h", 22 "$_include/effects/SkCornerPathEffect.h", [all …]
|
D | effects_imagefilters.gni | 5 # //include/effects/BUILD.bazel 6 # //src/effects/imagefilters/BUILD.bazel 13 # Generated by Bazel rule //include/effects:public_imagefilters_hdrs 14 skia_effects_imagefilter_public = [ "$_include/effects/SkImageFilters.h" ] 16 # Generated by Bazel rule //src/effects/imagefilters:imagefilters_srcs 18 "$_src/effects/imagefilters/SkAlphaThresholdImageFilter.cpp", 19 "$_src/effects/imagefilters/SkArithmeticImageFilter.cpp", 20 "$_src/effects/imagefilters/SkBlendImageFilter.cpp", 21 "$_src/effects/imagefilters/SkBlurImageFilter.cpp", 22 "$_src/effects/imagefilters/SkColorFilterImageFilter.cpp", [all …]
|
D | gpu.gni | 22 # //src/gpu/ganesh/effects/BUILD.bazel 84 # //src/gpu/ganesh/effects:effects_hdrs 85 # //src/gpu/ganesh/effects:effects_srcs 349 "$_src/gpu/ganesh/effects/GrAtlasedShaderHelpers.h", 350 "$_src/gpu/ganesh/effects/GrBezierEffect.cpp", 351 "$_src/gpu/ganesh/effects/GrBezierEffect.h", 352 "$_src/gpu/ganesh/effects/GrBicubicEffect.cpp", 353 "$_src/gpu/ganesh/effects/GrBicubicEffect.h", 354 "$_src/gpu/ganesh/effects/GrBitmapTextGeoProc.cpp", 355 "$_src/gpu/ganesh/effects/GrBitmapTextGeoProc.h", [all …]
|
/external/skia/modules/skottie/ |
D | skottie.gni | 8 # //modules/skottie/src/effects/BUILD.bazel 27 # //modules/skottie/src/effects:srcs 59 "$_modules/skottie/src/effects/BlackAndWhiteEffect.cpp", 60 "$_modules/skottie/src/effects/BrightnessContrastEffect.cpp", 61 "$_modules/skottie/src/effects/BulgeEffect.cpp", 62 "$_modules/skottie/src/effects/CCTonerEffect.cpp", 63 "$_modules/skottie/src/effects/CornerPinEffect.cpp", 64 "$_modules/skottie/src/effects/DirectionalBlur.cpp", 65 "$_modules/skottie/src/effects/DisplacementMapEffect.cpp", 66 "$_modules/skottie/src/effects/DropShadowEffect.cpp", [all …]
|
/external/oboe/apps/fxlab/docs/ |
D | Dev-Guide.md | 3 The effects included are designed to be as portable as possible, as well as making it easy to add a… 13 Although the CMake file requires android headers (to use Oboe), the effects themselves can be compi… 17 …alls native code through the JNI bridge to query information about the various effects implemented, 19 native side. The JNI bridge passes information regarding implemented effects descriptions to the UI… 20 called when the user modifies effects in the UI. 23 with as low latency as possible. The `FunctionList` class contains the a vector of effects that cor… 24 effects (and their parameters) that the user wants to use to process their audio. Effects (and the … 31 The effects folder contains the classes of various implemented effects. It also contains `Effects.h… 32 …iptions implemented lives. The description folder contains the description for all of the effects. 38 to an effect, or pointing to a standalone function. Adding new effects is welcome! [all …]
|
/external/oboe/docs/notes/ |
D | effects.md | 7 The Android Audio framework provides some effects processing that can be used by apps. 11 Another alternative is to do your own effects processing in your own app. 16 ### Reasons to do your own effects Processing: 18 2. You can customize the effects as needed. 19 3. You can get lower latency when you use your own effects. Using Android AudioEffects prevents you… 38 Note that these streams will probably not have low latency. So you may want to do your own effects … 42 There are many options for finding audio effects. 47 - [Faust - language for generating effects, big library](https://faust.grame.fr/index.html)
|
/external/oboe/apps/fxlab/ |
D | README.md | 4 This app performs real-time audio effects with low latency using the [oboe](https://www.github.com/… 6 The audio effects are written natively (in C++), with Kotlin used for the UI. 8 Supported features include a linear pipeline of real-time effects with re-ordering, enable/disable,… 10 The effects used should be portable as they operate entirely on numeric type iterators. 13 …ve USB audio interfaces, devices such as the iRig 2 interface for guitar effects/amplification or … 19 …effects. The current list of effects being applied to the input audio will be shown on the main sc…
|
/external/skia/ |
D | public.bzl | 108 "include/effects/Sk1DPathEffect.h", 109 "include/effects/Sk2DPathEffect.h", 110 "include/effects/SkBlenders.h", 111 "include/effects/SkBlurDrawLooper.h", 112 "include/effects/SkBlurMaskFilter.h", 113 "include/effects/SkColorMatrixFilter.h", 114 "include/effects/SkColorMatrix.h", 115 "include/effects/SkCornerPathEffect.h", 116 "include/effects/SkDashPathEffect.h", 117 "include/effects/SkDiscretePathEffect.h", [all …]
|
D | Android.bp | 148 "include/effects/", 406 "src/effects/Sk1DPathEffect.cpp", 407 "src/effects/Sk2DPathEffect.cpp", 408 "src/effects/SkBlenders.cpp", 409 "src/effects/SkColorMatrix.cpp", 410 "src/effects/SkColorMatrixFilter.cpp", 411 "src/effects/SkCornerPathEffect.cpp", 412 "src/effects/SkDashPathEffect.cpp", 413 "src/effects/SkDiscretePathEffect.cpp", 414 "src/effects/SkEmbossMask.cpp", [all …]
|
/external/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/ |
D | WebRtcAudioRecord.java | 55 private @Nullable WebRtcAudioEffects effects; field in WebRtcAudioRecord 214 effects = WebRtcAudioEffects.create(); in WebRtcAudioRecord() 219 if (effects == null) { in enableBuiltInAEC() 223 return effects.setAEC(enable); in enableBuiltInAEC() 228 if (effects == null) { in enableBuiltInNS() 232 return effects.setNS(enable); in enableBuiltInNS() 281 if (effects != null) { in initRecording() 282 effects.enable(audioRecord.getAudioSessionId()); in initRecording() 321 if (effects != null) { in stopRecording() 322 effects.release(); in stopRecording()
|
/external/tensorflow/tensorflow/compiler/mlir/tools/kernel_gen/transforms/ |
D | copy_cleanup_pass.cc | 68 SmallVector<MemoryEffects::EffectInstance, 2> effects; in RemoveCopyIfTargetOnlyRead() local 69 effect_interface.getEffectsOnValue(op.getResult(), effects); in RemoveCopyIfTargetOnlyRead() 70 if (llvm::any_of(effects, [](MemoryEffects::EffectInstance it) { in RemoveCopyIfTargetOnlyRead() 102 SmallVector<MemoryEffects::EffectInstance, 2> effects; in RemoveCopyIfTargetOnlyRead() local 103 effect_interface.getEffects<MemoryEffects::Write>(effects); in RemoveCopyIfTargetOnlyRead() 104 for (auto effect : effects) { in RemoveCopyIfTargetOnlyRead()
|
/external/crosvm/devices/src/virtio/snd/ |
D | parameters.rs | 88 pub effects: Option<Vec<StreamEffect>>, field 266 effects: Some(vec![StreamEffect::EchoCancellation]), in parameters_fromstr() 284 effects: Some(vec![StreamEffect::EchoCancellation]), in parameters_fromstr() 365 effects: None, in cras_parameters_fromstr() 370 effects: None, in cras_parameters_fromstr() 386 effects: None, in cras_parameters_fromstr() 391 effects: Some(vec![StreamEffect::EchoCancellation]), in cras_parameters_fromstr() 396 effects: Some(vec![StreamEffect::EchoCancellation]), in cras_parameters_fromstr() 414 effects: Some(vec![StreamEffect::EchoCancellation]), in get_device_params_output() 418 effects: Some(vec![ in get_device_params_output() [all …]
|
/external/skia/src/core/ |
D | SkScalerContext.cpp | 46 const SkScalerContextEffects& effects, in PreprocessRec() argument 54 if (effects.fMaskFilter) { in PreprocessRec() 77 SkScalerContext::SkScalerContext(sk_sp<SkTypeface> typeface, const SkScalerContextEffects& effects, in SkScalerContext() argument 79 : fRec(PreprocessRec(*typeface, effects, *desc)) in SkScalerContext() 81 , fPathEffect(sk_ref_sp(effects.fPathEffect)) in SkScalerContext() 82 , fMaskFilter(sk_ref_sp(effects.fMaskFilter)) in SkScalerContext() 1016 SkScalerContextEffects* effects) { in MakeRecAndEffects() argument 1167 new (effects) SkScalerContextEffects{paint}; in MakeRecAndEffects() 1173 SkScalerContextEffects* effects) in CreateDescriptorAndEffectsUsingPaint() argument 1176 MakeRecAndEffects(font, paint, surfaceProps, scalerContextFlags, deviceMatrix, &rec, effects); in CreateDescriptorAndEffectsUsingPaint() [all …]
|
D | SkScalerContext.h | 313 SkScalerContextEffects* effects); 318 SkScalerContextEffects* effects) { in MakeRecAndEffectsFromFont() argument 322 SkScalerContextFlags::kNone, SkMatrix::I(), rec, effects); in MakeRecAndEffectsFromFont() 326 sk_sp<SkTypeface> typeface, const SkScalerContextEffects& effects, 331 const SkScalerContextEffects& effects, 336 const SkScalerContextEffects& effects); 340 const SkScalerContextEffects& effects, 361 SkScalerContextEffects* effects);
|
D | SkPaint.cpp | 219 uintptr_t effects = 0; in computeFastBounds() local 220 effects |= reinterpret_cast<uintptr_t>(this->getMaskFilter()); in computeFastBounds() 221 effects |= reinterpret_cast<uintptr_t>(this->getPathEffect()); in computeFastBounds() 222 effects |= reinterpret_cast<uintptr_t>(this->getImageFilter()); in computeFastBounds() 223 if (!effects) { in computeFastBounds()
|
D | SkStrikeSpec.cpp | 206 SkScalerContextEffects effects; in SkStrikeSpec() local 210 &fAutoDescriptor, &effects); in SkStrikeSpec() 212 fMaskFilter = sk_ref_sp(effects.fMaskFilter); in SkStrikeSpec() 213 fPathEffect = sk_ref_sp(effects.fPathEffect); in SkStrikeSpec() 223 SkScalerContextEffects effects{fPathEffect.get(), fMaskFilter.get()}; in findOrCreateStrike() local 228 SkScalerContextEffects effects{fPathEffect.get(), fMaskFilter.get()}; in findOrCreateStrike() local
|
D | SkTypeface_remote.h | 26 const SkScalerContextEffects& effects, 99 const SkScalerContextEffects& effects, const SkDescriptor* desc) const override in onCreateScalerContext() argument 102 sk_ref_sp(const_cast<SkTypefaceProxy*>(this)), effects, desc, fDiscardableManager); in onCreateScalerContext()
|
/external/crosvm/devices/src/virtio/snd/common_backend/ |
D | stream_info.rs | 50 effects: Vec<StreamEffect>, field 60 effects: vec![], in new() 66 pub fn effects(mut self, effects: Vec<StreamEffect>) -> Self { in effects() method 67 self.effects = effects; in effects() 91 effects: Vec<StreamEffect>, field 114 .field("effects", &self.effects) in fmt() 152 effects: builder.effects, in from() 278 &self.effects[..], in prepare() 698 .effects(vec![StreamEffect::EchoCancellation]); in test_stream_info_builder() 701 assert_eq!(stream.effects, vec![StreamEffect::EchoCancellation]); in test_stream_info_builder()
|
/external/walt/hardware/kicad/ |
D | WALTsm.kicad_pcb | 211 (effects (font (size 1 1) (thickness 0.15))) 214 (effects (font (size 0.508 0.508) (thickness 0.0762))) 240 (effects (font (size 1 1) (thickness 0.15))) 243 (effects (font (size 0.5 0.5) (thickness 0.07))) 269 (effects (font (size 1 1) (thickness 0.15))) 272 (effects (font (size 0.5 0.5) (thickness 0.07))) 298 (effects (font (size 1 1) (thickness 0.15))) 301 (effects (font (size 0.5 0.5) (thickness 0.07))) 327 (effects (font (size 1 1) (thickness 0.15))) 330 (effects (font (size 0.5 0.5) (thickness 0.07))) [all …]
|
/external/skia/src/effects/ |
D | BUILD.bazel | 35 name = "effects", 43 "//src/effects/imagefilters:srcs", 52 "//src/effects/imagefilters:private_hdrs",
|
/external/walt/hardware/kicad/walt_footprints.pretty/ |
D | LED-5MM.kicad_mod | 5 (effects (font (size 1 1) (thickness 0.15))) 8 (effects (font (size 1 1) (thickness 0.15))) 16 (effects (font (size 1 1) (thickness 0.15)))
|
D | BPW34_DIP2.kicad_mod | 5 (effects (font (size 1 1) (thickness 0.15))) 8 (effects (font (size 1 1) (thickness 0.15))) 19 (effects (font (size 1 1) (thickness 0.15)))
|
D | SJ-43514-SMT-TR.kicad_mod | 3 (effects (font (size 1 1) (thickness 0.15))) 6 (effects (font (size 1 1) (thickness 0.15))) 9 (effects (font (size 1 1) (thickness 0.15)))
|
/external/tensorflow/tensorflow/core/ir/ |
D | interfaces.cc | 49 &effects) const { in getEffects() 56 effects.emplace_back(MemoryEffects::Write::get()); in getEffects()
|
/external/python/cpython3/Doc/tutorial/ |
D | modules.rst | 127 It can also be used when utilising :keyword:`from` with similar effects:: 243 change the effects of optimization. 417 effects/ Subpackage for sound effects 443 import sound.effects.echo 445 This loads the submodule :mod:`sound.effects.echo`. It must be referenced with 448 sound.effects.echo.echofilter(input, output, delay=0.7, atten=4) 452 from sound.effects import echo 461 from sound.effects.echo import echofilter 488 Now what happens when the user writes ``from sound.effects import *``? Ideally, 491 long time and importing sub-modules might have unwanted side-effects that should [all …]
|