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

/openjdk7/langtools/test/tools/javac/generics/inference/6650759/
H A DT6650759b.java6 * under the terms of the GNU General Public License version 2 only, as
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * You should have received a copy of the GNU General Public License version
28 * @summary Inference of formal type parameter (unused in formal parameters) is not performed
44 static <X extends A<X, Y>, Y extends B<X>, W extends C<X, Y>> D<X, Y> of(W w) { method in class:T6650759b.E
50 return (Z) E.of(w);
/openjdk7/langtools/src/share/classes/javax/annotation/processing/
H A DCompletions.java6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
70 * Returns a completion of the value and message.
72 * @param value the text of the completion
74 * @return a completion of the provided value and message
76 public static Completion of(String value, String message) { method in class:Completions
81 * Returns a completion of the value and an empty message
83 * @param value the text of the completion
84 * @return a completion of th
86 public static Completion of(String value) { method in class:Completions
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DPropertyState.java5 * under the terms of the GNU General Public License version 2 only, as
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * You should have received a copy of the GNU General Public License version
51 public static PropertyState of(Status status) { method in class:PropertyState
H A DFeatureState.java5 * under the terms of the GNU General Public License version 2 only, as
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * You should have received a copy of the GNU General Public License version
53 public static FeatureState of(Status status) { method in class:FeatureState
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DPair.java6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
30 * <p><b>This is NOT part of any supported API.
66 public static <A,B> Pair<A,B> of(A a, B b) { method in class:Pair
H A DList.java6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
38 * immutable, the only exception being the incremental construction of
46 * <p><b>This is NOT part of any supported API.
53 /** The first element of the list, supposed to be immutable.
57 /** The remainder of the list except for its first element, supposed
86 /** Construct a list consisting of given element.
88 public static <A> List<A> of(A x1) { method in class:List
92 /** Construct a list consisting of give
94 public static <A> List<A> of(A x1, A x2) { method in class:List
100 public static <A> List<A> of(A x1, A x2, A x3) { method in class:List
107 public static <A> List<A> of(A x1, A x2, A x3, A... rest) { method in class:List
[all...]
H A DListBuffer.java6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
36 * <p><b>This is NOT part of any supported API.
47 public static <T> ListBuffer<T> of(T x) { method in class:ListBuffer
53 /** The list of elements of this buffer.
57 /** A pointer pointing to the last, sentinel element of `elems'.
61 /** The number of element in this buffer.
82 /** Return the number of element
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacterData.java6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
72 // Note: performance of this "fast-path" code may be sub-optimal
74 // Should revisit after optimization of table initialization.
76 static final CharacterData of(int ch) { method in class:CharacterData
H A DCharacter.java6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
34 * The {@code Character} class wraps a value of the primitive
35 * type {@code char} in an object. An object of type
45 * The methods and data of class {@code Character} are defined by
46 * the information in the <i>UnicodeData</i> file that is part of the
64 * than 16 bits. The range of legal <em>code point</em>s is now
68 * definition</i></a> of the U+<i>n</i> notation in the Unicode
71 * <p><a name="BMP">The set of character
2975 public static UnicodeBlock of(char c) { method in class:Character.UnicodeBlock
2995 public static UnicodeBlock of(int codePoint) { method in class:Character.UnicodeBlock
4292 public static UnicodeScript of(int codePoint) { method in class:Character.UnicodeScript
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DEnumSet.java6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
31 * A specialized {@link Set} implementation for use with enum types. All of
35 * extremely compact and efficient. The space and time performance of this
45 * and it may or may not show the effects of any modifications to the set that
50 * presence of a null element or to remove one will, however, function
55 * least one of the threads modifies the set, it should be synchronized
71 * <p>This class is a member of the
84 * The class of al
203 public static <E extends Enum<E>> EnumSet<E> of(E e) { method in class:EnumSet
223 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2) { method in class:EnumSet
245 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3) { method in class:EnumSet
269 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4) { method in class:EnumSet
295 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4, method in class:EnumSet
321 public static <E extends Enum<E>> EnumSet<E> of(E first, E... rest) { method in class:EnumSet
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicMarkableReference.java5 * under the terms of the GNU General Public License version 2 only, as
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * You should have received a copy of the GNU General Public License version
28 * However, the following notice accompanied the original version of this
31 * Written by Doug Lea with assistance from members of JCP JSR-166
48 * @param <V> The type of object referred to by this reference
59 static <T> Pair<T> of(T reference, boolean mark) { method in class:AtomicMarkableReference.Pair
74 pair = Pair.of(initialRef, initialMark);
78 * Returns the current value of the reference.
80 * @return the current value of th
[all...]
H A DAtomicStampedReference.java5 * under the terms of the GNU General Public License version 2 only, as
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * You should have received a copy of the GNU General Public License version
28 * However, the following notice accompanied the original version of this
31 * Written by Doug Lea with assistance from members of JCP JSR-166
48 * @param <V> The type of object referred to by this reference
59 static <T> Pair<T> of(T reference, int stamp) { method in class:AtomicStampedReference.Pair
74 pair = Pair.of(initialRef, initialStamp);
78 * Returns the current value of the reference.
80 * @return the current value of th
[all...]
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDisabledAlgorithmConstraints.java6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
50 * for the syntax of the disabled algorithm string.
116 // check the items of the algorithm
279 // remove double quote marks from beginning/end of the property
325 KeySizeConstraint.Operator.of(matcher.group(2));
380 static Operator of(String s) { method in class:DisabledAlgorithmConstraints.KeySizeConstraint.Operator
444 return true; // we don't allow any key of size 0.
/openjdk7/langtools/test/tools/javac/types/
H A DBoxingConversionTest.java6 * under the terms of the GNU General Public License version 2 only, as
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * You should have received a copy of the GNU General Public License version
27 * @summary Add test library to simplify the task of writing automated type-system tests
61 ASSIGNMENT_CONVERSION(EnumSet.of(Result.OK_BOTH, Result.OK_ASSIGN_ONLY)) {
67 METHOD_CONVERSION(EnumSet.of(Result.OK_BOTH)) {
H A DPrimitiveConversionTest.java6 * under the terms of the GNU General Public License version 2 only, as
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * You should have received a copy of the GNU General Public License version
27 * @summary Add test library to simplify the task of writing automated type-system tests
61 ASSIGNMENT_CONVERSION(EnumSet.of(Result.OK_BOTH, Result.OK_ASSIGN_ONLY)) {
67 METHOD_CONVERSION(EnumSet.of(Result.OK_BOTH)) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DHeaderList.java6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
57 * A list of {@link Header}s on a {@link Message}.
68 * expected to preserve the order of headers in the input
76 * track of headers that are understood and headers that are not.
93 * <li>Use one of the <tt>getXXX</tt> methods that take a
99 * <tt>markAsUnderstand</tt> to true, to do the obtaining of a header
109 * Intuitively speaking, at the end of the day, if a header is not
111 * will happen. The actual implementation of th
763 fillRequestAddressingHeaders(@otNull Packet packet, @NotNull AddressingVersion av, @NotNull SOAPVersion sv, @NotNull OneWayFeature of, @NotNull String action) argument
[all...]
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbytes.h6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
57 static bytes of(byte* ptr, size_t len) { function in struct:bytes
79 #define BYTES_OF(var) (bytes::of((byte*)&(var), sizeof(var)))
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DParser.java6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
140 * match one of the token values in the given set of key words
141 * token is assumed to be of type TT_WORD, and the set is assumed
156 * of characters.
194 * of characters between matching quote characters.
486 private void optionList(OptionFormat of) argument
499 of
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCoding.java6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
35 * Define the conversions between sequences of small integers and raw bytes.
36 * This is a schema of encodings which incorporates varying lengths,
37 * varying degrees of length variability, and varying amounts of signed-ness.
57 Therefore, if L==0, the code always has the full length of B bytes.
59 (Also, if L==128, the high bit of each byte acts signals the presence
60 of
404 private static synchronized Coding of(int B, int H, int S, int del) { method in class:Coding
412 public static Coding of(int B, int H) { method in class:Coding
416 public static Coding of(int B, int H, int S) { method in class:Coding
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DObjectHeap.java6 * under the terms of the GNU General Public License version 2 only, as
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * You should have received a copy of the GNU General Public License version
156 // Get commonly used sizes of basic types
170 /** Comparison operation for oops, either or both of which may be null */
176 // Cached sizes of basic types
248 public void iterate(HeapVisitor visitor, ObjectFilter of) { argument
249 iterateLiveRegions(collectLiveRegions(), visitor, of);
252 /** iterate objects of given Klass. param 'includeSubtypes' tells whether to
253 * include objects of subtype
426 iterateLiveRegions(List liveRegions, HeapVisitor visitor, ObjectFilter of) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
123 // However, they are not removed before the end of the main() method.
206 KEYPASSWD("Changes.the.key.password.of.an.entry",
214 PRINTCERT("Prints.the.content.of.a.certificate",
216 PRINTCERTREQ("Prints.the.content.of.a.certificate.request",
218 PRINTCRL("Prints.the.content.of.a.CRL.file",
220 STOREPASSWD("Changes.the.store.password.of.a.keystore",
256 ALIAS("alias", "<alias>", "alias.name.of
4241 public static <A,B> Pair<A,B> of(A a, B b) { method in class:Pair
[all...]

Completed in 155 milliseconds