Searched defs:baseline (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/share/vm/services/
H A DmemBaseline.cpp112 // baseline malloc'd memory records, generate overall summary and summaries by
165 // baseline mmap'd memory records, generate overall summary and summaries by
189 // baseline malloc'd memory by callsites, but only the callsites with memory allocation
215 // baseline memory that is totaled over 1 KB
251 // baseline mmap'd memory by callsites
358 // baseline a snapshot. If summary_only = false, memory usages aggregated by
362 bool MemBaseline::baseline(MemSnapshot& snapshot, bool summary_only) { function in class:MemBaseline
H A DmemReporter.cpp42 void BaselineReporter::report_baseline(const MemBaseline& baseline, bool summary_only) { argument
46 amount_in_current_scale(baseline.total_malloc_amount() + baseline.total_reserved_amount()),
47 amount_in_current_scale(baseline.total_malloc_amount() + baseline.total_committed_amount()));
49 _outputer.num_of_classes(baseline.number_of_classes());
50 _outputer.num_of_threads(baseline.number_of_threads());
52 report_summaries(baseline);
54 report_virtual_memory_map(baseline);
55 report_callsites(baseline);
60 report_summaries(const MemBaseline& baseline) argument
78 report_virtual_memory_map(const MemBaseline& baseline) argument
97 report_callsites(const MemBaseline& baseline) argument
[all...]
H A DmemTracker.cpp184 // shared baseline and snapshot are the only objects needed to
187 // cleanup baseline data and snapshot
503 // baseline current memory snapshot
504 bool MemTracker::baseline() { function in class:MemTracker
508 return _baseline.baseline(*snapshot, false);
515 MemBaseline baseline; local
518 if (snapshot != NULL && baseline.baseline(*snapshot, summary_only)) {
520 reporter.report_baseline(baseline, summary_only);
571 // compare memory usage between current snapshot and baseline
575 MemBaseline baseline; local
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpringLayout.java230 * Specifies the baseline of a component.
327 private Spring baseline; field in class:SpringLayout.Constraints
332 // Used for baseline calculations
447 private int getHeightFromBaseLine(int baseline) { argument
451 if (prefBaseline == baseline) {
452 // If prefBaseline < 0, then no baseline, assume preferred
454 // If prefBaseline == baseline, then specified baseline
455 // matches preferred baseline, return preferred height
458 // Valid baseline
710 setBaseline(Spring baseline) argument
[all...]
H A DGroupLayout.java163 * // the contents along the baseline. The first parallel group contains
184 * to align their components along the baseline. The first parallel
328 * their baseline.
639 * axis. A {@code ParallelGroup} created with a baseline alignment
643 * the behavior of baseline groups.
668 * elements along the baseline.
671 * @param anchorBaselineToTop whether the baseline is anchored to
1746 * In order to align a {@code SequentialGroup} along the baseline
1747 * of a baseline aligned {@code ParallelGroup} you need to specify
1749 * determine the baseline
2944 private int baseline = -1; field in class:GroupLayout.ComponentSpring
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DSnapshot.java73 // new objects relative to a baseline - lazily initialized
341 public void markNewRelativeTo(Snapshot baseline) { argument
349 JavaThing other = baseline.findThing(t.getId());
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLayout.java110 * broken into subruns sharing a common baseline,
118 * <code>TextLayout</code> object's baseline with its left edge. Also,
217 * multiple runs with different rotations can cause the baseline to
220 * baseline-relative coordinates' (e.g. ascent, advance), and others
222 * baseline-relative coordinates map the 'x' coordinate to the
223 * distance along the baseline, (positive x is forward along the
224 * baseline), and the 'y' coordinate to a distance along the
225 * perpendicular to the baseline at 'x' (postitive y is 90 degrees
226 * clockwise from the baseline vector). Values in standard
230 * measurement-related APIs are in baseline
242 private byte baseline; field in class:TextLayout
549 TextLayout(TextLine textLine, byte baseline, float[] baselineOffsets, float justifyRatio) argument
[all...]
H A DTextLine.java172 byte baseline = (byte)cm.baselineIndex;
174 if (baseline >= 0) {
175 float baselineOffset = fBaselineOffsets[baseline];
304 // locs[locs.length - 1] = 0; // final offset is always back on baseline
529 // baseline
1073 // a null rotation (e.g. the baseline rotation goes away when a graphic
1263 static float[] getNormalizedOffsets(float[] baselineOffsets, byte baseline) { argument
1265 if (baselineOffsets[baseline] != 0) {
1266 float base = baselineOffsets[baseline];
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java189 private int baseline; field in class:BasicTabbedPaneUI
614 * Returns the baseline.
623 int baseline = calculateBaselineIfNecessary();
624 if (baseline != -1) {
630 baseline += insets.top + tabAreaInsets.top;
631 return baseline;
633 baseline = height - insets.bottom -
634 tabAreaInsets.bottom - maxTabHeight + baseline;
635 return baseline;
638 baseline
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java181 private int baseline; field in class:AquaTabbedPaneCopyFromBasicUI
585 * Returns the baseline.
594 int baseline = calculateBaselineIfNecessary();
595 if (baseline != -1) {
601 baseline += insets.top + tabAreaInsets.top;
602 return baseline;
604 baseline = height - insets.bottom - tabAreaInsets.bottom - maxTabHeight + baseline;
605 return baseline;
608 baseline
[all...]

Completed in 74 milliseconds