Searched defs:getValue (Results 1 - 25 of 35) sorted by relevance

12

/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 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 DStackValueRecord.java93 public Object getValue(); method in interface:StackValueRecord
H A DSumValue.java77 getValue() method in class:SumValue
79 return (Long)super.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 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 DAggregationRecord.java142 * #getValue()}.
164 getValue() method in class:AggregationRecord
H A DKernelStackRecord.java233 getValue() method in class:KernelStackRecord
H A DKernelSymbolRecord.java162 getValue() method in class:KernelSymbolRecord
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 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 DUserStackRecord.java164 getValue() method in class:UserStackRecord
166 return stackRecord.getValue();
/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/service/pools/
H A DHRTime.java78 .subtract(older.getValue()))));
84 public UnsignedInt64 getValue() method in class:HRTime
100 return (value.compareTo(other.getValue()));
/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...]
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmAuthOptions.java53 switch (o.getValue()) {
74 if (d.getValue() != JOptionPane.OK_OPTION)
90 if (m.getValue() != JOptionPane.OK_OPTION)
250 public int getValue() { method in class:pmAuthLogin
400 public int getValue() { method in class:pmAuthMessage
H A DpmLogDisplay.java177 public int getValue() { method in class:pmLogDisplay
178 // Debug.message("getValue");
H A DpmMessageDialog.java170 public int getValue() { method in class:pmMessageDialog
196 System.out.println("Dialog returns " + d.getValue());
H A DpmOKCancelDialog.java205 public int getValue() { method in class:pmOKCancelDialog
228 System.out.println("Dialog returns " + d.getValue());
H A DpmOther.java190 public int getValue() { method in class:pmOther
222 Debug.message("CLNT:pmOther: Dialog login returns " + d.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);

Completed in 96 milliseconds

12