Home
last modified time | relevance | path

Searched refs:barRange (Results 1 – 14 of 14) sorted by relevance

/dports/audio/rosegarden/rosegarden-21.06.1/src/base/
H A DRulerScale.cpp61 std::pair<timeT, timeT> barRange = m_composition->getBarRange(n); in getBeatWidth() local
62 timeT barDuration = barRange.second - barRange.first; in getBeatWidth()
102 std::pair<timeT, timeT> barRange = m_composition->getBarRange(n); in getTimeForX() local
106 return barRange.first; in getTimeForX()
110 timeT barDuration = barRange.second - barRange.first; in getTimeForX()
113 return barRange.first + (timeT)nearbyint(((double)(x * barDuration) / barWidth)); in getTimeForX()
123 std::pair<timeT, timeT> barRange = m_composition->getBarRange(n); in getXForTime() local
124 timeT barDuration = barRange.second - barRange.first; in getXForTime()
132 time -= barRange.first; in getXForTime()
H A DSnapGrid.cpp71 std::pair<timeT, timeT> barRange = composition->getBarRange(barNo); in getSnapTime() local
73 timeT snapTime = barRange.second - barRange.first; in getSnapTime()
99 std::pair<timeT, timeT> barRange = composition->getBarRange(barNo); in snapTime() local
101 timeT snapTime = barRange.second - barRange.first; in snapTime()
111 timeT offset = (time - barRange.first); in snapTime()
114 timeT left = rounded + barRange.first; in snapTime()
H A DSegmentNotationHelper.cpp1584 std::pair<timeT, timeT> barRange = comp->getBarRange(barNo); in autoBeam() local
1585 iterator barStart = segment().findTime(barRange.first); in autoBeam()
1586 iterator barEnd = segment().findTime(barRange.second); in autoBeam()
1592 (*barStart)->getNotationAbsoluteTime() < barRange.first) ++barStart; in autoBeam()
1598 if ((*scooter)->getNotationAbsoluteTime() < barRange.first) break; in autoBeam()
1604 (*barEnd)->getNotationAbsoluteTime() < barRange.second) ++barEnd; in autoBeam()
1610 if ((*scooter)->getNotationAbsoluteTime() < barRange.second) break; in autoBeam()
1616 segment().getComposition()->getTimeSignatureAt(barRange.first); in autoBeam()
/dports/audio/rosegarden/rosegarden-21.06.1/src/commands/edit/
H A DSetLyricsCommand.cpp104 std::pair<timeT, timeT> barRange = comp->getBarRange(barNo++); in execute() local
114 i = m_segment->findTime(barRange.first); in execute()
115 timeT laterThan = barRange.first - 1; in execute()
127 (isLastBSI || (*i)->getAbsoluteTime() < barRange.second) && in execute()
/dports/audio/rosegarden/rosegarden-21.06.1/src/commands/matrix/
H A DMatrixPercussionInsertionCommand.cpp195 std::pair<timeT, timeT> barRange = comp->getBarRangeForTime(time); in getEndTime() local
196 const timeT barDuration = barRange.second - barRange.first; in getEndTime()
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/seqmanager/
H A DSequenceManager.cpp301 std::pair<timeT, timeT> barRange = in rewind() local
314 timeT halfway = barRange.first + in rewind()
315 (barRange.second - barRange.first) / 2; in rewind()
320 barRange = composition.getBarRangeForTime(barRange.first - 1); in rewind()
327 if (barRange.first < composition.getStartMarker()) { in rewind()
330 m_doc->slotSetPointerPosition(barRange.first); in rewind()
/dports/converters/wkhtmltopdf/qt-5db36ec/demos/spectrum/app/
H A Dspectrograph.h77 QPair<qreal, qreal> barRange(int barIndex) const; in QT_FORWARD_DECLARE_CLASS()
H A Dspectrograph.cpp203 QPair<qreal, qreal> Spectrograph::barRange(int index) const in barRange() function in Spectrograph
227 const QPair<qreal, qreal> frequencyRange = barRange(index); in selectBar()
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qtmultimedia/examples/multimedia/spectrum/app/
H A Dspectrograph.h88 QPair<qreal, qreal> barRange(int barIndex) const;
H A Dspectrograph.cpp213 QPair<qreal, qreal> Spectrograph::barRange(int index) const in barRange() function in Spectrograph
237 const QPair<qreal, qreal> frequencyRange = barRange(index); in selectBar()
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/lib/install/data/
H A Ddata_test.go71 barRange := ip.Range{
75 assert.False(t, equalIPRanges([]ip.Range{fooRange}, []ip.Range{barRange}))
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/editors/notation/
H A DNotationGroup.h53 std::pair<timeT, timeT> barRange,
H A DNotationGroup.cpp42 std::pair<timeT, timeT> barRange, in NotationGroup() argument
46 m_barRange(barRange), in NotationGroup()
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/meshlabplugins/edit_quality/
H A Dqualitymapperdialog.cpp477 float barRange = (maxX-minX)/(float)NUMBER_OF_HISTOGRAM_BARS; in computeEqualizerMaxY() local
482 currentY = h->BinCount( minX+i*barRange, barRange ); in computeEqualizerMaxY()
504 float barRange = (maxVal-minVal)/(float)NUMBER_OF_HISTOGRAM_BARS; in drawHistogramBars() local
508 …hartInfo->chartHeight() * _equalizer_histogram->BinCount( minVal+i*barRange, barRange) ) / (float)… in drawHistogramBars()