Searched refs:eol (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DParseException.java139 expected += eol + " ";
152 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn + "." + eol;
154 retval += "Was expecting:" + eol + " ";
156 retval += "Was expecting one of:" + eol + " ";
165 protected String eol = System.getProperty("line.separator", "\n"); field in class:ParseException
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DParseException.java150 expected += eol + " ";
165 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn + "." + eol;
167 retval += "Was expecting:" + eol + " ";
169 retval += "Was expecting one of:" + eol + " ";
178 protected String eol = System.getProperty("line.separator", "\n"); field in class:ParseException
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DParseException.java140 expected.append(eol).append(" ");
154 retval += "." + eol;
156 retval += "Was expecting:" + eol + " ";
158 retval += "Was expecting one of:" + eol + " ";
167 protected String eol = System.getProperty("line.separator", "\n"); field in class:ParseException
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DParseException.java136 String eol = System.getProperty("line.separator", "\n");
149 expected.append(eol).append(" ");
166 retval += "." + eol;
168 retval += "Was expecting:" + eol + " ";
170 retval += "Was expecting one of:" + eol + " ";
179 protected String eol = System.getProperty("line.separator", "\n"); field in class:ParseException
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddebug.cpp344 const char* const eol = os::line_separator(); local
360 msg, eol, msg, eol, msg, eol, msg, eol, msg, eol,
361 msg, eol, msg, eol, msg, eol, msg, eol, ms
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DRandomAccessFile.java936 boolean eol = false;
938 while (!eol) {
942 eol = true;
945 eol = true;
H A DBufferedReader.java324 boolean eol = false;
338 eol = true;
346 if (eol) {
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapTableFormat.hpp696 address eol = end_of_locals(); local
697 return calculate_size(num_locals(), locals(), stack_slots(eol), stack(eol));
749 address eol = (address)vti; local
750 if (eol + sizeof(u2) > end) {
753 count = stack_slots(eol);
754 vti = stack(eol);
755 for (int i = 0; i < stack_slots(eol); ++i) {
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DImageInputStreamImpl.java294 boolean eol = false;
296 while (!eol) {
300 eol = true;
303 eol = true;
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.cpp539 address eol = (address)types; local
540 number_of_types = ff->stack_slots(eol);
541 types = ff->stack(eol);
H A Dglobals.cpp120 const char* eol; local
121 while ((eol = strchr(cp, '\n')) != NULL) {
123 size_t llen = pointer_delta(eol, cp, sizeof(char));
128 cp = eol+1;
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbands.cpp171 const char* eol = (length > 10 && i % 10 == 0) ? "\n" : " "; local
172 fprintf(u->errstrm, "%s%d", eol, vs[0].getInt());
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp5011 const char* eol = strchr(cp, '\n'); local
5012 assert(eol != NULL, "must find end of line");
5013 if (eol == NULL) eol = cp + strlen(cp);
5014 cp = eol;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLDocument.java2719 * <code>flush</code>. <code>eol</code> will be one of \n, \r
2725 public void handleEndOfLineString(String eol) { argument
2726 if (emptyDocument && eol != null) {
2728 eol);
H A DHTMLEditorKit.java1025 * <code>flush</code>. <code>eol</code> will be one of \n, \r
1031 public void handleEndOfLineString(String eol) { argument

Completed in 145 milliseconds