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

1 2 3 4 5

  /frameworks/base/media/mca/effect/java/android/media/effect/
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...]
  /frameworks/av/media/libeffects/config/include/media/
EffectsConfig.h 35 /** Default path of effect configuration file. Relative to DEFAULT_LOCATIONS. */
38 /** Default path of effect configuration file.
43 /** Directories where the effect libraries will be search for. */
62 struct Effect : public EffectImpl {
69 using Effects = std::vector<Effect>;
74 std::vector<std::reference_wrapper<Effect>> effects;
98 size_t nbSkippedElement; //< Number of skipped invalid library, effect or processing chain
102 /** Parses the provided effect configuration.
  /external/skia/tests/
RefCntTest.cpp 89 class Effect {
91 Effect() : fRefCnt(1) {
94 virtual ~Effect() {}
115 static sk_sp<Effect> Create() {
116 return sk_make_sp<Effect>();
121 sk_sp<Effect> fEffect;
123 const sk_sp<Effect>& get() const { return fEffect; }
125 void set(sk_sp<Effect> value) {
130 struct EffectImpl : public Effect {
138 static sk_sp<Effect> make_effect()
    [all...]
  /external/skqp/tests/
RefCntTest.cpp 89 class Effect {
91 Effect() : fRefCnt(1) {
94 virtual ~Effect() {}
115 static sk_sp<Effect> Create() {
116 return sk_make_sp<Effect>();
121 sk_sp<Effect> fEffect;
123 const sk_sp<Effect>& get() const { return fEffect; }
125 void set(sk_sp<Effect> value) {
130 struct EffectImpl : public Effect {
138 static sk_sp<Effect> make_effect()
    [all...]
  /hardware/interfaces/audio/effect/all-versions/default/include/effect/all-versions/default/
Effect.h 36 namespace effect { namespace in namespace:android::hardware::audio
45 using ::android::hardware::audio::effect::AUDIO_HAL_VERSION::AudioBuffer;
46 using ::android::hardware::audio::effect::AUDIO_HAL_VERSION::EffectAuxChannelsConfig;
47 using ::android::hardware::audio::effect::AUDIO_HAL_VERSION::EffectConfig;
48 using ::android::hardware::audio::effect::AUDIO_HAL_VERSION::EffectDescriptor;
49 using ::android::hardware::audio::effect::AUDIO_HAL_VERSION::EffectFeature;
50 using ::android::hardware::audio::effect::AUDIO_HAL_VERSION::EffectOffloadParameter;
51 using ::android::hardware::audio::effect::AUDIO_HAL_VERSION::IEffect;
52 using ::android::hardware::audio::effect::AUDIO_HAL_VERSION::IEffectBufferProviderCallback;
53 using ::android::hardware::audio::effect::AUDIO_HAL_VERSION::Result
    [all...]
Effect.impl.h 32 namespace effect { namespace in namespace:android::hardware::audio
39 using ::android::hardware::audio::effect::AUDIO_HAL_VERSION::MessageQueueFlagBits;
45 // ProcessThread's lifespan never exceeds Effect's lifespan.
46 ProcessThread(std::atomic<bool>* stop, effect_handle_t effect,
48 Effect::StatusMQ* statusMQ, EventFlag* efGroup)
51 mEffect(effect),
65 Effect::StatusMQ* mStatusMQ;
132 const char* Effect::sContextResultOfCommand = "returned status";
133 const char* Effect::sContextCallToCommand = "error";
134 const char* Effect::sContextCallFunction = sContextCallToCommand
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
GlobalsModRef.cpp 57 unsigned Effect = MayReadAnyGlobal ? AliasAnalysis::Ref : 0;
61 Effect |= I->second;
62 return Effect;
422 // Propagate function effect up.
478 // Finally, now that we know the full effect on this SCC, clone the
  /external/v8/src/compiler/
wasm-compiler.h 134 // Operations independent of {control} or {effect}.
140 Node* Terminate(Node* effect, Node* control);
164 void StackCheck(wasm::WasmCodePosition position, Node** effect = nullptr,
168 // Operations that read and/or write {control} and {effect}.
217 Node* Effect() { return *effect_; }
221 void set_effect_ptr(Node** effect) { this->effect_ = effect; }
  /external/v8/src/
effects.h 17 // An effect can either be definite, if the write is known to have taken place,
23 // effect cancels out any previous effect upon sequencing. A possible effect
24 // merges into a previous effect, i.e., type bounds are merged. Alternative
25 // composition always merges bounds. It yields a possible effect if at least
27 struct Effect {
33 Effect() : modality(DEFINITE) {}
34 explicit Effect(AstBounds b, Modality m = DEFINITE)
37 // The unknown effect
88 Effect effect = Lookup(var); local
    [all...]
  /external/swiftshader/third_party/subzero/src/
WasmTranslator.cpp 306 void Terminate(Node Effect, Node Control) {
308 LOG(out << "Terminate(" << Effect << ", " << Control << ")"
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTPFXParser.cpp 102 // free effect file
542 "[EFFECT]", // eCmds_Effect
664 if(GetEndTag("EFFECT", nLine, &nEndLine))
666 SPVRTPFXParserEffect Effect;
667 if(ParseEffect(Effect, nLine, nEndLine, pReturnError))
668 m_psEffect.Append(Effect);
674 *pReturnError = PVRTStringFromFormattedStr("Missing [/EFFECT] tag after [EFFECT] on line %d\n", m_psContext->pnFileLineNumber[nLine]);
688 *pReturnError = CPVRTString("No [EFFECT] found. PFX file must have at least one defined.\n");
903 // Find the specified effect
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 395 /// this is the effect applied to the state of the receiver.
398 /// Ret - The effect on the return value. Used to indicate if the
407 /// getArg - Return the argument effect on the argument specified by
420 /// setDefaultArgEffect - Set the default argument effect.
425 /// getRetEffect - Returns the effect on the return value of the call.
428 /// setRetEffect - Set the effect of the return value of the call.
432 /// Sets the effect on the receiver of the message.
435 /// getReceiverEffect - Returns the effect on the receiver of the call.
441 /// argument effect matches the default effect)
    [all...]
  /developers/build/lib/
assetstudio.jar 
  /prebuilts/devtools/tools/lib/
asset-studio.jar 
sdk-common.jar 
  /external/kotlinc/lib/
kotlin-runtime.jar 
kotlin-stdlib.jar 
kotlin-reflect.jar 
  /prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/
kotlin-stdlib-1.2.20.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.2.0/
kotlin-stdlib-1.2.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.2.20/
kotlin-stdlib-1.2.20.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-reflect/1.2.0/
kotlin-reflect-1.2.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-reflect/1.2.20/
kotlin-reflect-1.2.20.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/24.4.0-alpha1/
sdk-common-24.4.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/24.4.0-beta3/
sdk-common-24.4.0-beta3.jar 

Completed in 275 milliseconds

1 2 3 4 5