Searched defs:note (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DVoiceStatus.java58 * If the voice is not currently processing a MIDI note, it
60 * been given no note-on commands, or when every note-on command received has
61 * been terminated by a corresponding note-off (or by an "all notes off"
63 * simultaneous notes is told to play a four-note chord; only
67 * is, the synthesis algorithm) and how long the note has been going on.
69 * this sound dies away so quickly, it may become inaudible before a note-off
75 * program number, MIDI note number, and MIDI volume. All of these can
91 * Indicates whether the voice is currently processing a MIDI note.
136 * The MIDI note tha
143 public int note = 0; field in class:VoiceStatus
[all...]
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftChannel/
H A DSoftTestUtils.java101 public VoiceStatus findVoice(int channel, int note) { argument
106 if(v[k].note == note)
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftReceiver/
H A DSoftTestUtils.java101 public VoiceStatus findVoice(int channel, int note) { argument
106 if(v[k].note == note)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DAbstractLog.java207 public void note(String key, Object ... args) { method in class:AbstractLog
208 report(diags.note(source, null, key, args));
215 public void note(DiagnosticPosition pos, String key, Object ... args) { method in class:AbstractLog
216 report(diags.note(source, pos, key, args));
223 public void note(int pos, String key, Object ... args) { method in class:AbstractLog
224 report(diags.note(source, wrap(pos), key, args));
231 public void note(JavaFileObject file, String key, Object ... args) { method in class:AbstractLog
232 report(diags.note(getSource(file), null, key, args));
H A DJCDiagnostic.java164 * Create a note diagnostic that will not be hidden by the -nowarn or -Xlint:none options.
174 * Create a note diagnostic.
178 public JCDiagnostic note(String key, Object... args) { method in class:JCDiagnostic.Factory
183 * Create a note diagnostic.
184 * @param source The source of the compilation unit, if any, in which to report the note.
185 * @param pos The source position at which to report the note.
189 public JCDiagnostic note( method in class:JCDiagnostic.Factory
272 /** A note: similar to, but less serious than, a warning. */
273 NOTE("note"),
/openjdk7/langtools/test/tools/javac/processing/model/element/
H A DTestTypeParameter.java46 note("generic elements found and verified: " + found);
79 note("checking " + e, e);
81 note("no type parameters found", e);
85 note("checking type parameter " + tpe, tpe);
99 note("verified " + e, e);
103 void note(String msg) { method in class:TestTypeParameter
107 void note(String msg, Element e) { method in class:TestTypeParameter
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DExceptionBean.java85 public String note = "To disable this feature, set "+SOAPFaultBuilder.CAPTURE_STACK_TRACE_PROPERTY+" system property to false"; field in class:ExceptionBean
/openjdk7/hotspot/agent/src/os/linux/
H A Dsymtab.c299 // Read a build ID note. Try to open any associated debuginfo file
301 static struct symtab* build_symtab_from_build_id(Elf64_Nhdr *note) argument
307 = (unsigned char*)(note+1) + note->n_namesz;
309 = (build_id_to_debug_filename (note->n_descsz, bytes));
453 Elf64_Nhdr *note = (Elf64_Nhdr *)scn_cache[cnt].c_data; local
454 if (note->n_type == NT_GNU_BUILD_ID) {
455 symtab = build_symtab_from_build_id(note);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DProgressMonitor.java89 private String note; field in class:ProgressMonitor
110 * @param note a short note describing the state of the
112 * setNote to change the note displayed. This is used,
115 * If note is initially null, there will be no note line
124 String note,
127 this(parentComponent, message, note, min, max, null);
133 String note,
145 this.note
122 ProgressMonitor(Component parentComponent, Object message, String note, int min, int max) argument
131 ProgressMonitor(Component parentComponent, Object message, String note, int min, int max, ProgressMonitor group) argument
436 setNote(String note) argument
[all...]

Completed in 57 milliseconds