Searched defs:Line (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/sampled/
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...]
/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...]
/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/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...]
/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/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java89 ((ar = Line.tryparse(str)) != null) ||
202 testOps.add(new Line());
325 new Line(),
344 if ((ar instanceof Line) ||
1179 public static class Line extends AnnotatedShapeOp { class in class:RenderClipTest
1180 public static Line tryparse(String str) {
1182 if (!str.startsWith("Line(")) {
1211 Line l = new Line();
1229 return ("Line("
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DToken.java189 Line = 309, field in class:Token

Completed in 600 milliseconds