Searched refs:getValue (Results 1 - 25 of 54) sorted by relevance

123

/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DAggregationValue.java51 public Number getValue(); method in interface:AggregationValue
H A DValueRecord.java41 public abstract Object getValue(); method in interface:ValueRecord
H A DStackValueRecord.java93 public Object getValue(); method in interface:StackValueRecord
H A DMaxValue.java77 getValue() method in class:MaxValue
79 return (Long)super.getValue();
H A DMinValue.java77 getValue() method in class:MinValue
79 return (Long)super.getValue();
H A DSumValue.java77 getValue() method in class:SumValue
79 return (Long)super.getValue();
H A DCountValue.java74 long count = super.getValue().longValue();
89 getValue() method in class:CountValue
91 return (Long)super.getValue();
H A DAvgValue.java88 long average = super.getValue().longValue();
98 getValue().toString() + " is not the expected " +
115 getValue() method in class:AvgValue
117 return (Long)super.getValue();
H A DLogDistribution.java129 getValue() method in class:LogDistribution
147 * Compares the {@code double} values of {@link #getValue()} for
155 Number v1 = getValue();
156 Number v2 = d.getValue();
H A DAbstractAggregationValue.java62 getValue() method in class:AbstractAggregationValue
74 * both values return equal numbers from {@link #getValue()}.
98 * Gets the string representation of {@link #getValue()}.
100 * @return the string representation of {@link #getValue()} returned
H A DStddevValue.java66 stddev.getValue().longValue(),
187 long stddev = super.getValue().longValue();
197 getValue().toString() + " is not the expected " +
213 getValue() method in class:StddevValue
215 return (Long)super.getValue();
H A DLinearDistribution.java187 getValue() method in class:LinearDistribution
225 * Compares the {@code double} values of {@link #getValue()} for
233 Number v1 = getValue();
234 Number v2 = d.getValue();
H A DLogLinearDistribution.java182 public Number getValue() { method in class:LogLinearDistribution
202 * Compares the {@code double} values of {@link #getValue()} for overall
207 Number v1 = getValue();
208 Number v2 = getValue();
H A DUserStackRecord.java164 getValue() method in class:UserStackRecord
166 return stackRecord.getValue();
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/
H A DHRTime.java78 .subtract(older.getValue()))));
84 public UnsignedInt64 getValue() method in class:HRTime
100 return (value.compareTo(other.getValue()));
H A DElement.java98 name, value.getValue()) == PoolInternal.POC_INVAL) {
128 value.getValue()) == PoolInternal.POC_INVAL) {
151 name, value.getValue()) != PoolInternal.PO_SUCCESS)
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/kstat/
H A DKstat.java72 public native Object getValue(String name) method in class:Kstat
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DStatistic.java60 public Object getValue(); method in interface:Statistic
191 public Object getValue() method in class:AbstractStatistic
251 return ((Double) getValue());
256 return (new Long(((Double) getValue()).longValue()));
261 return (new UnsignedInt64(Long.toString(((Double) getValue()).
339 return (new Double(((Long) getValue()).longValue()));
344 return ((Long) getValue());
349 return (new UnsignedInt64(Long.toString(((Long) getValue()).
427 return (new Double(((UnsignedInt64) getValue()).longValue()));
432 return (new Long(((UnsignedInt64) getValue())
[all...]
H A DExpression.java284 int getValue() method in class:KVOpExpression
314 op != other.getOp() || val != other.getValue())
355 if (getValue() < other.getValue())
358 if (getValue() > other.getValue())
446 String getValue() method in class:KVExpression
485 val.compareTo(other.getValue()) != 0)
521 if (val.compareTo(other.getValue()) == 0)
H A DStatisticList.java532 ((AggregateStatistic)it.next())).getValue();
551 double target = kve.getValue();
622 mean = ((Double)((DoubleStatistic)total).getValue()).
640 double target = kve.getValue();
700 double target = kve.getValue();
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/
H A DTestGetAggregate.java115 value = rec.getValue().getValue().longValue();
123 value = rec.getValue().getValue().longValue();
H A DTestFunctionLookup.java63 address = (Number)tuple.get(0).getValue();
97 address = (Number)tuple.get(0).getValue();
/illumos-gate/usr/src/lib/libdns_sd/java/com/apple/dnssd/
H A DTXTRecord.java201 public byte[] getValue( int index) method in class:TXTRecord
227 /** Converts the result of getValue() to a string in the platform default character set. */
230 byte[] value = this.getValue( index);
242 public byte[] getValue( String forKey) method in class:TXTRecord
249 return this.getValue( i);
253 /** Converts the result of getValue() to a string in the platform default character set.<P>
262 byte[] val = this.getValue( forKey);
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmUtility.java158 if ((l.getValue() != JOptionPane.OK_OPTION) &&
159 (l.getValue() != JOptionPane.CANCEL_OPTION)) {
172 if (l.getValue() == JOptionPane.CANCEL_OPTION) {
/illumos-gate/usr/src/lib/libdtrace_jni/java/docs/examples/
H A DTestTarget.java55 rec.getValue());

Completed in 95 milliseconds

123