Home
last modified time | relevance | path

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

/dports/editors/calligra/calligra-3.2.1/plugins/musicshape/
H A DRenderer.cpp346 Chord* nextChord = 0; in renderChord() local
409 if (!nextChord) { in renderChord()
414 nextChord = dynamic_cast<Chord*>(vb->element(e)); in renderChord()
415 if (nextChord) break; in renderChord()
422 if (!nextChord) { in renderChord()
428 nextChord = dynamic_cast<Chord*>(nextVB->element(e)); in renderChord()
429 if (nextChord) break; in renderChord()
436 if (nextChord) { in renderChord()
438 … QPointF endPos = nextChord->voiceBar()->bar()->position() + QPointF(nextChord->x() - 1, ypos); in renderChord()
439 if (bar->position().y() < nextChord->voiceBar()->bar()->position().y() - 1e-6) { in renderChord()
/dports/audio/musescore/MuseScore-3.6.1/importexport/midiimport/
H A Dimportmidi_quant.cpp1300 auto nextChord = std::next(chordIt); in quantizeOnTimes() local
1301 while (nextChord != chords.end() && nextChord->second.voice != voice) in quantizeOnTimes()
1302 ++nextChord; in quantizeOnTimes()
1303 if (nextChord == chords.end() in quantizeOnTimes()
1304 || nextChord->second.barIndex != currentBarIndex in quantizeOnTimes()
1305 || nextChord->second.isInTuplet != currentlyInTuplet in quantizeOnTimes()
1306 || (nextChord->second.isInTuplet && currentlyInTuplet in quantizeOnTimes()
1307 && nextChord->second.tuplet != chordIt->second.tuplet)) { in quantizeOnTimes()
1310 if (nextChord != chords.end()) { in quantizeOnTimes()
1311 if (nextChord->second.barIndex != currentBarIndex) { in quantizeOnTimes()
[all …]
/dports/audio/musescore/MuseScore-3.6.1/mscore/
H A Dseq.h241 void nextChord();
H A Dseq.cpp1396 void Seq::nextChord() in nextChord() function in Ms::Seq
H A Dmusescore.cpp6224 seq->nextChord(); in cmd()