Searched refs:outcome (Results 1 - 7 of 7) sorted by relevance

/openjdk10/hotspot/src/share/vm/utilities/
H A DintHisto.hpp34 // assumed (required in this implementation) to have an outcome that is a
36 // to the number of measurements had that outcome.
57 // Create a new, empty table. "est" is an estimate of the maximum outcome
58 // that will be added, and "max" is an outcome such that all outcomes at
61 // Add a measurement with the given outcome to the sequence.
62 void add_entry(int outcome);
63 // Return the number of entries recorded so far with the given outcome.
64 int entries_for_outcome(int outcome);
67 // Return the number of entries recorded so far with the given outcome as
69 double fraction_for_outcome(int outcome) { argument
[all...]
H A DintHisto.cpp34 void IntHistogram::add_entry(int outcome) { argument
35 if (outcome > _max) outcome = _max;
36 int new_count = _elements->at_grow(outcome) + 1;
37 _elements->at_put(outcome, new_count);
41 int IntHistogram::entries_for_outcome(int outcome) { argument
42 return _elements->at_grow(outcome);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/linker/
H A DAdaptationResult.java32 * A result of generating an adapter for a class. A tuple of an outcome and - in case of an error outcome - a list of
38 * We have a successful outcome (adapter class was generated) and four possible error outcomes: superclass is final,
57 private final Outcome outcome; field in class:AdaptationResult
61 AdaptationResult(final Outcome outcome, final RuntimeException cause, final String... messageArgs) { argument
62 this.outcome = outcome;
67 AdaptationResult(final Outcome outcome, final String... messageArgs) { argument
68 this(outcome, null, messageArgs);
72 return outcome;
[all...]
H A DAdaptationException.java32 AdaptationException(final AdaptationResult.Outcome outcome, final String classList) { argument
34 this.adaptationResult = new AdaptationResult(outcome, classList);
H A DJavaAdapterFactory.java303 AdapterInfo(final AdaptationResult.Outcome outcome, final String classList) { argument
304 this(new AdaptationResult(outcome, classList));
/openjdk10/jdk/src/java.base/share/classes/java/util/concurrent/
H A DFutureTask.java80 * transient values of COMPLETING (while outcome is being set) or
104 private Object outcome; // non-volatile, protected by state reads/writes field in class:FutureTask
117 Object x = outcome;
230 outcome = v;
248 outcome = t;
/openjdk10/test/fmw/gtest/src/
H A Dgtest-death-test.cc385 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl
512 // outcome: An enumeration describing how the death test
540 switch (outcome()) {
601 // 5. The parent reads child's output through the pipe (outcome code and
638 // outcome data member.
798 // outcome data member.

Completed in 82 milliseconds