Searched defs:nl (Results 1 - 18 of 18) sorted by relevance

/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/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/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltDynamic.java96 * @param nl The node set
101 public static double max(ExpressionContext myContext, NodeList nl, String expr) argument
114 NodeSetDTM contextNodes = new NodeSetDTM(nl, xctxt);
177 * @param nl The node set
182 public static double min(ExpressionContext myContext, NodeList nl, String expr) argument
195 NodeSetDTM contextNodes = new NodeSetDTM(nl, xctxt);
199 for (int i = 0; i < nl.getLength(); i++)
258 * @param nl The node set
263 public static double sum(ExpressionContext myContext, NodeList nl, String expr) argument
275 NodeSetDTM contextNodes = new NodeSetDTM(nl, xctx
365 map(ExpressionContext myContext, NodeList nl, String expr) argument
532 closure(ExpressionContext myContext, NodeList nl, String expr) argument
[all...]
H A DExsltSets.java183 * @param nl NodeList for the node-set.
184 * @return a NodeList with nodes from nl containing distinct string values.
185 * In other words, if more than one node in nl contains the same string value,
190 public static NodeList distinct(NodeList nl) argument
197 for (int i = 0; i < nl.getLength(); i++)
199 Node currNode = nl.item(i);
H A DExsltStrings.java118 * @param nl A node set
121 public static String concat(NodeList nl) argument
124 for (int i = 0; i < nl.getLength(); i++)
126 Node node = nl.item(i);
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...]
H A DExtensions.java172 * @param nl NodeList for node-set
173 * @return a NodeList with nodes from nl containing distinct string values.
174 * In other words, if more than one node in nl contains the same string value,
181 public static NodeList distinct(NodeList nl) argument
183 return ExsltSets.distinct(nl);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXOperations.java204 public void addOperationsListener(NotificationListener nl) { argument
205 notificationListenersList.add(nl);
208 public void removeOperationsListener(NotificationListener nl) { argument
209 notificationListenersList.remove(nl);
216 for (NotificationListener nl : notificationListenersList) {
217 nl.handleNotification(n, handback);
H A DXMBeanNotifications.java303 public void addNotificationsListener(NotificationListener nl) { argument
304 notificationListenersList.add(nl);
307 public void removeNotificationsListener(NotificationListener nl) { argument
308 notificationListenersList.remove(nl);
325 for (NotificationListener nl : notificationListenersList) {
326 nl.handleNotification(notif, node);
/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/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/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJFormatter.java320 public JFormatter nl() { method in class:JFormatter
414 nl().d(pkg);
415 nl();
430 p("import").p(clazz.fullName()).p(';').nl();
433 nl();
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DXMLUtils.java128 NamedNodeMap nl = ((Element)rootNode).getAttributes();
129 for (int i=0;i<nl.getLength();i++) {
130 result.add(nl.item(i));
411 public static void addReturnToElement(Document doc, HelperNodeList nl) { argument
413 nl.appendChild(doc.createTextNode("\n"));
/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.cpp446 narrowOop *nl = (narrowOop*)loc; local
452 nl = (narrowOop*)((address)nl + 4);
455 oop_fn->do_oop(nl);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathContext.java681 * @param nl the <a href="http://www.w3.org/TR/xslt#dt-current-node-list">current node list</a>,
685 public final void pushContextNodeList(DTMIterator nl) argument
687 m_contextNodeLists.push(nl);
/openjdk7/hotspot/src/share/vm/adlc/
H A Dforms.hpp375 PreserveIter(NameList* nl) { argument
376 _list = nl;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java92 void h1(String s) { nl(); wrap("h1", s); nl(); }
93 void h2(String s) { nl(); wrap("h2", s); nl(); }
94 void h3(String s) { nl(); wrap("h3", s); nl(); }
95 void h4(String s) { nl(); wrap("h4", s); nl(); }
98 void beginList() { beginTag("ul"); nl(); }
99 void endList() { endTag("ul"); nl(); }
134 void nl() { method in class:HTMLGenerator.Formatter
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dgcm.cpp958 uint nl = _node_latency->at_grow(use->_idx); local
964 uint l = ul + nl;
969 nl, j, ul, l, latency);

Completed in 191 milliseconds