/openjdk7/jdk/src/share/classes/javax/sound/midi/ |
H A D | Patch.java | 35 * location is specified abstractly by a bank index and a program number (not by 38 * each of which contains up to 128 program locations. For example, a 44 * a bank-select command, and a program-change channel command. The Java Sound 71 private final int program; field in class:Patch 75 * Constructs a new patch object from the specified bank and program 78 * @param program the program index (in the range from 0 to 127) 80 public Patch(int bank, int program) { argument 83 this.program = program; [all...] |
H A D | VoiceStatus.java | 75 * program number, MIDI note number, and MIDI volume. All of these can 124 * The program number of the instrument that this voice is currently using. 132 public int program = 0; field in class:VoiceStatus
|
H A D | MidiChannel.java | 257 * Changes a program (patch). This selects a specific 265 * The program number is zero-based (expressed from 0 to 127). 270 * does not support a specific program. In order 274 * @param program the program number to switch to (0 to 127) 279 public void programChange(int program); argument 282 * Changes the program using bank and program (patch) numbers. 285 * does not support a specific bank, or program. In order 298 * @param program th 302 programChange(int bank, int program) argument [all...] |
/openjdk7/jdk/src/share/classes/com/sun/media/sound/ |
H A D | ModelPatch.java | 40 public ModelPatch(int bank, int program) { argument 41 super(bank, program); 44 public ModelPatch(int bank, int program, boolean percussion) { argument 45 super(bank, program);
|
H A D | ModelAbstractChannelMixer.java | 97 public void programChange(int program) { argument 100 public void programChange(int bank, int program) { argument
|
H A D | SoftChannelProxy.java | 143 public void programChange(int program) { argument 146 channel.programChange(program); 149 public void programChange(int bank, int program) { argument 152 channel.programChange(bank, program);
|
H A D | SoftChannel.java | 105 private int program; field in class:SoftChannel 367 voice.program = program; 490 = synthesizer.findInstrument(program, bank, channel); 593 = synthesizer.findInstrument(program, bank, channel); 1252 public void tuningChange(int program) { argument 1253 tuningChange(0, program); 1256 public void tuningChange(int bank, int program) { argument 1258 tuning = synthesizer.getTuning(new Patch(bank, program)); 1262 public void programChange(int program) { argument 1266 programChange(int bank, int program) argument [all...] |
H A D | SoftSynthesizer.java | 392 SoftInstrument findInstrument(int program, int bank, int channel) { argument 400 = inslist.get(program + "." + bank); 411 current_instrument = inslist.get(p_plaf + program + "." 416 current_instrument = inslist.get(p_plaf + program + "." 421 current_instrument = inslist.get(p_plaf + program + ".0"); 424 // Instrument not found fallback to MSB:0, LSB:0, program=0 425 current_instrument = inslist.get(p_plaf + program + "0.0"); 439 = inslist.get(p_plaf + program + "." + bank); 443 current_instrument = inslist.get(p_plaf + program + ".0"); 446 // Instrument not found fallback to MSB:0, LSB:0, program [all...] |
/openjdk7/jdk/src/share/classes/sun/tools/javac/ |
H A D | Main.java | 39 * Main program of the Java compiler 53 * Name of the program. 55 String program; field in class:Main 65 public Main(OutputStream out, String program) { argument 67 this.program = program; 132 error("main.usage", program); 648 // We allow the compiler to take an exception silently if a program 737 * Main program
|
/openjdk7/jdk/test/java/util/zip/ |
H A D | zip.java | 37 String program; field in class:zip 69 public zip(PrintStream out, PrintStream err, String program) { argument 72 this.program = program; 668 error(program + ": " + s);
|
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/ |
H A D | Main.java | 62 * Main "rmic" program. 88 * Name of the program. 90 String program; field in class:Main 100 public Main(OutputStream out, String program) { argument 102 this.program = program; 135 error("rmic.usage", program); 152 program)).compile(argv); 585 // We allow the compiler to take an exception silently if a program 660 program [all...] |
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/ |
H A D | Main.java | 113 /** name of this program, to use in error messages */ 114 private final String program; field in class:Main 126 * stream. The specified program name is used in error messages. 128 public Main(OutputStream out, String program) { argument 131 this.program = program; 205 error("rmic.usage", program); 594 // run javadoc with our program name and output stream 596 program,
|
/openjdk7/jdk/src/solaris/bin/ |
H A D | java_md_common.c | 62 * Return true if the named program exists 94 FindExecName(char *program) argument 103 if (*program == FILE_SEPARATOR || 104 (FILE_SEPARATOR=='\\' && JLI_StrRChr(program, ':'))) 105 return Resolve("", program+1); 108 if (JLI_StrRChr(program, FILE_SEPARATOR) != 0) { 110 return Resolve(getcwd(cwdbuf, sizeof(cwdbuf)), program); 124 result = Resolve(s, program); 130 result = Resolve(dir, program);
|
/openjdk7/jdk/src/share/classes/sun/tools/jar/ |
H A D | Main.java | 48 String program; field in class:Main 125 public Main(PrintStream out, PrintStream err, String program) { argument 128 this.program = program; 146 * Starts main program with the specified arguments. 1155 error(program + ": " + s); 1173 * Main routine to start program.
|
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/ |
H A D | RE.java | 256 * program run by a given matcher object at any time. However, RE and 322 * The format of a node in a program is: * 334 static final char OP_END = 'E'; // end of program 384 static final int maxNode = 65536; // Maximum number of nodes in a program 393 // State of current program 394 REProgram program; // Compiled regular expression 'program' field in class:RE 447 * Construct a matcher for a pre-compiled regular expression from program 451 * @param program Compiled regular expression program (se 464 RE(REProgram program, int matchFlags) argument 478 RE(REProgram program) argument 572 setProgram(REProgram program) argument [all...] |
/openjdk7/hotspot/src/os/posix/launcher/ |
H A D | java_md.c | 254 * an error and will terminate the program. 878 * Return true if the named program exists 912 FindExecName(char *program) argument 921 if (*program == FILE_SEPARATOR || 922 (FILE_SEPARATOR=='\\' && strrchr(program, ':'))) 923 return Resolve("", program+1); 926 if (strrchr(program, FILE_SEPARATOR) != 0) { 928 return Resolve(getcwd(cwdbuf, sizeof(cwdbuf)), program); 942 result = Resolve(s, program); 948 result = Resolve(dir, program); [all...] |
/openjdk7/jdk/src/solaris/native/sun/xawt/ |
H A D | XlibWrapper.c | 1050 (JNIEnv *env, jclass clazz, jlong display, jstring program, jstring option) 1056 if (!JNU_IsNull(env, program)) { 1057 c_program = (char *)JNU_GetStringPlatformChars(env, program, NULL); 1064 if (!JNU_IsNull(env, program)) { 1065 JNU_ReleaseStringPlatformChars(env, program, (const char *) c_program); 1075 if (!JNU_IsNull(env, program)) { 1076 JNU_ReleaseStringPlatformChars(env, program, (const char *) c_program); 1049 Java_sun_awt_X11_XlibWrapper_XGetDefault(JNIEnv *env, jclass clazz, jlong display, jstring program, jstring option) argument
|
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/ |
H A D | XlibWrapper.java | 350 static native String XGetDefault(long display, String program, String option); argument
|