Searched defs:set (Results 251 - 275 of 363) sorted by relevance

<<1112131415

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStyledEditorKit.java39 * This is the set of things needed by a text component
43 * provides a minimal set of actions for editing styled text.
66 * @return the attribute set
200 * This is the set of attributes used to store the
214 * Tracks caret movement and keeps the input attributes set
215 * to reflect the current set of attribute definitions at the
282 * <code>set</code>. This does not copy component, icon, or element
285 * are in <code>set</code>.<p>
290 MutableAttributeSet set) {
294 set
289 createInputAttributes(Element element, MutableAttributeSet set) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/util/
H A DIdentityLinkedList.java332 public E set(int index, E element) { method in class:IdentityLinkedList
726 public void set(E e) { method in class:IdentityLinkedList.ListItr
835 * immediately following the end of the list is set to <tt>null</tt>.
/openjdk7/jdk/src/share/classes/java/awt/image/renderable/
H A DParameterBlock.java43 * add and set methods are available that take arguments of base type and
51 * <p> Note that the get and set methods operate on references.
86 * <p> The addSource, setSource, add, and set methods are
418 public ParameterBlock set(Object obj, int index) { method in class:ParameterBlock
440 public ParameterBlock set(byte b, int index) { method in class:ParameterBlock
441 return set(new Byte(b), index);
456 public ParameterBlock set(char c, int index) { method in class:ParameterBlock
457 return set(new Character(c), index);
472 public ParameterBlock set(short s, int index) { method in class:ParameterBlock
473 return set(ne
488 public ParameterBlock set(int i, int index) { method in class:ParameterBlock
504 public ParameterBlock set(long l, int index) { method in class:ParameterBlock
520 public ParameterBlock set(float f, int index) { method in class:ParameterBlock
536 public ParameterBlock set(double d, int index) { method in class:ParameterBlock
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DThreadLocal.java33 * <tt>get</tt> or <tt>set</tt> method) has its own, independently initialized
110 * method, unless the thread previously invoked the {@link #set}
154 * Variant of set() to establish initialValue. Used instead
155 * of set() in case user has overridden the set() method.
164 map.set(this, value);
174 * method to set the values of thread-locals.
179 public void set(T value) { method in class:ThreadLocal
183 map.set(this, value);
193 * unless its value is {@linkplain #set se
416 private void set(ThreadLocal key, Object value) { method in class:ThreadLocal.ThreadLocalMap
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DURL.java243 * <li>If the application has previously set up an instance of
248 * <li>If no <code>URLStreamHandlerFactory</code> has yet been set up,
663 protected void set(String protocol, String host, method in class:URL
700 protected void set(String protocol, String host, int port, method in class:URL
766 * @return the port number, or -1 if the port is not set
1092 * @exception Error if the application has already set a factory.
1180 // unless the system property had been explicitly set
1220 // Check with factory if another thread set a
/openjdk7/jdk/src/share/classes/java/text/
H A DDigitList.java82 * These data members are intentionally public and can be set directly.
132 * Typically, you set a series of digits with append, then at the point
133 * you hit the decimal point, you set myDigitList.decimalAt = myDigitList.count;
273 public final void set(boolean isNegative, double source, int maximumFractionDigits) { method in class:DigitList
274 set(isNegative, source, maximumFractionDigits, true);
288 final void set(boolean isNegative, double source, int maximumDigits, boolean fixedPoint) { method in class:DigitList
289 set(isNegative, Double.toString(source), maximumDigits, fixedPoint);
296 final void set(boolean isNegative, String s, int maximumDigits, boolean fixedPoint) { method in class:DigitList
422 * mode being set to RoundingMode.UNNECESSARY
485 "Rounding needed with the rounding mode being set t
499 public final void set(boolean isNegative, long source) { method in class:DigitList
512 public final void set(boolean isNegative, long source, int maximumDigits) { method in class:DigitList
558 final void set(boolean isNegative, BigDecimal source, int maximumDigits, boolean fixedPoint) { method in class:DigitList
573 final void set(boolean isNegative, BigInteger source, int maximumDigits) { method in class:DigitList
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractList.java40 * override the {@link #set(int, Object) set(int, E)} method (which otherwise
54 * {@link #set(int, Object) set(int, E)},
131 public E set(int index, E element) { method in class:AbstractList
309 * {@code get(int)}, {@code set(int, E)}, {@code add(int, E)}
314 * {@code remove}, {@code set} and {@code add} methods unless the
315 * list's {@code remove(int)}, {@code set(int, E)}, and
420 public void set(E e) { method in class:AbstractList.ListItr
426 AbstractList.this.set(lastRe
632 public E set(int index, E element) { method in class:SubList
[all...]
H A DArrays.java2869 public E set(int index, E element) { method in class:Arrays.ArrayList
H A DBitSet.java35 * component of the bit set has a {@code boolean} value. The
37 * Individual indexed bits can be examined, set, or cleared. One
42 * <p>By default, all bits in the set initially have the value
45 * <p>Every bit set has a current size, which is the number of bits
46 * of space currently in use by the bit set. Note that the size is
47 * related to the implementation of a bit set, so it may change with
48 * implementation. The length of a bit set relates to logical length
49 * of a bit set and is defined independently of implementation.
123 * Sets the field wordsInUse to the logical size in words of the bit set.
138 * Creates a new bit set
434 public void set(int bitIndex) { method in class:BitSet
454 public void set(int bitIndex, boolean value) { method in class:BitSet
472 public void set(int fromIndex, int toIndex) { method in class:BitSet
516 public void set(int fromIndex, int toIndex, boolean value) { method in class:BitSet
872 intersects(BitSet set) argument
901 and(BitSet set) argument
925 or(BitSet set) argument
964 xor(BitSet set) argument
994 andNot(BitSet set) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DFutureTask.java78 * transitions to a terminal state only in methods set,
80 * transient values of COMPLETING (while outcome is being set) or
218 * this future has already been set or has been cancelled.
225 protected void set(V v) { method in class:FutureTask
236 * already been set or has been cancelled.
270 set(result);
304 c.call(); // don't set result
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DBasicAttribute.java459 public Object set(int ix, Object attrVal) { method in class:BasicAttribute
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.hpp44 // contains the basic attributes that each set needs to maintain
67 // The number of regions added to the set. If the set contains
72 // The total number of regions represented by the set. If the set
74 // _length. If the set contains only humongous regions, this will
81 // The sum of used bytes in the all the regions in the set.
102 // added to / removed from a set are consistent. Different sets
104 // each set can override verify_region_extra(), which is called
111 // Indicates whether all regions in the set shoul
193 hrs_ext_msg(HeapRegionSetBase* set, const char* message) argument
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.hpp83 inline void set(State state, int count); // sets state and counter
85 void set_carry(); // set the sticky carry bit
130 inline void InvocationCounter::set(State state, int count) { function in class:InvocationCounter
141 set(state(), new_count);
/openjdk7/hotspot/src/share/vm/libadt/
H A Dvectset.cpp74 Set &VectorSet::operator = (const Set &set) argument
76 if( &set == this ) return *this;
78 // The cast is a virtual function that checks that "set" is a VectorSet.
79 slamin(*(set.asVectorSet()));
84 // Initialize one set with another. No regard is made to the existing Set.
93 // Expand the existing set to a bigger size
111 if( word >= size ) // Need to grow set?
130 // Intersect one set into another.
133 // NOTE: The intersection is never any larger than the smallest set.
137 for( uint i=0; i<size; i++) // For data in set
143 operator &=(const Set &set) argument
168 operator |=(const Set &set) argument
188 operator -=(const Set &set) argument
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DklassVtable.hpp96 // trace_name_printed is set to true if the current call has
170 void set(methodOop method) { assert(method != NULL, "use clear"); _method = method; } function in class:VALUE_OBJ_CLASS_SPEC
287 // trace_name_printed is set to true if the current call has
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.cpp32 // This file defines the IndexSet class, a set of sparse integer indices.
49 // Per set, or all sets operation tracing
53 // What is the first set bit in a 5 bit integer?
65 // What is the second set bit in a 5 bit integer?
200 // fail_degree, the union bails out. The underlying set is cleared before
219 // live-range has the union of the original live-ranges' neighbors set as
221 // that can not use the intersected allowed-register-set.
223 // Copy the larger set. Insert the smaller set into the larger.
238 // Load up the combined interference set wit
280 IndexSet(IndexSet *set) argument
356 swap(IndexSet *set) argument
452 IndexSetIterator(IndexSet *set) argument
489 IndexSetIterator(const IndexSet *set) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibAgent.java172 * Processes a <CODE>set</CODE> operation.
179 * be set. This list is composed of
188 public abstract void set(SnmpMibRequest req) method in class:SnmpMibAgent
193 * Checks if a <CODE>set</CODE> operation can be performed.
200 * be set. This list is composed of
203 * @exception SnmpStatusException The <CODE>set</CODE> operation
262 * This method is to be called to set a specific agent to a specific OID. This can be useful when dealing with MIB overlapping.
265 * @param oids The set of OIDs this agent implements.
307 * @param oids The set of OIDs this agent implements.
380 * This method is to be called to set
[all...]
H A DSnmpMibNode.java208 * Generic handling of the <CODE>set</CODE> operation.
221 public abstract void set(SnmpMibSubRequest req, int depth) method in class:SnmpMibNode
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DGlyphVector.java605 * @param set the specified <code>GlyphVector</code> to test
610 public abstract boolean equals(GlyphVector set); argument
/openjdk7/hotspot/src/os/solaris/vm/
H A Djsig.c85 /* When the jvm is installing its set of signal handlers, threads
115 sigset_t set; local
120 sigemptyset(&set);
121 sact[sig].sa_mask = set;
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DNode.java46 void set(String kind, List<Node> components, int lineno) { method in class:Node
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvThreadState.cpp60 JvmtiFramePops::set(JvmtiFramePop& fp) { function in class:JvmtiFramePops
297 // If single-stepping is enabled, set the current location to the
/openjdk7/hotspot/test/compiler/6865031/
H A DTest.java40 public Object set(final int index, final Object element); method in interface:MyList
47 abstract public Object set(final int index, final Object element); method in class:AbstractMemoryEfficientList
109 public Object set(final int index, final Object element) { method in class:SingletonList
141 public Object set(final int index, final Object element) { method in class:DoubletonList
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenTool.java151 forcedOpts.set(null, new String[]{});
374 public AnnotationProcessor getProcessorFor(Set<AnnotationTypeDeclaration> set, AnnotationProcessorEnvironment apEnv) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DAccessor.java106 * @throws AccessorException if failed to set a value. For example, the getter method
116 * @param value the value to be set. Setting value to null means resetting
118 * @throws AccessorException if failed to set a value. For example, the setter method
122 public abstract void set(BeanT bean, ValueT value) throws AccessorException; method in class:Accessor
151 set(bean, (ValueT) value);
156 set((BeanT) state.target, (ValueT) o);
202 * Flag that will be set to true after issueing a warning
252 public void set(BeanT bean, ValueT value) { method in class:Accessor.FieldReflection
256 f.set(bean, value);
287 public void set(Bean method in class:Accessor.ReadOnlyFieldReflection
347 public void set(BeanT bean, ValueT value) throws AccessorException { method in class:Accessor.GetterSetterReflection
404 public void set(BeanT bean, ValueT value) throws AccessorException { method in class:Accessor.GetterOnlyReflection
[all...]

Completed in 174 milliseconds

<<1112131415