Searched defs:update (Results 101 - 125 of 217) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthInternalFrameUI.java209 public void update(Graphics g, JComponent c) { method in class:SynthInternalFrameUI
212 SynthLookAndFeel.update(context, g);
241 * @see #update(Graphics,JComponent)
H A DSynthLabelUI.java171 public void update(Graphics g, JComponent c) { method in class:SynthLabelUI
174 SynthLookAndFeel.update(context, g);
203 * @see #update(Graphics,JComponent)
H A DSynthListUI.java72 public void update(Graphics g, JComponent c) { method in class:SynthListUI
75 SynthLookAndFeel.update(context, g);
H A DSynthMenuItemUI.java242 public void update(Graphics g, JComponent c) { method in class:SynthMenuItemUI
245 SynthLookAndFeel.update(context, g);
273 * @see #update(Graphics,JComponent)
H A DSynthMenuUI.java242 public void update(Graphics g, JComponent c) { method in class:SynthMenuUI
245 SynthLookAndFeel.update(context, g);
274 * @see #update(Graphics,JComponent)
H A DSynthOptionPaneUI.java164 public void update(Graphics g, JComponent c) { method in class:SynthOptionPaneUI
167 SynthLookAndFeel.update(context, g);
196 * @see #update(Graphics,JComponent)
H A DSynthPanelUI.java151 public void update(Graphics g, JComponent c) { method in class:SynthPanelUI
154 SynthLookAndFeel.update(context, g);
183 * @see #update(Graphics,JComponent)
H A DSynthSeparatorUI.java150 public void update(Graphics g, JComponent c) { method in class:SynthSeparatorUI
154 SynthLookAndFeel.update(context, g);
184 * @see #update(Graphics,JComponent)
H A DSynthSplitPaneUI.java284 public void update(Graphics g, JComponent c) { method in class:SynthSplitPaneUI
287 SynthLookAndFeel.update(context, g);
316 * @see #update(Graphics,JComponent)
319 // This is done to update package private variables in
H A DSynthTableHeaderUI.java138 public void update(Graphics g, JComponent c) { method in class:SynthTableHeaderUI
141 SynthLookAndFeel.update(context, g);
170 * @see #update(Graphics,JComponent)
H A DSynthTextAreaUI.java138 public void update(Graphics g, JComponent c) { method in class:SynthTextAreaUI
141 SynthLookAndFeel.update(context, g);
153 * @see #update(Graphics,JComponent)
166 // Overriden to do nothing, all our painting is done from update/paint.
H A DSynthTextFieldUI.java176 public void update(Graphics g, JComponent c) { method in class:SynthTextFieldUI
179 SynthLookAndFeel.update(context, g);
195 * @see #update(Graphics,JComponent)
221 // Overriden to do nothing, all our painting is done from update/paint.
H A DSynthViewportUI.java165 public void update(Graphics g, JComponent c) { method in class:SynthViewportUI
168 SynthLookAndFeel.update(context, g);
214 * @see #update(Graphics,JComponent)
/openjdk7/jdk/src/share/classes/java/security/
H A DMessageDigest.java45 * processed through it using the {@link #update(byte) update}
63 * md.update(toChapter1);
66 * md.update(toChapter2);
288 * @param input the byte with which to update the digest.
290 public void update(byte input) { method in class:MessageDigest
306 public void update(byte[] input, int offset, int len) { method in class:MessageDigest
322 public void update(byte[] input) { method in class:MessageDigest
337 public final void update(ByteBuffer input) { method in class:MessageDigest
386 * Performs a final update o
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicInteger.java130 * @param update the new value
134 public final boolean compareAndSet(int expect, int update) { argument
135 return unsafe.compareAndSwapInt(this, valueOffset, expect, update);
147 * @param update the new value
150 public final boolean weakCompareAndSet(int expect, int update) { argument
151 return unsafe.compareAndSwapInt(this, valueOffset, expect, update);
H A DAtomicIntegerArray.java163 * @param update the new value
167 public final boolean compareAndSet(int i, int expect, int update) { argument
168 return compareAndSetRaw(checkedByteOffset(i), expect, update);
171 private boolean compareAndSetRaw(long offset, int expect, int update) { argument
172 return unsafe.compareAndSwapInt(array, offset, expect, update);
185 * @param update the new value
188 public final boolean weakCompareAndSet(int i, int expect, int update) { argument
189 return compareAndSet(i, expect, update);
H A DAtomicIntegerFieldUpdater.java94 * @param update the new value
99 public abstract boolean compareAndSet(T obj, int expect, int update); argument
114 * @param update the new value
119 public abstract boolean weakCompareAndSet(T obj, int expect, int update); argument
307 public boolean compareAndSet(T obj, int expect, int update) { argument
309 return unsafe.compareAndSwapInt(obj, offset, expect, update);
312 public boolean weakCompareAndSet(T obj, int expect, int update) { argument
314 return unsafe.compareAndSwapInt(obj, offset, expect, update);
H A DAtomicLong.java144 * @param update the new value
148 public final boolean compareAndSet(long expect, long update) { argument
149 return unsafe.compareAndSwapLong(this, valueOffset, expect, update);
161 * @param update the new value
164 public final boolean weakCompareAndSet(long expect, long update) { argument
165 return unsafe.compareAndSwapLong(this, valueOffset, expect, update);
H A DAtomicLongArray.java163 * @param update the new value
167 public final boolean compareAndSet(int i, long expect, long update) { argument
168 return compareAndSetRaw(checkedByteOffset(i), expect, update);
171 private boolean compareAndSetRaw(long offset, long expect, long update) { argument
172 return unsafe.compareAndSwapLong(array, offset, expect, update);
185 * @param update the new value
188 public final boolean weakCompareAndSet(int i, long expect, long update) { argument
189 return compareAndSet(i, expect, update);
H A DAtomicLongFieldUpdater.java98 * @param update the new value
103 public abstract boolean compareAndSet(T obj, long expect, long update); argument
118 * @param update the new value
123 public abstract boolean weakCompareAndSet(T obj, long expect, long update); argument
307 public boolean compareAndSet(T obj, long expect, long update) { argument
309 return unsafe.compareAndSwapLong(obj, offset, expect, update);
312 public boolean weakCompareAndSet(T obj, long expect, long update) { argument
314 return unsafe.compareAndSwapLong(obj, offset, expect, update);
388 public boolean compareAndSet(T obj, long expect, long update) { argument
394 unsafe.putLong(obj, offset, update);
399 weakCompareAndSet(T obj, long expect, long update) argument
[all...]
H A DAtomicReferenceArray.java177 * @param update the new value
181 public final boolean compareAndSet(int i, E expect, E update) { argument
182 return compareAndSetRaw(checkedByteOffset(i), expect, update);
185 private boolean compareAndSetRaw(long offset, E expect, E update) { argument
186 return unsafe.compareAndSwapObject(array, offset, expect, update);
199 * @param update the new value
202 public final boolean weakCompareAndSet(int i, E expect, E update) { argument
203 return compareAndSet(i, expect, update);
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DMac.java448 public final void update(byte input) throws IllegalStateException { method in class:Mac
464 public final void update(byte[] input) throws IllegalStateException { method in class:Mac
485 public final void update(byte[] input, int offset, int len) method in class:Mac
511 public final void update(ByteBuffer input) { method in class:Mac
530 * the same key, if desired, via new calls to <code>update</code> and
559 * the same key, if desired, via new calls to <code>update</code> and
602 * the same key, if desired, via new calls to <code>update</code> and
620 update(input);
632 * the same key, if desired, via new calls to <code>update</code> and
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableSpace.hpp97 virtual void update() { } function in class:MutableSpace
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DDesktopProperty.java37 * will force the UIs to update all known Frames. You can invoke
88 private static synchronized void setUpdatePending(boolean update) { argument
89 updatePending = update;
93 * Returns true if a UI update is pending.
202 * to reflect dynamic changes in this look&feel. This update occurs
204 * batched and collapsed into a single update pass because often
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DJavaSoundAudioClip.java251 public synchronized void update(LineEvent event) { method in class:JavaSoundAudioClip

Completed in 67 milliseconds

123456789