Searched defs:summary (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcTraceSend.cpp164 static TraceStructVirtualSpace to_trace_struct(const VirtualSpaceSummary& summary) { argument
166 space.set_start((TraceAddress)summary.start());
167 space.set_committedEnd((TraceAddress)summary.committed_end());
168 space.set_committedSize(summary.committed_size());
169 space.set_reservedEnd((TraceAddress)summary.reserved_end());
170 space.set_reservedSize(summary.reserved_size());
174 static TraceStructObjectSpace to_trace_struct(const SpaceSummary& summary) { argument
176 space.set_start((TraceAddress)summary.start());
177 space.set_end((TraceAddress)summary.end());
178 space.set_used(summary
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DSummaryTab.java64 String summary; field in class:SummaryTab.Result
95 info.setText(result.summary);
315 result.summary = buf.toString();
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLTableElement.java141 * summary attribute definition in HTML 4.0.
144 public void setSummary(String summary); argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlStyle.java70 summary, enum constant in enum:HtmlStyle
H A DHtmlTree.java535 * Generates a Table tag with border, width and summary attributes and
540 * @param summary summary for the table
544 public static HtmlTree TABLE(int border, int width, String summary, argument
549 htmltree.addAttr(HtmlAttr.SUMMARY, nullCheck(summary));
555 * cellspacing and summary attributes and some content.
561 * @param summary summary for the table
566 int cellSpacing, String summary, Content body) {
573 htmltree.addAttr(HtmlAttr.SUMMARY, nullCheck(summary));
565 TABLE(HtmlStyle styleClass, int border, int cellPadding, int cellSpacing, String summary, Content body) argument
588 TABLE(int border, int cellPadding, int cellSpacing, String summary, Content body) argument
[all...]
H A DHtmlWriter.java1082 * CELLPADDING="cellpadding" CELLSPACING="cellspacing" SUMMARY="summary"> tag.
1088 * @param summary Table summary.
1091 int cellspacing, String summary) {
1097 "\" SUMMARY=\"" + summary + "\">");
1118 * CELLSPACING="cellspacing" SUMMARY="summary"> tag.
1123 * @param summary Table summary.
1125 public void table(int border, int cellpadding, int cellspacing, String summary) { argument
1130 "\" SUMMARY=\"" + summary
1090 table(int border, String width, int cellpadding, int cellspacing, String summary) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp451 NumberSeq summary; local
458 summary.add((double)count);
461 st->print_cr("Number of buckets : %7d", summary.num());
462 st->print_cr("Average bucket size : %7.0f", summary.avg());
463 st->print_cr("Variance of bucket size : %7.0f", summary.variance());
464 st->print_cr("Std. dev. of bucket size: %7.0f", summary.sd());
465 st->print_cr("Maximum bucket size : %7.0f", summary.maximum());
843 NumberSeq summary; local
850 summary.add((double)count);
853 st->print_cr("Number of buckets : %7d", summary
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java338 * @param pd The link will be to the "package-summary.html" page for this package
345 return getHyperLink(pathString(pd, "package-summary.html"), "", label, "", target);
809 * Print link to the "overview-summary.html" page.
813 printHyperLink(relativePath + "overview-summary.html", "",
819 * Get link to the "overview-summary.html" page.
825 "overview-summary.html", "", overviewLabel, "", "");
859 * Print link to the "package-summary.html" page for the package passed.
871 * Get link to the "package-summary.html" page for the package passed.
1262 * Print the Html table tag for the index summary tables. The table tag
1271 * Print the Html table tag for the index summary table
1275 tableIndexSummary(String summary) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java195 * href="package-summary.html#threading">Swing's Threading
7329 private Accessible summary; field in class:JTable.AccessibleJTable
7371 * Returns the summary description of the table.
7373 * @return the summary description of the table
7377 return this.summary;
7381 * Sets the summary description of the table.
7383 * @param a the summary description of the table
7387 Accessible oldSummary = summary;
7388 this.summary = a;
7390 oldSummary, this.summary);
[all...]

Completed in 139 milliseconds