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

/libcore/luni/src/main/java/java/lang/
H A DBoolean.java37 * The {@link Class} object that represents the primitive type {@code
43 // Note: Boolean.TYPE 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 compare(value, that
[all...]
/libcore/luni/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
218 andNot(BigInteger val, BigInteger that) argument
250 andNotPositive(BigInteger val, BigInteger that) argument
371 andNotNegative(BigInteger val, BigInteger that) argument
425 or(BigInteger val, BigInteger that) argument
476 orNegative(BigInteger val, BigInteger that) argument
569 xor(BigInteger val, BigInteger that) argument
622 xorNegative(BigInteger val, BigInteger that) argument
[all...]
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 340 milliseconds