Searched refs:ModelSource (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelConnectionBlock.java42 private final static ModelSource[] no_sources = new ModelSource[0];
43 private ModelSource[] sources = no_sources;
55 public ModelConnectionBlock(ModelSource source,
58 this.sources = new ModelSource[1];
64 public ModelConnectionBlock(ModelSource source, double scale,
67 this.sources = new ModelSource[1];
74 public ModelConnectionBlock(ModelSource source, ModelSource control,
78 this.sources = new ModelSource[
[all...]
H A DModelSource.java33 public final class ModelSource { class
63 public ModelSource() { method in class:ModelSource
67 public ModelSource(ModelIdentifier id) { method in class:ModelSource
72 public ModelSource(ModelIdentifier id, boolean direction) { method in class:ModelSource
77 public ModelSource(ModelIdentifier id, boolean direction, boolean polarity) { method in class:ModelSource
82 public ModelSource(ModelIdentifier id, boolean direction, boolean polarity, method in class:ModelSource
89 public ModelSource(ModelIdentifier id, ModelTransform transform) { method in class:ModelSource
H A DSoftPerformer.java48 new ModelSource(
56 new ModelSource(
64 new ModelSource(
72 new ModelSource(
80 new ModelSource(
88 new ModelSource(
93 new ModelSource(new ModelIdentifier("midi_rpn", "0"),
105 new ModelSource(
113 new ModelSource(
121 new ModelSource(
[all...]
H A DSF2Instrument.java325 ModelIdentifier src = ModelSource.SOURCE_NOTEON_KEYNUMBER;
328 new ModelConnectionBlock(new ModelSource(src), fvalue,
336 ModelIdentifier src = ModelSource.SOURCE_NOTEON_KEYNUMBER;
339 new ModelConnectionBlock(new ModelSource(src), fvalue,
387 ModelIdentifier src = ModelSource.SOURCE_NOTEON_KEYNUMBER;
390 new ModelConnectionBlock(new ModelSource(src),
398 ModelIdentifier src = ModelSource.SOURCE_NOTEON_KEYNUMBER;
401 new ModelConnectionBlock(new ModelSource(src),
426 ModelIdentifier src = ModelSource.SOURCE_EG2;
430 new ModelConnectionBlock(new ModelSource(sr
[all...]
H A DDLSInstrument.java182 return ModelSource.SOURCE_LFO1;
184 return ModelSource.SOURCE_NOTEON_VELOCITY;
186 return ModelSource.SOURCE_NOTEON_KEYNUMBER;
188 return ModelSource.SOURCE_EG1;
190 return ModelSource.SOURCE_EG2;
192 return ModelSource.SOURCE_MIDI_PITCH;
207 return ModelSource.SOURCE_MIDI_POLY_PRESSURE;
209 return ModelSource.SOURCE_MIDI_CHANNEL_PRESSURE;
211 return ModelSource.SOURCE_LFO2;
213 return ModelSource
[all...]
H A DSoftChannel.java742 ModelSource[] sources = conn.getSources();
746 ModelSource src = sources[j];
764 ModelSource[] sources = conn.getSources();
768 ModelSource src = sources[j];
788 ModelSource[] sources = conn.getSources();
834 new ModelSource(sid,
849 new ModelSource(sid,
858 new ModelSource(sid,
884 new ModelSource(sid, mt), -960,
892 new ModelSource(ModelSourc
[all...]
H A DSoftVoice.java216 private double transformValue(double value, ModelSource src) {
258 ModelSource[] srcs = conn.getSources();
265 ModelSource[] srcs = conn.getSources();
374 ModelSource[] srcs = conn.getSources();
404 for (ModelSource src: connection.getSources()) {
413 for (ModelSource src: connection.getSources()) {
/openjdk7/jdk/test/javax/sound/midi/Gervill/ModelSource/
H A DNewModelSourceModelIdentifier.java27 @summary Test ModelSource(ModelIdentifier) constructor */
40 ModelSource src = new ModelSource(ModelSource.SOURCE_NOTEON_KEYNUMBER);
41 if(src.getIdentifier() != ModelSource.SOURCE_NOTEON_KEYNUMBER)
42 throw new RuntimeException("src.getIdentifier() doesn't return ModelSource.SOURCE_NOTEON_KEYNUMBER!");
H A DNewModelSourceModelIdentifierModelTransform.java27 @summary Test ModelSource(ModelIdentifier,ModelTransform) constructor */
41 ModelSource src = new ModelSource(ModelSource.SOURCE_NOTEON_KEYNUMBER, trans);
42 if(src.getIdentifier() != ModelSource.SOURCE_NOTEON_KEYNUMBER)
43 throw new RuntimeException("src.getIdentifier() doesn't return ModelSource.SOURCE_NOTEON_KEYNUMBER!");
H A DSetIdentifier.java27 @summary Test ModelSource setIdentifier method */
40 ModelSource src = new ModelSource();
41 src.setIdentifier(ModelSource.SOURCE_NOTEON_KEYNUMBER);
42 if(src.getIdentifier() != ModelSource.SOURCE_NOTEON_KEYNUMBER)
43 throw new RuntimeException("src.getIdentifier() doesn't return ModelSource.SOURCE_NOTEON_KEYNUMBER!");
H A DNewModelSource.java27 @summary Test ModelSource() constructor */
40 ModelSource src = new ModelSource();
41 if(src.getIdentifier() != ModelSource.SOURCE_NONE)
42 throw new RuntimeException("src.getIdentifier() doesn't return ModelSource.SOURCE_NONE!");
H A DNewModelSourceModelIdentifierBoolean.java27 @summary Test ModelSource(ModelIdentifier,boolean) constructor */
40 ModelSource src = new ModelSource(ModelSource.SOURCE_NOTEON_KEYNUMBER,ModelStandardTransform.DIRECTION_MAX2MIN);
41 if(src.getIdentifier() != ModelSource.SOURCE_NOTEON_KEYNUMBER)
42 throw new RuntimeException("src.getIdentifier() doesn't return ModelSource.SOURCE_NOTEON_KEYNUMBER!");
H A DNewModelSourceModelIdentifierBooleanBoolean.java27 @summary Test ModelSource(ModelIdentifier,boolean,boolean) constructor */
40 ModelSource src = new ModelSource(ModelSource.SOURCE_NOTEON_KEYNUMBER,ModelStandardTransform.DIRECTION_MAX2MIN,ModelStandardTransform.POLARITY_BIPOLAR);
41 if(src.getIdentifier() != ModelSource.SOURCE_NOTEON_KEYNUMBER)
42 throw new RuntimeException("src.getIdentifier() doesn't return ModelSource.SOURCE_NOTEON_KEYNUMBER!");
H A DNewModelSourceModelIdentifierBooleanBooleanInt.java27 @summary Test ModelSource(ModelIdentifier,boolean,boolean,int) constructor */
40 ModelSource src = new ModelSource(ModelSource.SOURCE_NOTEON_KEYNUMBER,
44 if(src.getIdentifier() != ModelSource.SOURCE_NOTEON_KEYNUMBER)
45 throw new RuntimeException("src.getIdentifier() doesn't return ModelSource.SOURCE_NOTEON_KEYNUMBER!");
H A DSetTransform.java27 @summary Test ModelSource setTransform method */
40 ModelSource src = new ModelSource();

Completed in 68 milliseconds