Home
last modified time | relevance | path

Searched refs:graceIndex (Results 1 – 9 of 9) sorted by relevance

/dports/audio/musescore/MuseScore-3.6.1/libmscore/
H A Dlocation.h43 static int graceIndex(const Element* e);
47 …constexpr Location(int staff, int voice, int measure, Fraction frac, int graceIndex, int note, boo… in Location() argument
48 …: _staff(staff), _voice(voice), _measure(measure), _frac(frac), _graceIndex(graceIndex), _note(not… in Location()
72 int graceIndex() const { return _graceIndex; } in graceIndex() function
H A Dlocation.cpp162 setGraceIndex(graceIndex(e)); in fillForElement()
223 int Location::graceIndex(const Element* e) in graceIndex() function in Ms::Location
228 return ch->graceIndex(); in graceIndex()
230 return absDefaults.graceIndex(); in graceIndex()
270 return graceIndex(start) - graceIndex(end); in getLocationProperty()
H A Dchordrest.cpp1373 int oGraceIndex = oGrace ? toChord(o)->graceIndex() + 1 : 0; in isBefore()
1374 int graceIndex = grace ? toChord(this)->graceIndex() + 1 : 0; in isBefore() local
1378 graceIndex = toChord(parent())->graceNotes().size() - graceIndex; in isBefore()
1380 t = t + (graceAfter ? 1 : -1) * graceIndex; in isBefore()
H A Dconnector.cpp126 …track() - l1.track()) + 10 * qAbs(l2.note() - l1.note()) + qAbs(l2.graceIndex() - l1.graceIndex()); in distance()
H A Dchord.h154 int graceIndex() const { return _graceIndex; } in graceIndex() function
H A Dutils.cpp789 int index = note->chord()->graceIndex(); in searchTieNote()
791 if (c->graceIndex() == index + 1) { in searchTieNote()
H A Drange.cpp703 int idx = sc->graceIndex(); in write()
711 int idx = sc->graceIndex(); in write()
H A Dchord.cpp572 int idx = gc->graceIndex(); in add()
/dports/audio/musescore/MuseScore-3.6.1/importexport/musicxml/
H A Dexportxml.cpp693 if ((c1->isGraceBefore() && c1->graceIndex() < c2->graceIndex()) in findFirstChordRest()
694 || (c1->isGraceAfter() && c1->graceIndex() > c2->graceIndex())) in findFirstChordRest()