Home
last modified time | relevance | path

Searched refs:_notes (Results 1 – 25 of 179) sorted by relevance

12345678

/dports/audio/ardour6/Ardour-6.8.0/gtk2_ardour/
H A Dpianokeyboard.cc71 int x = _notes[note].x; in annotate_layout()
72 int w = _notes[note].w; in annotate_layout()
73 int h = _notes[note].h; in annotate_layout()
109 int x = _notes[note].x; in annotate_note()
110 int w = _notes[note].w; in annotate_note()
157 if (_notes[note].pressed || _notes[note].sustained) { in draw_note()
207 queue_draw_area (_notes[note].x, 0, _notes[note].w, _notes[note].h); in queue_note_draw()
272 if (_notes[i].pressed && !_notes[i].sustained) { in stop_unsustained_notes()
454 if (x >= _notes[note].x && x <= _notes[note].x + _notes[note].w) { in get_note_for_xy()
465 if (x >= _notes[note].x && x <= _notes[note].x + _notes[note].w) { in get_note_for_xy()
[all …]
H A Ditem_counts.h37 ItemCounts() : _notes(0) {} in ItemCounts()
42 size_t n_notes() const { return _notes; } in n_notes()
56 void increase_n_notes(size_t delta=1) { _notes += delta; }
80 size_t _notes; variable
/dports/irc/py-limnoria/Limnoria-master-2019-09-08/plugins/Later/
H A Dplugin.py57 self._notes = ircutils.IrcDict()
98 notes = self._notes[nick]
125 del self._notes[nick]
172 if nick in self._notes:
179 nicks = self._notes.keys()
195 del self._notes[nick]
208 if nick not in self._notes:
211 self._notes[nick].reverse()
212 for note in self._notes[nick]:
216 del self._notes[nick]
[all …]
/dports/audio/hydrogen/hydrogen-1.0.1/src/core/include/hydrogen/basics/
H A Dpattern.h210 #define FOREACH_NOTE_CST_IT_BEGIN_END(_notes,_it) \ argument
211 for( Pattern::notes_cst_it_t (_it)=(_notes)->begin(); (_it)!=(_notes)->end(); (_it)++ )
213 #define FOREACH_NOTE_CST_IT_BOUND(_notes,_it,_bound) \ argument
214 …for( Pattern::notes_cst_it_t (_it)=(_notes)->lower_bound((_bound)); (_it)!=(_notes)->upper_bound((…
216 #define FOREACH_NOTE_IT_BEGIN_END(_notes,_it) \ argument
217 for( Pattern::notes_it_t (_it)=(_notes)->begin(); (_it)!=(_notes)->end(); (_it)++ )
219 #define FOREACH_NOTE_IT_BOUND(_notes,_it,_bound) \ argument
220 …for( Pattern::notes_it_t (_it)=(_notes)->lower_bound((_bound)); (_it)!=(_notes)->upper_bound((_bou…
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/sci/sound/drivers/
H A Dpcjr.cpp91 int _notes[kMaxChannels]; // Current halftone, or 0 if off member in Sci::MidiDriver_PCJr
138 if (op1 == _notes[mapped_chan]) in send()
139 _notes[mapped_chan] = 0; in send()
144 if (op1 == _notes[mapped_chan]) in send()
145 _notes[mapped_chan] = 0; in send()
147 _notes[mapped_chan] = op1; in send()
154 _notes[mapped_chan] = 0; in send()
170 freq[chan] = get_freq(_notes[chan]); in generateSamples()
176 if (_notes[chan]) { in generateSamples()
215 _notes[i] = 0; in open()
/dports/games/scummvm/scummvm-2.5.1/engines/sci/sound/drivers/
H A Dpcjr.cpp91 int _notes[kMaxChannels]; // Current halftone, or 0 if off member in Sci::MidiDriver_PCJr
138 if (op1 == _notes[mapped_chan]) in send()
139 _notes[mapped_chan] = 0; in send()
144 if (op1 == _notes[mapped_chan]) in send()
145 _notes[mapped_chan] = 0; in send()
147 _notes[mapped_chan] = op1; in send()
154 _notes[mapped_chan] = 0; in send()
170 freq[chan] = get_freq(_notes[chan]); in generateSamples()
176 if (_notes[chan]) { in generateSamples()
215 _notes[i] = 0; in open()
/dports/mail/p5-qpsmtpd/qpsmtpd-0.93/lib/Qpsmtpd/
H A DConnection.pm45 $new->{_notes} = $self->{_notes} if defined $self->{_notes};
114 return $self->{_notes}->{$key} unless @_;
115 return $self->{_notes}->{$key} = shift;
120 $self->{_notes} = undef;
/dports/www/py-protego/Protego-0.1.16/tests/test_data/
H A Dwww.maine.edu3 Disallow: /_notes/
8 Disallow: */_notes/
22 Disallow: /_notes/
27 Disallow: */_notes/
41 Disallow: /_notes/
46 Disallow: */_notes/
H A Dwww.ietf.org3 Disallow: /_notes/
10 Disallow: /_notes/
H A Dwww.mredllc.com6 Disallow: /_notes/
16 Disallow: /_notes/
/dports/audio/py-music21/music21-7.1.0/music21/chord/
H A D__init__.py175 for d in new._notes:
184 return iter(self._notes)
194 return len(self._notes)
245 for n in self._notes:
1527 for n in self._notes:
1531 for n in self._notes:
1567 for d in self._notes:
1570 for d in self._notes:
2993 if not self._notes:
4688 self._notes.clear()
[all …]
/dports/www/p5-Gungho/Gungho-0.09008/lib/Gungho/
H A DResponse.pm16 $self->{_notes} = {};
36 return $self->{_notes} unless $key;
38 my $value = $self->{_notes}{$key};
40 $self->{_notes}{$key} = $_[0];
H A DRequest.pm36 $self->{_notes} = {};
76 return $self->{_notes} unless $key;
78 my $value = $self->{_notes}{$key};
80 $self->{_notes}{$key} = $_[0];
/dports/audio/musescore/MuseScore-3.6.1/libmscore/
H A Dchord.cpp71 Q_ASSERT(!_notes.empty()); in upNote()
108 Q_ASSERT(!_notes.empty()); in downNote()
179 size_t n = _notes.size(); in upString()
200 size_t n = _notes.size(); in downString()
313 for (Note* n : _notes) in undoUnlink()
359 qDeleteAll(_notes); in ~Chord()
530 _notes.insert(_notes.begin()+idx+1, note); in add()
532 _notes.insert(_notes.begin()+idx, note); in add()
612 auto i = std::find(_notes.begin(), _notes.end(), note); in remove()
1026 for (Note* n : _notes) in write()
[all …]
H A Drealizedharmony.h68 PitchMap _notes; variable
79 RealizedHarmony() : _harmony(0), _notes(PitchMap()), _dirty(1) {} in RealizedHarmony()
80 RealizedHarmony(Harmony* h) : _harmony(h), _notes(PitchMap()), _dirty(1) {} in RealizedHarmony()
/dports/audio/ardour6/Ardour-6.8.0/libs/evoral/
H A DSequence.cc504 _notes.insert (n); in Sequence()
621 _notes.clear(); in clear()
663 for (typename Notes::iterator n = _notes.begin(); n != _notes.end() ;) { in end_write()
673 _notes.erase(n); in end_write()
679 _notes.erase (n); in end_write()
722 _notes.insert (note); in add_note_unlocked()
753 _notes.erase (i); in remove_note_unlocked()
788 for (i = _notes.begin(); i != _notes.end(); ++i) { in remove_note_unlocked()
793 _notes.erase (i); in remove_note_unlocked()
915 assert(_notes.empty() || ev.time() >= (*_notes.rbegin())->time()); in append()
[all …]
/dports/print/py-frescobaldi/frescobaldi-3.1.3/frescobaldi_app/midiinput/
H A Delements.py39 self._notes = list()
42 self._notes.append(note)
45 if len(self._notes) == 1: # only one note, no chord
46 return self._notes[0].output(relativemode, language)
48 sortednotes = sorted(self._notes, key=lambda note: note.midinote())
/dports/science/opensim-core/opensim-core-4.1/OpenSim/Tools/
H A DScaleTool.cpp49 _notes(_notesProp.getValueStr()), in ScaleTool()
70 _notes(_notesProp.getValueStr()), in ScaleTool()
105 _notes(_notesProp.getValueStr()), in ScaleTool()
132 _notes = aSubject._notes; in copyData()
/dports/audio/zita-at1/zita-at1-0.6.2/source/
H A Djclient.cc112 for (i = 0; i < 12; i++) _notes [i] = 0; in clr_midimask()
136 if (v && (t & 0x10))_notes [n % 12] += 1; in midi_process()
137 else _notes [n % 12] -= 1; in midi_process()
147 if (_notes [i]) _midimask |= b; in midi_process()
/dports/games/anki/anki-2.1.16/anki/importing/
H A Danki2.py71 self._notes = {}
75 self._notes[guid] = (id, mod, mid)
109 self._notes[note[GUID]] = (note[0], note[3], note[MID])
113 oldNid, oldMod, oldMid = self._notes[note[GUID]]
186 return origGuid not in self._notes
189 if origGuid not in self._notes:
316 if guid not in self._notes:
318 dnid = self._notes[guid]
332 card[1] = self._notes[guid][0]
/dports/net-im/gajim/gajim-gajim-1.3.3/gajim/gtk/
H A Dadhoc.py241 self._notes = []
280 for note in self._notes:
282 self._notes = []
290 self._notes.append(label)
314 self._notes = []
362 for note in self._notes:
364 self._notes = []
370 self._notes.append(label)
/dports/audio/muse-sequencer/muse-4.0.0/src/muse/
H A Devent_tag_list.cpp40 if(_notes == 0 || (e.pos() < _noteRange)) in add()
42 if(_notes == 0 || (e.end() > _noteRange.end())) in add()
45 ++_notes; in add()
97 if(_notes > 0) in evrange()
/dports/security/pwman3/Pwman3-0.0.6/pwman/data/
H A Dnodes.py31 self._notes = enc.encrypt(notes)
87 return enc.decrypt(self._notes)
92 self._notes = enc.encrypt(notes)
/dports/science/rdkit/rdkit-Release_2021_03_5/rdkit/ML/ModelPackage/
H A DPackager.py27 self._notes = notes
51 self._notes = notes
54 return self._notes
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/core/document_renderers/
H A Drender_document.py151 self._notes = notes
152 self._edit = self._notes
388 if self._notes and line == '## NOTES\n':
389 self._renderer.Write('\n' + self._notes + '\n')
390 self._notes = ''
391 if self._notes:
489 elif self._notes and heading == 'NOTES':
490 self._buf = self._notes
491 self._notes = None
857 if self._notes:
[all …]

12345678