Searched defs:sequence (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/midi/spi/
H A DMidiFileWriter.java57 * sequence specified.
58 * @param sequence the sequence for which MIDI file type support
63 public abstract int[] getMidiFileTypes(Sequence sequence); argument
87 * from the sequence indicated.
89 * @param sequence the sequence for which file writing support is queried
90 * @return <code>true</code> if the file type is supported for this sequence,
93 public boolean isFileTypeSupported(int fileType, Sequence sequence) { argument
95 int types[] = getMidiFileTypes( sequence );
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DContentModelContainer.java49 ExplicitGroup sequence(); method in interface:ContentModelContainer
H A DNestedParticle.java43 public ExplicitGroup sequence(); method in interface:NestedParticle
H A DTypeDefParticle.java40 public ExplicitGroup sequence(); method in interface:TypeDefParticle
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSynthesizer/
H A DTestRender1.java122 send(sequence, recv);
136 static Sequence sequence; field in class:TestRender1
152 sequence = MidiSystem.getSequence(si);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUCDecoder.java61 * (LLSS) - 8 bit length (high byte), and sequence number
66 * sequence, and all data bytes. If there is a
77 * "UCDecoder: Out of sequence line."
110 private int sequence; field in class:UCDecoder
168 * decodeBufferPrefix initializes the sequence number to zero.
171 sequence = 0;
175 * decodeLinePrefix reads the sequence number and the number of
176 * encoded bytes from the line. If the sequence number is not the
177 * previous sequence number + 1 then an exception is thrown.
182 * @exception CEFormatException out of sequence line
[all...]
H A DUCEncoder.java62 * (LLSS) - 8 bit length (high byte), and sequence number
67 * sequence, and all data bytes. If there is a
101 private int sequence; field in class:UCEncoder
145 * the sequence number and the length are encoded in the first
152 tmp[1] = (byte) sequence;
153 sequence = (sequence + 1) & 0xff;
171 * The buffer prefix code is used to initialize the sequence number
175 sequence = 0;
/openjdk7/jdk/src/share/classes/java/lang/
H A DShutdown.java31 * governing the virtual-machine shutdown sequence.
149 /* The actual shutdown sequence is defined here.
160 private static void sequence() { method in class:Shutdown
163 * after DestroyJavaVM initiates the shutdown sequence
212 sequence();
234 sequence();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DFilterChain.java70 public void apply(Diagram d, FilterChain sequence) { argument
72 for (Filter f : sequence.getFilters()) {
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DJavaSoundAudioClip.java78 private Sequence sequence = null; field in class:JavaSoundAudioClip
187 sequencer.setSequence(sequence);
454 sequence = MidiSystem.getSequence(in);
455 if (sequence == null) {
H A DStandardMidiFileWriter.java96 * sequence specified.
97 * @param sequence the sequence for which midi file type support
102 public int[] getMidiFileTypes(Sequence sequence){ argument
104 Track tracks[] = sequence.getTracks();
136 // First get the fileStream from this sequence
161 private InputStream getFileStream(int type, Sequence sequence) throws IOException { argument
162 Track tracks[] = sequence.getTracks();
218 // fix for 5048381: NullPointerException when saving a MIDI sequence
225 throw new IllegalArgumentException("invalid MIDI data in sequence");
[all...]
H A DRealTimeSequencer.java80 private Sequence sequence = null; field in class:RealTimeSequencer
92 * cache value for tempo factor until sequence is set
107 * True if the sequence is running.
167 public synchronized void setSequence(Sequence sequence) argument
170 if (Printer.trace) Printer.trace(">> RealTimeSequencer: setSequence(" + sequence +")");
172 if (sequence != this.sequence) {
173 if (this.sequence != null && sequence == null) {
189 playThread.setSequence(sequence);
[all...]
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiSystem.java753 * Obtains a MIDI sequence from the specified input stream. The stream must
787 Sequence sequence = null;
792 sequence = reader.getSequence( stream ); // throws IOException
799 if( sequence==null ) {
800 throw new InvalidMidiDataException("could not get sequence from input stream");
802 return sequence;
808 * Obtains a MIDI sequence from the specified URL. The URL must
831 Sequence sequence = null;
836 sequence = reader.getSequence( url ); // throws IOException
843 if( sequence
955 getMidiFileTypes(Sequence sequence) argument
989 isFileTypeSupported(int fileType, Sequence sequence) argument
[all...]
H A DSequencer.java34 * <code>{@link Sequence sequence}</code> is known as a <em>sequencer</em>.
35 * A MIDI sequence contains lists of time-stamped MIDI data, such as
42 * <li>obtaining a sequence from MIDI file data</li>
44 * <li>moving to an arbitrary position in the sequence</li>
55 * <li>muting or soloing individual tracks in the sequence</li>
57 * control-change events encountered while playing back the sequence.</li>
86 * Sets the current sequence on which the sequencer operates.
91 * @param sequence the sequence to be loaded.
92 * @throws InvalidMidiDataException if the sequence contain
95 setSequence(Sequence sequence) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/relation/
H A DRelationNotification.java228 * @param sequence sequence number to identify the notification
252 long sequence,
261 super(notifType, sourceObj, sequence, timeStamp, message);
283 * @param sequence sequence number to identify the notification
299 long sequence,
311 super(notifType, sourceObj, sequence, timeStamp, message);
435 // -param sequence sequence numbe
250 RelationNotification(String notifType, Object sourceObj, long sequence, long timeStamp, String message, String id, String typeName, ObjectName objectName, List<ObjectName> unregMBeanList) argument
297 RelationNotification(String notifType, Object sourceObj, long sequence, long timeStamp, String message, String id, String typeName, ObjectName objectName, String name, List<ObjectName> newValue, List<ObjectName> oldValue ) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSignatureAndHashAlgorithm.java106 private SignatureAndHashAlgorithm(String algorithm, int id, int sequence) { argument
113 this.priority = SUPPORTED_ALG_PRIORITY_MAX_NUM + sequence + 1;
116 // Note that we do not use the sequence argument for supported algorithms,
120 int signature, int sequence) {
131 id, sequence);
119 valueOf(int hash, int signature, int sequence) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DValueHandlerImpl.java592 Class sequence,
601 if (sequence == null) {
608 Class componentType = sequence.getComponentType();
647 throw new Error("Invalid primitive componentType : " + sequence.getName());
590 read_Array(IIOPInputStream bridge, org.omg.CORBA_2_3.portable.InputStream in, Class sequence, com.sun.org.omg.SendingContext.CodeBase sender, int offset) argument
/openjdk7/jdk/src/share/classes/javax/management/
H A DStandardMBean.java568 * Get the description that will be used for the <var>sequence</var>
577 * @param sequence The sequence number of the parameter considered
584 int sequence) {
591 * Get the name that will be used for the <var>sequence</var>
600 * @param sequence The sequence number of the parameter considered
607 int sequence) {
646 * Get the name that will be used for the <var>sequence</var>
655 * @param sequence Th
582 getDescription(MBeanConstructorInfo ctor, MBeanParameterInfo param, int sequence) argument
605 getParameterName(MBeanConstructorInfo ctor, MBeanParameterInfo param, int sequence) argument
660 getParameterName(MBeanOperationInfo op, MBeanParameterInfo param, int sequence) argument
683 getDescription(MBeanOperationInfo op, MBeanParameterInfo param, int sequence) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DFilterTopComponent.java100 private FilterChain sequence; field in class:FilterTopComponent
118 return sequence;
125 int index = sequence.getFilters().indexOf(((FilterNode) nodes[i]).getFilter());
290 sequence.getChangedEvent().addListener(new ChangedListener<FilterChain>() {
301 setKeys(sequence.getFilters());
340 sequence = new FilterChain();
374 sequence.addFilter(cf);
385 sequence.removeFilter(cf);
511 sequence.addFilter(cf);
628 for (Filter f : this.sequence
[all...]
/openjdk7/jdk/test/java/lang/invoke/
H A DRicochetTest.java118 assertEqualFunction(sequence(opL2, add0), opL2);
123 assertEqualFunction(sequence(opL2, add13_0),
125 assertEqualFunction(sequence(opL2, add13_1),
139 assertEqualFunction(opI, sequence(convI_L, opL_I));
470 private static MethodHandle sequence(MethodHandle mh1, MethodHandle... mhs) { method in class:RicochetTest
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DScanManager.java120 * sequence number throughout the application.
512 long sequence,
517 new AttributeChangeNotification(SCAN_MANAGER_NAME,sequence,time,
560 final long sequence;
567 sequence = getNextSeqNumber();
571 queueStateChangedNotification(sequence,timestamp,old,desired);
819 * Invoke all directories scanners in sequence. At each
956 * Returns and increment the sequence number used for
957 * notifications. We use the same sequence number throughout the
959 * @return A unique sequence numbe
511 queueStateChangedNotification( long sequence, long time, ScanState old, ScanState current) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java2478 // This is a sequence type that is referencing an
2480 // union. Save the sequence in a list for later
3133 entry.name (unknownNamePrefix + ++sequence);
3255 entry.name (unknownNamePrefix + ++sequence);
3637 return "sequence";
3883 int sequence = 0; field in class:Parser
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java768 /* Called to determine if there's a re-order sequence for this locale/
795 /* This method reorders the sequence such that the matches for the
820 private static Vector splitSequence(String sequence) { argument
825 while ((end = sequence.indexOf(',', start)) >= 0) {
826 parts.add(sequence.substring(start, end));
829 if (sequence.length() > start) {
830 parts.add(sequence.substring(start, sequence.length()));
835 protected String[] split(String sequence) { argument
836 Vector v = splitSequence(sequence);
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java49 * <p> A typical invocation sequence is thus
58 * compiles an expression and matches an input sequence against it in a single
430 * <p> A <i>line terminator</i> is a one- or two-character sequence that marks
431 * the end of a line of the input character sequence. The following are
458 * of the entire input sequence. If {@link #MULTILINE} mode is activated then
461 * matches just before a line terminator or the end of the input sequence.
486 * of the input sequence that matches such a group is saved. The captured
675 * <p><tt>\R&nbsp;&nbsp;&nbsp;&nbsp;</tt>Any Unicode linebreak sequence
822 * the input sequence. By default these expressions only match at the
823 * beginning and the end of the entire input sequence
2007 private Node sequence(Node end) { method in class:Pattern
[all...]

Completed in 136 milliseconds