Home | History | Annotate | Download | only in value

Lines Matching refs:equal

140      * Returns whether this ReferenceValue is equal to the given other
144 public abstract int equal(ReferenceValue other);
167 return -equal(other);
184 * Returns whether this ReferenceValue is equal to the given other
188 public int equal(TypedReferenceValue other)
190 return equal((ReferenceValue)other);
208 * Returns whether this ReferenceValue is equal to the given other
212 public int equal(IdentifiedReferenceValue other)
214 return equal((TypedReferenceValue)other);
231 * Returns whether this ReferenceValue is equal to the given other
235 public int equal(ArrayReferenceValue other)
237 return equal((TypedReferenceValue)other);
255 * Returns whether this ReferenceValue is equal to the given other
259 public int equal(IdentifiedArrayReferenceValue other)
261 return equal((ArrayReferenceValue)other);
279 * Returns whether this ReferenceValue is equal to the given other
283 public int equal(DetailedArrayReferenceValue other)
285 return equal((IdentifiedArrayReferenceValue)other);