Searched defs:rel (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeHistogram.cpp133 float rel = abs * 100.0F / tot; local
134 if (cutoff <= rel) {
135 tty->print_cr("%10d %7.2f%% %02x %s", abs, rel, e->index(), name_for(e->index()));
175 float rel = abs * 100.0F / tot; local
176 if (cutoff <= rel) {
179 tty->print_cr("%10d %6.3f%% %02x %02x %-19s %s", abs, rel, c1, c2, name_for(c1), name_for(c2));
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLLinkElement.java88 * Forward link type. See the rel attribute definition in HTML 4.0.
91 public void setRel(String rel); argument
H A DHTMLAnchorElement.java92 * Forward link type. See the rel attribute definition in HTML 4.0.
95 public void setRel(String rel); argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlTree.java406 * Generates a LINK tag with the rel, type, href and title attributes.
408 * @param rel relevance of the link
414 public static HtmlTree LINK(String rel, String type, String href, String title) { argument
416 htmltree.addAttr(HtmlAttr.REL, nullCheck(rel));
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentSkipListMap.java1325 * @param rel the relation -- OR'ed combination of EQ, LT, GT
1328 Node<K,V> findNear(K kkey, int rel) { argument
1335 return ((rel & LT) == 0 || b.isBaseHeader()) ? null : b;
1347 if ((c == 0 && (rel & EQ) != 0) ||
1348 (c < 0 && (rel & LT) == 0))
1350 if ( c <= 0 && (rel & LT) != 0)
1361 * @param rel the relation -- OR'ed combination of EQ, LT, GT
1364 AbstractMap.SimpleImmutableEntry<K,V> getNear(K key, int rel) { argument
1366 Node<K,V> n = findNear(key, rel);
2666 private Map.Entry<K,V> getNearEntry(K key, int rel) { argument
2689 getNearKey(K key, int rel) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse1.cpp1304 float rel = abs * 100.0F / total; local
1306 float rnodes = _bytecodes_parsed[i] == 0 ? 0 : rel * nodes;
1309 if (cutoff <= rel) {
1310 tty->print_cr("%10d %7.2f%% %6.1f %6.2f %6.1f %6.1f %s", abs, rel, nodes, rnodes, xforms, values, name_for_bc(i));
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapCtx.java1293 private String fullyQualifiedName(Name rel) { argument
1294 return rel.isEmpty()
1296 : fullyQualifiedName(rel.get(0));
1299 private String fullyQualifiedName(String rel) { argument
1300 return (concatNames(rel, currentDN));

Completed in 57 milliseconds