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

/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/ojluni/src/main/java/java/text/
H A DIcuIteratorWrapper.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
50 * <p>A substitution rule defines a name that can be used in place of an expression. It
62 * expression defines a set of characters (the &quot;<em>ignore characters</em>&quot;) that
79 * <td width="94%">Specifies that the expression preceding the asterisk may occur any number
84 * <td width="94%">Encloses a sequence of characters that is optional.</td>
107 * overlap, * will match the longest sequence of characters that match the expression before
116 * match any single character that is specified in the [] expression.&nbsp; For more on the
125 * will actually go before the whitespace).&nbsp; Expressions that do
238 equals(Object that) argument
[all...]
H A DCollator.java10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * version 2 for more details (a copy is included in the LICENSE file that
64 * if you need to modify that strategy.
107 * a <code>String</code> to a series of bits that can be compared bitwise
172 * will only produce correct results for languages that do not use accents.
180 * set, characters that are canonical variants according to Unicode
197 * characters to be collated, but also characters that have special formats
282 * Transforms the String into a series of bits that can be compared bitwise
322 // The value for IDENTICAL in ICU differs from that use
453 equals(Object that) argument
[all...]
/libcore/ojluni/src/main/java/java/nio/
H A DDoubleBuffer.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
40 * {@link #put(double) </code><i>put</i><code>} methods that read and write
44 * methods that transfer contiguous sequences of doubles from this buffer
48 * methods that transfer contiguous sequences of doubles from a
71 * <p> Methods in this class that do not otherwise have a value to return are
132 * that is, modifications to the buffer will cause the array to be modified
139 * @param array The array that will back the new buffer
165 * that i
687 compareTo(DoubleBuffer that) argument
[all...]
H A DFloatBuffer.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
40 * {@link #put(float) </code><i>put</i><code>} methods that read and write
44 * methods that transfer contiguous sequences of floats from this buffer
48 * methods that transfer contiguous sequences of floats from a
72 * <p> Methods in this class that do not otherwise have a value to return are
133 * that is, modifications to the buffer will cause the array to be modified
140 * @param array The array that will back the new buffer
166 * that i
688 compareTo(FloatBuffer that) argument
[all...]
H A DIntBuffer.java10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * version 2 for more details (a copy is included in the LICENSE file that
41 * {@link #put(int) </code><i>put</i><code>} methods that read and write
45 * methods that transfer contiguous sequences of ints from this buffer
49 * methods that transfer contiguous sequences of ints from an
74 * <p> Methods in this class that do not otherwise have a value to return are
135 * that is, modifications to the buffer will cause the array to be modified
142 * @param array The array that will back the new buffer
168 * that i
690 compareTo(IntBuffer that) argument
[all...]
H A DLongBuffer.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
40 * {@link #put(long) </code><i>put</i><code>} methods that read and write
44 * methods that transfer contiguous sequences of longs from this buffer
48 * methods that transfer contiguous sequences of longs from a
72 * <p> Methods in this class that do not otherwise have a value to return are
133 * that is, modifications to the buffer will cause the array to be modified
140 * @param array The array that will back the new buffer
166 * that i
688 compareTo(LongBuffer that) argument
[all...]
H A DShortBuffer.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
40 * {@link #put(short) </code><i>put</i><code>} methods that read and write
44 * methods that transfer contiguous sequences of shorts from this buffer
48 * methods that transfer contiguous sequences of shorts from a
73 * <p> Methods in this class that do not otherwise have a value to return are
134 * that is, modifications to the buffer will cause the array to be modified
141 * @param array The array that will back the new buffer
167 * that i
689 compareTo(ShortBuffer that) argument
[all...]
H A DCharBuffer.java10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * version 2 for more details (a copy is included in the LICENSE file that
47 * {@link #put(char) </code><i>put</i><code>} methods that read and write
51 * methods that transfer contiguous sequences of chars from this buffer
55 * methods that transfer contiguous sequences of chars from a
79 * <p> This class implements the {@link CharSequence} interface so that
84 * <p> Methods in this class that do not otherwise have a value to return are
159 * that is, modifications to the buffer will cause the array to be modified
166 * @param array The array that wil
871 compareTo(CharBuffer that) argument
[all...]
H A DByteBuffer.java10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * version 2 for more details (a copy is included in the LICENSE file that
42 * {@link #put(byte) </code><i>put</i><code>} methods that read and write
46 * methods that transfer contiguous sequences of bytes from this buffer
50 * methods that transfer contiguous sequences of bytes from a
55 * and {@link #putChar(char) </code><i>put</i><code>} methods that read and
92 * obvious. It is therefore recommended that direct buffers be allocated
93 * primarily for large, long-lived buffers that are subject to the underlying
102 * of memory then an attempt to access that regio
871 compareTo(ByteBuffer that) argument
[all...]
/libcore/ojluni/src/main/java/java/nio/charset/
H A DCharset.java10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * version 2 for more details (a copy is included in the LICENSE file that
64 * constructing a map that contains every charset for which support is
107 * is not a legal charset name. Charset names are not case-sensitive; that is,
119 * <p><a name="hn">Some charsets have an <i>historical name</i> that is defined for
139 * ensure compatibility it is recommended that no alias ever be removed from a
140 * charset, and that if the canonical name of a charset is changed then its
222 * In that document a <i>charset</i> is defined as the combination of
251 * character sets that i
927 compareTo(Charset that) argument
[all...]
/libcore/ojluni/src/main/java/sun/security/x509/
H A DX509CRLEntryImpl.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
332 * Return true if a critical extension is found that is
347 * Object that are marked critical.
368 * Object that are marked critical.
388 * by ".", that means,<br>
519 public int compareTo(X509CRLEntryImpl that) { argument
520 int compSerial = getSerialNumber().compareTo(that.getSerialNumber());
526 byte[] thatEncoded = that
[all...]
/libcore/ojluni/src/main/java/java/lang/invoke/
H A DMethodType.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
66 * are systematically presented in two versions, so that both Java arrays and
119 * The parameters are reversed for this constructor, so that is is not accidentally used.
137 * that any Java method can receive in its argument list.
762 private boolean equals(MethodType that) { argument
763 return this.rtype == that.rtype
764 && Arrays.equals(this.ptypes, that.ptypes);
871 * 1. interfaces are unchecked (that i
[all...]
/libcore/ojluni/src/main/java/java/net/
H A DURI.java10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * version 2 for more details (a copy is included in the LICENSE file that
76 * <p> An <i>absolute</i> URI specifies a scheme; a URI that is not absolute is
91 * scheme-specific part begins with a slash character, or a relative URI, that
92 * is, a URI that does not specify a scheme. Some examples of hierarchical
123 * authority component that does not parse in this way is considered to be
128 * relative. The path of a hierarchical URI that is either absolute or
150 * empty string as its value; this is not equivalent to that component being
226 * that mus
1540 compareTo(URI that) argument
[all...]

Completed in 231 milliseconds