Home
last modified time | relevance | path

Searched refs:result_is_hidden (Results 1 – 2 of 2) sorted by relevance

/dports/audio/ardour6/Ardour-6.8.0/libs/ardour/ardour/
H A Dplaylist.h185 boost::shared_ptr<Playlist> cut (std::list<AudioRange>&, bool result_is_hidden = true);
186 boost::shared_ptr<Playlist> copy (std::list<AudioRange>&, bool result_is_hidden = true);
426 std::list<AudioRange>& ranges, bool result_is_hidden);
427 boost::shared_ptr<Playlist> cut (samplepos_t start, samplecnt_t cnt, bool result_is_hidden);
428 boost::shared_ptr<Playlist> copy (samplepos_t start, samplecnt_t cnt, bool result_is_hidden);
/dports/audio/ardour6/Ardour-6.8.0/libs/ardour/
H A Dplaylist.cc1212 …(Playlist::*pmf) (samplepos_t, samplecnt_t, bool), list<AudioRange>& ranges, bool result_is_hidden) in cut_copy() argument
1225 pl = (this->*pmf) ((*i).start, (*i).length (), result_is_hidden); in cut_copy()
1243 Playlist::cut (list<AudioRange>& ranges, bool result_is_hidden) in cut() argument
1246 return cut_copy (pmf, ranges, result_is_hidden); in cut()
1250 Playlist::copy (list<AudioRange>& ranges, bool result_is_hidden) in copy() argument
1253 return cut_copy (pmf, ranges, result_is_hidden); in copy()
1257 Playlist::cut (samplepos_t start, samplecnt_t cnt, bool result_is_hidden) in cut() argument
1267 …py = PlaylistFactory::create (shared_from_this (), start, cnt, new_name, result_is_hidden)) == 0) { in cut()
1280 Playlist::copy (samplepos_t start, samplecnt_t cnt, bool result_is_hidden) in copy() argument
1291 return PlaylistFactory::create (shared_from_this (), start, cnt, new_name, result_is_hidden); in copy()