Searched defs:that (Results 1 - 3 of 3) sorted by relevance

/dalvik/libcore/security/src/main/java/org/apache/harmony/security/
H A DUnresolvedPrincipal.java93 public boolean equals(Object that) { argument
94 if (that instanceof UnresolvedPrincipal) {
95 UnresolvedPrincipal up = (UnresolvedPrincipal) that;
99 if (that instanceof Principal) {
100 return implies((Principal) that);
/dalvik/libcore/luni/src/main/java/java/lang/
H A DBoolean.java37 * The {@link Class} object that represents the primitive type {@code
43 // Note: This can't be set to "boolean.class", since *that* is
47 * The {@code Boolean} object that represents the primitive value
53 * The {@code Boolean} object that represents the primitive value
113 * @param that
115 * @return 0 if the value of this boolean and the value of {@code that} are
117 * {@code true} and the value of {@code that} is {@code false}; a
119 * the value of {@code that} is {@code true}.
123 public int compareTo(Boolean that) { argument
124 return value == that
[all...]
/dalvik/libcore/math/src/main/java/java/math/
H A DLogical.java33 /** Just to denote that this class can't be instantiated. */
82 static BigInteger and(BigInteger val, BigInteger that) { argument
83 if (that.sign == 0 || val.sign == 0) {
86 if (that.equals(BigInteger.MINUS_ONE)){
90 return that;
94 if (that.sign > 0) {
95 return andPositive(val, that);
97 return andDiffSigns(val, that);
100 if (that.sign > 0) {
101 return andDiffSigns(that, va
111 andPositive(BigInteger val, BigInteger that) argument
224 andNot(BigInteger val, BigInteger that) argument
256 andNotPositive(BigInteger val, BigInteger that) argument
383 andNotNegative(BigInteger val, BigInteger that) argument
439 or(BigInteger val, BigInteger that) argument
491 orNegative(BigInteger val, BigInteger that) argument
588 xor(BigInteger val, BigInteger that) argument
643 xorNegative(BigInteger val, BigInteger that) argument
[all...]

Completed in 133 milliseconds