Searched refs:rel (Results 1 - 13 of 13) 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/jdk/src/share/classes/java/awt/
H A DGradientPaintContext.java190 float rel = i / 256.0f;
192 (((int) (a1 + da * rel)) << 24) |
193 (((int) (r1 + dr * rel)) << 16) |
194 (((int) (g1 + dg * rel)) << 8) |
195 (((int) (b1 + db * 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/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLDocument.java2969 // Select link if rel==stylesheet.
2970 // Otherwise if rel==alternate stylesheet and
2973 String rel = (String)attr.getAttribute(HTML.Attribute.REL);
2984 if (rel != null) {
2985 rel = rel.toLowerCase();
2988 (rel.equals("stylesheet") ||
2989 (rel.equals("alternate stylesheet") &&
3002 * attributes contains an attribute for 'rel' with value
3008 String rel
[all...]
/openjdk7/jdk/make/docs/
H A DMakefile1169 rel-coredocs: sanitycheckcoredocs
1172 rel-docs: rel-coredocs $(ALL_OTHER_TARGETS)
1228 .PHONY: all docs coredocs rel-docs echovalues otherdocs rel-coredocs \
/openjdk7/jdk/src/share/classes/javax/management/relation/
H A DRelationService.java2647 Object rel;
2649 rel = myRelId2ObjMap.get(relationId);
2652 if (rel == null) {
2659 return rel;
3017 Object rel = getRelation(relationId);
3019 if (rel != null) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/pipe/
H A DAbstractSchemaValidationTube.java200 URI rel = (baseURI != null)
203 doc = docs.get(rel.toString());
/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/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));
/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/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DWalkerFactory.java911 StepPattern rel = pat.getRelativePathPattern();
913 attrPat.setRelativePathPattern(rel);

Completed in 372 milliseconds