Searched refs:Line (Results 1 - 25 of 34) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DMixer.java41 * Through methods of the <code>Line</code> interface, which <code>Mixer</code> extends,
57 public interface Mixer extends Line {
72 * @return array of <code>Line.Info</code> objects representing source lines
76 public Line.Info[] getSourceLineInfo();
82 * @return array of <code>Line.Info</code> objects representing target lines
86 public Line.Info[] getTargetLineInfo();
93 * @param info a <code>Line.Info</code> object describing lines about which information
95 * @return an array of <code>Line.Info</code> objects describing source lines matching
99 public Line.Info[] getSourceLineInfo(Line
[all...]
H A DLineEvent.java42 * @see Line
83 public LineEvent(Line line, Type type, long position) {
94 public final Line getLine() {
96 return (Line)getSource();
210 * @see Line#open
219 * @see Line#close
H A DPort.java39 public interface Port extends Line {
46 * The <code>Port.Info</code> class extends <code>{@link Line.Info}</code>
62 public static class Info extends Line.Info {
164 public boolean matches(Line.Info info) {
H A DLine.java29 * The <code>Line</code> interface represents a mono or multi-channel
37 * The <code>Line</code> interface provides two accessor methods for
73 public interface Line extends AutoCloseable { interface in inherits:AutoCloseable
76 * Obtains the <code>Line.Info</code> object describing this
80 public Line.Info getLineInfo();
211 * A <code>Line.Info</code> object contains information about a line.
212 * The only information provided by <code>Line.Info</code> itself
214 * A subclass of <code>Line.Info</code> adds other kinds of information
215 * about the line. This additional information depends on which <code>Line</code>
216 * subinterface is implemented by the kind of line that the <code>Line
[all...]
H A DDataLine.java30 * superinterface, <code>{@link Line}</code>. This functionality includes
68 public interface DataLine extends Line {
271 * Because a <code>Line.Info</code> knows the class of the line its describes, a
277 * <code>{@link Mixer#getLine Mixer.getLine(Line.Info)}</code>.
279 * @see Line.Info
283 public static class Info extends Line.Info {
431 public boolean matches(Line.Info info) {
H A DAudioSystem.java59 * for obtaining a <code>{@link Line}</code> directly from the
164 * @see Line
165 * @see Line.Info
265 * @param info a <code>Line.Info</code> object that specifies the kind of
267 * @return an array of <code>Line.Info</code> objects describing source lines matching
271 * @see Mixer#getSourceLineInfo(Line.Info)
273 public static Line.Info[] getSourceLineInfo(Line.Info info) {
276 Line.Info[] currentInfoArray;
279 Line
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractMixer.java32 import javax.sound.sampled.Line;
60 protected Line.Info[] sourceLineInfo;
65 protected Line.Info[] targetLineInfo;
109 Line.Info[] sourceLineInfo,
110 Line.Info[] targetLineInfo) {
112 // Line.Info, AbstractMixer, Control[]
113 super(new Line.Info(Mixer.class), null, controls);
136 public final Line.Info[] getSourceLineInfo() {
137 Line.Info[] localArray = new Line
[all...]
H A DSoftMixingMixer.java37 import javax.sound.sampled.Line;
93 private final javax.sound.sampled.Line.Info[] sourceLineInfo;
97 sourceLineInfo = new javax.sound.sampled.Line.Info[2];
143 public Line getLine(Line.Info info) throws LineUnavailableException {
146 throw new IllegalArgumentException("Line unsupported: " + info);
155 throw new IllegalArgumentException("Line unsupported: " + info);
158 public int getMaxLines(Line.Info info) {
170 public javax.sound.sampled.Line.Info[] getSourceLineInfo() {
171 Line
[all...]
H A DAbstractLine.java34 import javax.sound.sampled.Line;
45 abstract class AbstractLine implements Line {
47 protected final Line.Info info;
64 protected AbstractLine(Line.Info info, AbstractMixer mixer, Control[] controls) {
78 public final Line.Info getLineInfo() {
H A DPortMixer.java31 import javax.sound.sampled.Line;
69 // pass in Line.Info, mixer, controls
72 null, // Line.Info[] sourceLineInfo
73 null); // Line.Info[] targetLineInfo
127 public Line getLine(Line.Info info) throws LineUnavailableException {
128 Line.Info fullInfo = getLineInfo(info);
137 throw new IllegalArgumentException("Line unsupported: " + info);
141 public int getMaxLines(Line.Info info) {
142 Line
[all...]
H A DDirectAudioDevice.java62 // pass in Line.Info, mixer, controls
65 null, // Line.Info[] sourceLineInfo
66 null); // Line.Info[] targetLineInfo
73 sourceLineInfo = new Line.Info[2];
82 sourceLineInfo = new Line.Info[0];
88 targetLineInfo = new Line.Info[1];
91 targetLineInfo = new Line.Info[0];
171 public Line getLine(Line.Info info) throws LineUnavailableException {
172 Line
[all...]
/openjdk7/langtools/test/tools/javac/Paths/
H A DHelp.sh69 Bottom Line
H A DClass-Path2.sh111 Bottom Line
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DSourceModel.java66 * List of Line.
68 private List<Line> sourceLines = null;
70 public static class Line { class in class:SourceModel
74 Line(String text) { method in class:SourceModel.Line
86 public static final Line prototypeCellValue = new Line(
105 sourceLines = new ArrayList<Line>();
106 sourceLines.add(new Line(message));
137 public Line line(int lineNo) {
150 Line lin
[all...]
H A DSourceTool.java307 SourceModel.Line line = (SourceModel.Line)value;
356 SourceModel.Line line =
357 (SourceModel.Line)list.getSelectedValue();
/openjdk7/langtools/test/tools/javac/diags/
H A DMessageFile.java40 class Line { class in class:MessageFile
42 Line prev;
43 Line next;
45 Line(String text) { method in class:MessageFile.Line
61 Line insertAfter(String text) {
62 Line l = new Line(text);
67 void insertAfter(Line l) {
78 Line insertBefore(String text) {
79 Line
[all...]
H A DMessageInfo.java272 MessageFile.Line l = m.firstLine;
282 MessageFile.Line l = m.firstLine;
293 for (MessageFile.Line l: m.getLines(includePrecedingNewlines)) {
/openjdk7/jdk/test/javax/sound/sampled/DataLine/
H A DDataLine_ArrayIndexOutOfBounds.java10 import javax.sound.sampled.Line;
145 Line.Info linfo = new Line.Info(SourceDataLine.class);
185 Line.Info linfo = new Line.Info(TargetDataLine.class);
/openjdk7/langtools/test/tools/javadoc/lib/
H A DTester.java292 List<Line> labels = new ArrayList<Line>();
298 labels.add(0, new Line(off, s));
304 Line label = labels.remove(0);
333 static class Line { class in class:Tester
336 Line(int off, Object o) { this.off = off; this.o = o; } method in class:Tester.Line
/openjdk7/jdk/test/javax/sound/sampled/DirectAudio/
H A Dbug6400879.java73 Line.Info infos[] = AudioSystem.getSourceLineInfo(line_info);
/openjdk7/jdk/test/java/lang/Thread/
H A DUncaughtExceptions.sh54 test "$#" = 1 -a "$1" = "Line" || Die "Usage: Bottom Line"
205 Bottom Line
/openjdk7/jdk/src/share/native/sun/awt/giflib/
H A Ddgif_lib.c78 static int DGifDecompressLine(GifFileType *GifFile, GifPixelType *Line,
444 * Get one full scanned line (Line) of length LineLen from GIF file.
448 GifPixelType * Line,
472 if (DGifDecompressLine(GifFile, Line, LineLen) == GIF_OK) {
752 * This version decompress the given gif file into Line of length LineLen.
758 GifPixelType * Line,
778 Line[i++] = Stack[--StackPtr];
808 Line[i++] = CrntCode;
852 Line[i++] = Stack[--StackPtr];
447 DGifGetLine(GifFileType * GifFile, GifPixelType * Line, int LineLen) argument
757 DGifDecompressLine(GifFileType * GifFile, GifPixelType * Line, int LineLen) argument
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftAudioSynthesizer/
H A DDummySourceDataLine.java218 public javax.sound.sampled.Line.Info getLineInfo() {
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSynthesizer/
H A DDummySourceDataLine.java218 public javax.sound.sampled.Line.Info getLineInfo() {
/openjdk7/jdk/test/sun/rmi/rmic/manifestClassPath/
H A Drun.sh140 Bottom Line

Completed in 60 milliseconds

12