Home
last modified time | relevance | path

Searched refs:sc_synth_definition_ptr (Results 1 – 5 of 5) sorted by relevance

/dports/audio/supercollider/SuperCollider-3.11.0-Source/server/supernova/sc/
H A Dsc_synth_definition.hpp46 typedef boost::intrusive_ptr<sc_synth_definition> sc_synth_definition_ptr; typedef
H A Dsc_synth_definition.cpp37 sc_synth_definition_ptr sp = new sc_synth_definition(std::move(def));
H A Dsc_synth.hpp42 sc_synth(int node_id, sc_synth_definition_ptr const& prototype);
H A Dsc_osc_handler.cpp2763 static std::vector<sc_synth_definition_ptr> wrapSynthdefs(std::vector<sc_synthdef>&& synthdefs) { in wrapSynthdefs()
2764 std::vector<sc_synth_definition_ptr> wrappedSynthdefs; in wrapSynthdefs()
2768 sc_synth_definition_ptr ptr(new sc_synth_definition(std::move(synthdef))); in wrapSynthdefs()
2787 std::vector<sc_synth_definition_ptr> wrappedSynthdefs = in handle_d_recv()
2792 for (sc_synth_definition_ptr& definition : wrappedSynthdefs) in handle_d_recv()
2817 std::vector<sc_synth_definition_ptr> wrappedSynthdefs = in handle_d_load()
2823 for (sc_synth_definition_ptr& definition : wrappedSynthdefs) in handle_d_load()
2848 std::vector<sc_synth_definition_ptr> wrappedSynthdefs = in handle_d_loadDir()
2854 for (sc_synth_definition_ptr& definition : wrappedSynthdefs) in handle_d_loadDir()
H A Dsc_synth.cpp29 sc_synth::sc_synth(int node_id, sc_synth_definition_ptr const& prototype): abstract_synth(node_id, … in sc_synth()