Searched refs:lineno (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DSyntaxException.java40 int lineno; field in class:SyntaxException
42 public SyntaxException(int lineno) { argument
43 this.lineno = lineno;
47 return "syntax error at line " + lineno;
H A DAliasFileParser.java97 throw new SyntaxException(st.lineno());
111 throw new SyntaxException(st.lineno());
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DSyntaxException.java46 public SyntaxException(int lineno, String expected, String found) { argument
47 message = "Syntax error at line " + lineno
52 public SyntaxException(int lineno, String expected, Token found) { argument
53 message = "Syntax error at line " + lineno
58 public SyntaxException(int lineno, Token expected, Token found) { argument
59 message = "Syntax error at line " + lineno
64 public SyntaxException(int lineno, Set expected, Token found) { argument
67 msg.append("Syntax error at line " + lineno + ": Expected one of \'");
H A DParser.java151 throw new SyntaxException(st.lineno(), keyWords, lookahead);
163 throw new SyntaxException(st.lineno(), new Token(ttype, token),
175 throw new SyntaxException(st.lineno(), new Token(ttype), lookahead);
187 throw new SyntaxException(st.lineno(), new Token((int)ttype),
317 throw new SyntaxException(st.lineno(), "IDENTIFIER",
331 throw new SyntaxException(st.lineno(), "IDENTIFIER", lookahead);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_frame.c66 unsigned short lineno; member in struct:FrameInfo
106 "Frame 0x%08x: method=%p, location=%d, lineno=%d(%d), status=%d \n",
108 info->lineno, info->lineno_state, info->status);
177 jint lineno; local
183 lineno = (jint)info->lineno;
188 lineno = getLineNumber(pkey->method, pkey->location);
189 if ( lineno >= 0 ) {
190 info->lineno = (unsigned short)lineno; /* sav
[all...]
H A Dhprof_io.h74 jint lineno);
82 char *sname, jint lineno);
H A Dhprof_trace.c203 jint lineno; local
218 frame_get_location(frame_index, frame_serial_num, &method, &location, &lineno);
220 *plineno = lineno;
260 int lineno; member in struct:FrameNames
289 &finfo[i].mname, &msig, &finfo[i].sname, &finfo[i].lineno);
295 finfo[i].lineno);
314 finfo[i].mname, finfo[i].sname, finfo[i].lineno);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DSourceToHTMLConverter.java168 int lineno = 1;
176 addLineNo(pre, lineno);
177 addLine(pre, line, configuration.sourcetab, lineno);
178 lineno++;
256 * @param lineno The line number
258 private static void addLineNo(Content pre, int lineno) { argument
261 if (lineno < 10) {
262 span.addContent("00" + Integer.toString(lineno));
263 } else if (lineno < 100) {
264 span.addContent("0" + Integer.toString(lineno));
[all...]
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/
H A DHarness.java129 tokens.sval + "\" on line " + tokens.lineno());
136 + tokens.lineno());
153 "line " + tokens.lineno());
170 tokens.lineno());
177 "name on line " + tokens.lineno());
199 "on line " + tokens.lineno());
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCryptoPolicyParser.java145 throw new ParsingException(st.lineno(), "expected grant " +
171 ParsingException(st.lineno(), "expected permission entry");
208 throw new ParsingException(st.lineno(),
226 throw new ParsingException(st.lineno(), "Inconsistent policy");
238 throw new ParsingException(st.lineno(),
265 throw new ParsingException(st.lineno(),
366 int lineno = st.lineno();
382 throw new ParsingException(lineno, "a non-negative number",
395 throw new ParsingException(st.lineno(), expec
[all...]
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DReplyNode.java35 void set(String kind, List<Node> components, int lineno) { argument
36 super.set(kind, components, lineno);
H A DConstantNode.java40 this.lineno = 0;
H A DParse.java147 node.set(kind, list, izer.lineno());
171 System.err.println(Main.specSource + ":" + izer.lineno() +
H A DNode.java36 int lineno; field in class:Node
46 void set(String kind, List<Node> components, int lineno) { argument
49 this.lineno = lineno;
195 System.err.println(Main.specSource + ":" + lineno + ": " +
H A DErrorNode.java42 this.lineno = 0;
H A DOutNode.java35 void set(String kind, List<Node> components, int lineno) { argument
36 super.set(kind, components, lineno);
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.hpp106 VMError(Thread* thread, const char* filename, int lineno,
110 VMError(Thread* thread, const char* filename, int lineno, size_t size,
/openjdk7/langtools/test/tools/javac/api/guide/
H A DTest.java76 long lineno = diags.getDiagnostics().get(0).getLineNumber();
77 if (msg.contains(":"+lineno+":"))
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyParser.java358 throw new ParsingException(st.lineno(),
371 throw new ParsingException(st.lineno(),
421 st.lineno(),
429 st.lineno(),
448 st.lineno(),
491 (st.lineno(),
528 throw new ParsingException(st.lineno(),
552 ParsingException(st.lineno(),
726 throw new ParsingException(st.lineno(), expect,
745 throw new ParsingException(st.lineno(), expec
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DPolicyParser.java303 throw new ParsingException(st.lineno(),
371 (st.lineno(),
392 ParsingException(st.lineno(),
400 (st.lineno(),
419 ParsingException(st.lineno(),
525 throw new ParsingException(st.lineno(), expect,
543 throw new ParsingException(st.lineno(), expect, st.sval);
557 throw new ParsingException(st.lineno(), expect, st.sval);
564 throw new ParsingException(st.lineno(), expect, ",");
570 throw new ParsingException(st.lineno(), expec
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Dforte.cpp369 jint lineno; // line number in the source file member in struct:__anon363
426 trace->frames[0].lineno = bci;
428 trace->frames[0].lineno = -3;
458 trace->frames[count].lineno = bci;
460 trace->frames[count].lineno = -3;
510 // jint lineno;
516 // lineno - bci of the method being executed or -1 if bci is not available
519 // lineno - (-3)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DDefaultAuthenticator.java111 int lineno = 1;
116 locator.setLineNumber(lineno++);
/openjdk7/hotspot/src/share/vm/code/
H A DscopeDesc.cpp161 int lineno = method()->line_number_from_bci(bci()); local
162 if (lineno != -1) {
163 st->print_cr("@%d (line %d)", bci(), lineno);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DCommandInterpreter.java985 int lineno = loc.lineNumber();
990 lineno = Integer.valueOf(id).intValue();
1007 lineno = loc.lineNumber();
1010 int startLine = (lineno > 4) ? lineno - 4 : 1;
1012 String sourceLine = source.sourceLine(lineno);
1015 lineno +
1027 if (i == lineno) {
/openjdk7/hotspot/src/share/tools/launcher/
H A Djava.c1869 int lineno = 0; local
1897 lineno++;
1902 lineno, jvmCfgName);
1911 lineno, jvmCfgName);
1918 lineno, jvmCfgName);
1929 lineno, jvmCfgName);
1952 lineno, jvmCfgName);
1962 lineno, &jvmCfgName[0]);

Completed in 119 milliseconds

12