Searched refs:nl (Results 1 - 25 of 82) sorted by relevance

1234

/openjdk7/jdk/test/javax/print/applet/
H A DYesNo.java29 static String nl = System.getProperty("line.Separator", "\n"); field in class:YesNo
32 +nl+
34 +nl+
36 +nl+
38 +nl+
40 +nl+
42 +nl+
44 +nl+
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJBreak.java48 f.p("break;").nl();
50 f.p("break").p(label.label).p(';').nl();
H A DJContinue.java48 f.p("continue;").nl();
50 f.p("continue").p(label.label).p(';').nl();
H A DJLabel.java49 f.p(label+':').nl();
H A DJCase.java76 f.p("case ").g(label).p(':').nl();
78 f.p("default:").nl();
H A DJReturn.java52 f.p(';').nl();
H A DJThrow.java53 f.p(';').nl();
H A DJDocComment.java163 f.p("/**").nl();
167 f.p(" * ").nl();
169 f.p(" * @param ").p(e.getKey()).nl();
173 f.p(" * @return").nl();
177 f.p(" * @throws ").t(e.getKey()).nl();
181 f.p(" * @deprecated").nl();
191 f.nl();
193 f.p(" */").nl();
H A DJForEach.java70 f.g(body).nl();
72 f.p(';').nl();
H A DJSwitch.java79 f.p("switch ").g(test).p(" {").nl();
81 f.p("switch (").g(test).p(')').p(" {").nl();
87 f.p('}').nl();
H A DJAssignment.java54 f.g(this).p(';').nl();
H A DJDoLoop.java69 f.p(';').nl();
H A DJWhileLoop.java70 f.p(';').nl();
/openjdk7/langtools/src/share/bin/
H A Dlauncher.sh-template62 nl='
67 -J* ) javaOpts=$javaOpts$nl`echo $i | sed -e 's/^-J//'` ;;
68 * ) toolOpts=$toolOpts$nl$i ;;
74 IFS=$nl
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltMath.java65 * @param nl The NodeList for the node-set to be evaluated.
71 public static double max (NodeList nl) argument
73 if (nl == null || nl.getLength() == 0)
77 for (int i = 0; i < nl.getLength(); i++)
79 Node n = nl.item(i);
100 * @param nl The NodeList for the node-set to be evaluated.
106 public static double min (NodeList nl) argument
108 if (nl == null || nl
142 highest(NodeList nl) argument
179 lowest(NodeList nl) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncCount.java49 // DTMIterator nl = m_arg0.asIterator(xctxt, xctxt.getCurrentNode());
55 // while (DTM.NULL != nl.nextNode())
59 // nl.detach();
60 DTMIterator nl = m_arg0.asIterator(xctxt, xctxt.getCurrentNode());
61 int i = nl.getLength();
62 nl.detach();
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DFunctionPattern.java108 DTMIterator nl = m_functionExpr.asIterator(xctxt, context);
111 if (null != nl)
115 while (DTM.NULL != (n = nl.nextNode()))
127 // nl.detach();
129 nl.detach();
152 DTMIterator nl = m_functionExpr.asIterator(xctxt, context);
155 if (null != nl)
159 while (DTM.NULL != (n = nl.nextNode()))
171 nl.detach();
195 DTMIterator nl
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPatternSyntaxException.java96 private static final String nl = field in class:PatternSyntaxException
114 sb.append(nl);
117 sb.append(nl);
/openjdk7/jdk/src/share/bin/
H A Dparse_manifest.c406 char *nl; local
421 nl = JLI_StrPBrk(*lp, "\n\r");
422 if (nl == NULL) {
423 nl = JLI_StrChr(*lp, (int)'\0');
425 cp = nl; /* For merging continuation lines */
426 if (*nl == '\r' && *(nl+1) == '\n')
427 *nl++ = '\0';
428 *nl++ = '\0';
439 while (*nl
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/params/
H A DXPathContainer.java59 NodeList nl = this._constructionElement.getChildNodes();
61 for (int i = 0; i < nl.getLength(); i++) {
62 this._constructionElement.removeChild(nl.item(i));
H A DXPath2FilterContainer.java190 HelperNodeList nl = new HelperNodeList();
192 XMLUtils.addReturnToElement(doc, nl);
210 nl.appendChild(c.getElement());
211 XMLUtils.addReturnToElement(doc, nl);
214 return nl;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DBlock.java82 Node_List nl = nodes();
83 int cnt = nl.size();
85 nl.at(i).dump(out);
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMUtils.java185 * @param nl the NodeList
188 public static Set nodeSet(NodeList nl) { argument
189 return new NodeSet(nl);
193 private NodeList nl; field in class:DOMUtils.NodeSet
194 public NodeSet(NodeList nl) { argument
195 this.nl = nl;
198 public int size() { return nl.getLength(); }
210 return nl.item(index++);
213 return index < nl
[all...]
/openjdk7/jdk/test/javax/management/remote/mandatory/connection/
H A DConnectionListenerNullTest.java69 final NotificationListener nl = null;
76 c.addConnectionNotificationListener(nl,nf,h);
91 c.removeConnectionNotificationListener(nl);
99 c.removeConnectionNotificationListener(nl,nf,h);
/openjdk7/jdk/test/javax/management/modelmbean/
H A DLoggingExceptionTest.java62 NotificationListener nl = new NotificationListener() {
66 mbean.addAttributeChangeNotificationListener(nl, null, null);

Completed in 136 milliseconds

1234