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

/libcore/luni/src/main/java/java/util/
H A DEnumSet.java6 * the License. You may obtain a copy of the License at
34 * Creates an empty enum set. The permitted elements are of type
39 * @return an empty enum set, with permitted elements of type {@code
56 * Creates an enum set filled with all the enum elements of the specified
72 * Creates an enum set. All the contained elements are of type
141 * six overloadings of the method. They accept from one to five elements
142 * respectively. The sixth one receives an arbitrary number of elements, and
143 * runs slower than those that only receive a fixed number of elements.
151 public static <E extends Enum<E>> EnumSet<E> of(E e) { method in class:EnumSet
159 * six overloadings of th
171 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2) { method in class:EnumSet
193 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3) { method in class:EnumSet
217 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4) { method in class:EnumSet
243 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4, E e5) { method in class:EnumSet
263 public static <E extends Enum<E>> EnumSet<E> of(E start, E... others) { method in class:EnumSet
[all...]
/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicMarkableReference.java2 * Written by Doug Lea with assistance from members of JCP JSR-166
19 * @param <V> The type of object referred to by this reference
30 static <T> Pair<T> of(T reference, boolean mark) { method in class:AtomicMarkableReference.Pair
45 pair = Pair.of(initialRef, initialMark);
49 * Returns the current value of the reference.
51 * @return the current value of the reference
58 * Returns the current value of the mark.
60 * @return the current value of the mark
67 * Returns the current values of both the reference and the mark.
70 * @param markHolder an array of siz
[all...]
H A DAtomicStampedReference.java2 * Written by Doug Lea with assistance from members of JCP JSR-166
19 * @param <V> The type of object referred to by this reference
30 static <T> Pair<T> of(T reference, int stamp) { method in class:AtomicStampedReference.Pair
45 pair = Pair.of(initialRef, initialStamp);
49 * Returns the current value of the reference.
51 * @return the current value of the reference
58 * Returns the current value of the stamp.
60 * @return the current value of the stamp
67 * Returns the current values of both the reference and the stamp.
70 * @param stampHolder an array of siz
[all...]
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...
/libcore/luni/src/main/java/java/lang/
H A DCharacter.java7 * the License. You may obtain a copy of the License at
25 * number of utility methods for working with characters.
28 * See the <a href="../util/Locale.html#locale_data">Locale data</a> section of
29 * the {@code Locale} documentation for details of the Unicode versions implemented by current
35 * <p>Unicode characters are referred to as <i>code points</i>. The range of valid
40 * supplementary range. A pair of {@code char} values that represent a
41 * supplementary character are made up of a <i>high surrogate</i> with a value
42 * range of 0xD800 to 0xDBFF and a <i>low surrogate</i> with a value range of
46 * point or a UTF-16 unit that's part of
1503 public static UnicodeBlock of(char c) { method in class:Character.UnicodeBlock
1511 public static UnicodeBlock of(int codePoint) { method in class:Character.UnicodeBlock
[all...]

Completed in 155 milliseconds