Searched defs:line (Results 1 - 25 of 140) sorted by relevance

123456

/openjdk7/jdk/src/share/instrument/
H A DJPLISAssert.c43 int line) {
45 fprintf(stderr, "*** java.lang.instrument ASSERTION FAILED ***: \"%s\" at %s line: %d\n",
48 line);
58 int line) {
60 fprintf(stderr, "*** java.lang.instrument ASSERTION FAILED ***: \"%s\" with message %s at %s line: %d\n",
64 line);
40 JPLISAssertCondition( jboolean condition, const char * assertionText, const char * file, int line) argument
54 JPLISAssertConditionWithMessage( jboolean condition, const char * assertionText, const char * message, const char * file, int line) argument
/openjdk7/jdk/src/share/classes/sun/net/ftp/
H A DFtpDirParser.java40 * Takes one line from a directory listing and returns an FtpDirEntry instance
43 * @param line a <code>String</code>, a line sent by the FTP server as a
48 public FtpDirEntry parseLine(String line); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCompressedLineNumberReadStream.java40 /** Read (bci, line number) pair from stream. Returns false at end-of-stream. */
48 line += readSignedInt();
52 line += next & 0x7;
58 public int line() { return line; } method in class:CompressedLineNumberReadStream
65 private int line; field in class:CompressedLineNumberReadStream
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DSourcePosition.java31 * This interface describes a source position: filename, line number,
42 /** The line in the source file. The first line is numbered 1;
43 * 0 means no line number information is available. */
44 int line(); method in interface:SourcePosition
53 /** Convert the source position to the form "Filename:line". */
/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DSourcePosition.java59 * Returns the line number of this position. Lines are numbered
62 * @return the line number of this position, or 0 if the line
65 int line(); method in interface:SourcePosition
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DErrorConsumer.java39 int line,
38 pushError(String errorFileName, int line, String message, String referenceText, String referenceTextPointer) argument
/openjdk7/langtools/test/tools/javac/
H A DT6366196.java46 public static void positiveTest(int line, int col) { argument
47 if (Position.encodePosition(line, col) == Position.NOPOS) {
48 throw new Error("test failed at line = " + line + ", column = " + col);
50 System.out.println("test passed at line = " + line + ", column = " + col);
54 public static void negativeTest(int line, int col) { argument
55 if (Position.encodePosition(line, col) != Position.NOPOS) {
56 throw new Error("test failed at line = " + line
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DInvalidCharacter.java45 public InvalidCharacter (String filename, String line, int lineNumber, int pos, char ch) argument
55 String[] parameters = {filename, Integer.toString (lineNumber), "" + ch, Integer.toString ((int)ch), line, pointer};
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DLineIterator.java31 * A utility class to iterate over the path segments of a line segment
37 Line2D line; field in class:LineIterator
42 this.line = l;
93 throw new NoSuchElementException("line iterator out of bounds");
97 coords[0] = (float) line.getX1();
98 coords[1] = (float) line.getY1();
101 coords[0] = (float) line.getX2();
102 coords[1] = (float) line.getY2();
131 throw new NoSuchElementException("line iterator out of bounds");
135 coords[0] = line
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioSynthesizer.java82 * @param line which <code>AudioSynthesizer</code> writes output audio into.
83 * If <code>line</code> is null, then line from system default mixer is used.
96 public void open(SourceDataLine line, Map<String, Object> info) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DDOMLocator.java36 private static final String line = "line"; field in class:DOMLocator
42 e.setAttributeNS(locationNamespace,"loc:"+line,Integer.toString(loc.getColumnNumber()));
58 return Integer.parseInt(DOMUtil.getAttribute(e,locationNamespace,line));
/openjdk7/jdk/test/java/lang/ClassLoader/deadlock/
H A DStarter.java35 public static void log(String line) { argument
36 System.out.println(line);
/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A DLineMap.java29 * Provides methods to convert between character positions and line numbers
36 * Find the start position of a line.
38 * @param line line number (beginning at 1)
39 * @return position of first character in line
44 long getStartPosition(long line); argument
47 * Find the position corresponding to a (line,column).
49 * @param line line number (beginning at 1)
54 * if {@code line <
57 getPosition(long line, long column) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DSourcePositionImpl.java65 * form "sourcefile:line", or "sourcefile" if no line number is available.
68 int ln = line();
84 public int line() { method in class:SourcePositionImpl
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DSourcePositionImpl.java35 * A source position: filename, line number, and column number.
58 /** The line in the source file. The first line is numbered 1;
59 * 0 means no line number information is available. */
60 public int line() { method in class:SourcePositionImpl
110 return fn + ":" + line();
/openjdk7/langtools/test/tools/javap/6937244/
H A DT6937244A.java51 for (String line: out.split("[\r\n]+")) {
52 if (line.contains("implements")) {
53 verify(line, "implements java.util.List<java.lang.String>");
57 if (line.contains("field")) {
58 verify(line, "java.util.List<java.lang.String> field");
62 if (line.contains("method")) {
63 verify(line, "java.util.List<java.lang.String> method(java.util.List<java.lang.String>) throws java.lang.Exception");
76 void verify(String line, String expect) throws Exception { argument
77 if (!line.contains(expect)) {
78 System.err.println("line
[all...]
/openjdk7/langtools/test/tools/javap/
H A DT4459541.java27 * @summary "javap -l" shows line numbers as signed short; they should be unsigned.
52 while (line < 32750)
53 println("// " + line);
58 while (line < 32768-4)
59 println("// " + line);
61 while (line < 32768+4)
64 while (line < 65520)
65 println("// " + line);
70 while (line < 65536-4)
71 println("// " + line);
111 int line = 1; field in class:T4459541
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSAnnotationInfo.java51 XSAnnotationInfo(String annotation, int line, int column, int charOffset) { argument
53 fLine = line;
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DLineEvent.java29 * The <code>LineEvent</code> class encapsulates information that a line
30 * sends its listeners whenever the line opens, closes, starts, or stops.
34 * the listener can learn the type of event, the line responsible for
35 * the event, and how much data the line had processed when the event occurred.
53 * The kind of line event (<code>OPEN</code>, <code>CLOSE</code>,
74 * Constructs a new event of the specified type, originating from the specified line.
75 * @param line the source of this event
77 * @param position the number of sample frames that the line had already processed when the event occurred,
80 * @throws IllegalArgumentException if <code>line</code> is
83 public LineEvent(Line line, Typ argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DServiceProxy.java63 private static void fail(Class<?> service, URL u, int line, String msg) argument
65 fail(service, u + ":" + line + ": " + msg);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/soql/
H A DSOQL.java37 This is command line SOQL (Simple Object Query Language) interpreter.
58 String line = in.readLine();
59 if (line == null) {
62 StringTokenizer st = new StringTokenizer(line);
66 handleSelect(line);
68 handleClasses(line);
70 handleClass(line);
72 handleObject(line);
79 handleUnknown(line);
123 protected void handleClasses(String line) { argument
133 handleClass(String line) argument
181 handleObject(String line) argument
212 handleUnknown(String line) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DMessageOutput.java107 static void printDirectln(String line) { argument
108 System.out.println(line);
110 static void printDirect(String line) { argument
111 System.out.print(line);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/
H A DEventLocation.java48 * Return the line number where the current event ends,
50 * @return the current line number
92 public void setLineNumber(int line) { argument
93 _line = line;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DInternetHeaders.java35 * until the blank line that indicates end of header. The input stream
53 * exceed the line length limitation for the transport (1000 bytes for
66 * blank line separating the header from the body. Store the
76 // Read header lines until a blank line. It is valid
78 String line;
79 String prevline = null; // the previous header line, as a string
84 //while ((line = lis.readLine()) != null) {
86 line = lis.readLine();
87 if (line != null &&
88 (line
154 addHeaderLine(String line) argument
180 String line; // the entire RFC822 header "line" field in class:hdr
[all...]
/openjdk7/jdk/test/com/sun/jdi/redefineMethod/
H A DRedefineTest.java27 * @summary Test class redefinition - method data line numbers and local vars,
169 int line = loc.lineNumber();
170 if (line != Integer.parseInt(st.nextToken())) {
171 failure("FAIL: Unexpected line number: " + errInfo);
232 void setBP(int line) { argument
234 Location loc = findLocation(findReferenceType("RedefineSubTarg"), line);
239 failure("FAIL: Attempt to set BP at line " + line + " threw " + exc);

Completed in 95 milliseconds

123456