Searched defs:set (Results 126 - 150 of 363) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DSubjectInfoAccessExtension.java75 * get, set, delete methods of Certificate, x509 type.
93 * AccessDescription; the criticality is set to false.
170 public void set(String name, Object obj) throws IOException { method in class:SubjectInfoAccessExtension
H A DSubjectKeyIdentifierExtension.java59 * get, set, delete methods of Certificate, x509 type.
85 * The criticality is set to False.
142 public void set(String name, Object obj) throws IOException { method in class:SubjectKeyIdentifierExtension
/openjdk7/jdk/src/share/classes/sun/util/
H A DBuddhistCalendar.java127 * @param value the value to be set for the given time field.
129 public void set(int field, int value) method in class:BuddhistCalendar
132 super.set(field, value - yearOffset);
134 super.set(field, value);
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DLocaleUtils.java213 static boolean isEmpty(Set<?> set) { argument
214 return set == null || set.isEmpty();
/openjdk7/jdk/test/java/util/Collections/
H A DBigBinarySearch.java53 public Integer set(int i, Integer v) { method in class:BigBinarySearch.SparseIntegerList
82 big.set( 0, -44);
83 big.set( 1, -43);
84 big.set(n-2, 43);
85 big.set(n-1, 44);
96 big.set(i, - big.get(i));
/openjdk7/jdk/test/java/util/concurrent/FutureTask/
H A DDoneTimedGetLoops.java49 public void set(Boolean v) { super.set(v); } method in class:DoneTimedGetLoops.PublicFutureTask
94 normalRef.set(future);
95 future.set(Boolean.TRUE);
102 abnormalRef.set(future);
/openjdk7/jdk/test/sun/misc/
H A DCopyMemory.java47 private static void set(byte[] b, int ofs, int len, int value) { method in class:CopyMemory
62 private static void set(Unsafe unsafe, long addr, int ofs, int len, int value) { method in class:CopyMemory
92 set(b, 0, BUFFER_SIZE, FILLER);
107 set(unsafe, b, 0, BUFFER_SIZE, FILLER);
123 set(b1, 0, BUFFER_SIZE, FILLER);
124 set(b2, 0, BUFFER_SIZE, FILLER2);
128 set(b1, ofs, len, val);
143 set(b1, 0, BUFFER_SIZE, FILLER);
144 set(unsafe, b2, 0, BUFFER_SIZE, FILLER2);
148 set(b
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJvmMemGCEntryMeta.java106 public SnmpValue set(SnmpValue x, long var, Object data) method in class:JvmMemGCEntryMeta
161 // Implements the "set" method defined in "SnmpMibEntry".
166 public void set(SnmpMibSubRequest req, int depth) method in class:JvmMemGCEntryMeta
168 objectserver.set(this,req,depth);
H A DJvmMemManagerEntryMeta.java108 public SnmpValue set(SnmpValue x, long var, Object data) method in class:JvmMemManagerEntryMeta
169 // Implements the "set" method defined in "SnmpMibEntry".
174 public void set(SnmpMibSubRequest req, int depth) method in class:JvmMemManagerEntryMeta
176 objectserver.set(this,req,depth);
H A DJvmMemMgrPoolRelEntryMeta.java106 public SnmpValue set(SnmpValue x, long var, Object data) method in class:JvmMemMgrPoolRelEntryMeta
161 // Implements the "set" method defined in "SnmpMibEntry".
166 public void set(SnmpMibSubRequest req, int depth) method in class:JvmMemMgrPoolRelEntryMeta
168 objectserver.set(this,req,depth);
H A DJvmMemPoolEntryMeta.java180 public SnmpValue set(SnmpValue x, long var, Object data) method in class:JvmMemPoolEntryMeta
379 // Implements the "set" method defined in "SnmpMibEntry".
384 public void set(SnmpMibSubRequest req, int depth) method in class:JvmMemPoolEntryMeta
386 objectserver.set(this,req,depth);
H A DJvmRTBootClassPathEntryMeta.java104 public SnmpValue set(SnmpValue x, long var, Object data) method in class:JvmRTBootClassPathEntryMeta
159 // Implements the "set" method defined in "SnmpMibEntry".
164 public void set(SnmpMibSubRequest req, int depth) method in class:JvmRTBootClassPathEntryMeta
166 objectserver.set(this,req,depth);
H A DJvmRTClassPathEntryMeta.java104 public SnmpValue set(SnmpValue x, long var, Object data) method in class:JvmRTClassPathEntryMeta
159 // Implements the "set" method defined in "SnmpMibEntry".
164 public void set(SnmpMibSubRequest req, int depth) method in class:JvmRTClassPathEntryMeta
166 objectserver.set(this,req,depth);
H A DJvmRTInputArgsEntryMeta.java104 public SnmpValue set(SnmpValue x, long var, Object data) method in class:JvmRTInputArgsEntryMeta
159 // Implements the "set" method defined in "SnmpMibEntry".
164 public void set(SnmpMibSubRequest req, int depth) method in class:JvmRTInputArgsEntryMeta
166 objectserver.set(this,req,depth);
H A DJvmRTLibraryPathEntryMeta.java104 public SnmpValue set(SnmpValue x, long var, Object data) method in class:JvmRTLibraryPathEntryMeta
159 // Implements the "set" method defined in "SnmpMibEntry".
164 public void set(SnmpMibSubRequest req, int depth) method in class:JvmRTLibraryPathEntryMeta
166 objectserver.set(this,req,depth);
H A DJvmThreadInstanceEntryMeta.java140 public SnmpValue set(SnmpValue x, long var, Object data) method in class:JvmThreadInstanceEntryMeta
249 // Implements the "set" method defined in "SnmpMibEntry".
254 public void set(SnmpMibSubRequest req, int depth) method in class:JvmThreadInstanceEntryMeta
256 objectserver.set(this,req,depth);
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DUnmodifiableHeaders.java68 public void set (String key, String value) { method in class:UnmodifiableHeaders
92 /* TODO check that contents of set are not modifable : security */
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DReflect.java145 static void set(Object ob, Field f, Object val) { method in class:Reflect
147 f.set(ob, val);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DAccessFlags.java105 private final void setFlag(int flag, boolean set) { argument
106 if((access_flags & flag) != 0) { // Flag is set already
107 if(!set) // Delete flag ?
109 } else { // Flag not set
110 if(set) // Set flag ?
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DCaseInsensitiveMap.java101 set(i, map);
116 private static void set(int codePoint, int[] map) { method in class:CaseInsensitiveMap
132 set(c, cMap);
143 set(ciCodePoint, ciCodePointMap);
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFAttributes.java165 abstract boolean set(MutableAttributeSet target); method in class:RTFAttributes.GenericAttribute
166 abstract boolean set(MutableAttributeSet target, int parameter); method in class:RTFAttributes.GenericAttribute
211 public boolean set(MutableAttributeSet target) method in class:RTFAttributes.BooleanAttribute
214 *set* or *toggle* the attribute. */
220 public boolean set(MutableAttributeSet target, int parameter) method in class:RTFAttributes.BooleanAttribute
286 public boolean set(MutableAttributeSet target) method in class:RTFAttributes.AssertiveAttribute
296 public boolean set(MutableAttributeSet target, int parameter) method in class:RTFAttributes.AssertiveAttribute
369 public boolean set(MutableAttributeSet target) method in class:RTFAttributes.NumericAttribute
374 public boolean set(MutableAttributeSet target, int parameter) method in class:RTFAttributes.NumericAttribute
396 set(targe
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/util/
H A DIdentityArrayList.java43 * The <tt>size</tt>, <tt>isEmpty</tt>, <tt>get</tt>, <tt>set</tt>,
274 * the array immediately following the end of the collection is set to
322 public E set(int index, E element) { method in class:IdentityArrayList
/openjdk7/jdk/src/share/classes/java/lang/
H A DStringCoding.java69 private static <T> void set(ThreadLocal<SoftReference<T>> tl, T ob) { method in class:StringCoding
70 tl.set(new SoftReference<T>(ob));
191 set(decoder, sd);
207 // is only chcked (and then isTrusted gets set) when (SM==null). It is
342 set(encoder, se);
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DArray.java32 * <p>{@code Array} permits widening conversions to occur during a get or set
310 public static native void set(Object array, int index, Object value) method in class:Array
328 * @see Array#set
348 * @see Array#set
368 * @see Array#set
388 * @see Array#set
408 * @see Array#set
428 * @see Array#set
448 * @see Array#set
468 * @see Array#set
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DEnumSet.java32 * the elements in an enum set must come from a single enum type that is
33 * specified, explicitly or implicitly, when the set is created. Enum sets
39 * run very quickly if their argument is also an enum set.
45 * and it may or may not show the effects of any modifications to the set that
54 * synchronized. If multiple threads access an enum set concurrently, and at
55 * least one of the threads modifies the set, it should be synchronized
57 * object that naturally encapsulates the enum set. If no such object exists,
58 * the set should be "wrapped" using the {@link Collections#synchronizedSet}
69 * constant time if their argument is also an enum set.
84 * The class of all the elements of this set
418 SerializationProxy(EnumSet<E> set) argument
[all...]

Completed in 113 milliseconds

1234567891011>>