Searched defs:update (Results 151 - 175 of 217) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthProgressBarUI.java208 public void update(Graphics g, JComponent c) { method in class:SynthProgressBarUI
211 SynthLookAndFeel.update(context, g);
241 * @see #update(Graphics,JComponent)
H A DSynthScrollBarUI.java239 public void update(Graphics g, JComponent c) { method in class:SynthScrollBarUI
242 SynthLookAndFeel.update(context, g);
272 * @see #update(Graphics,JComponent)
H A DSynthScrollPaneUI.java79 public void update(Graphics g, JComponent c) { method in class:SynthScrollPaneUI
82 SynthLookAndFeel.update(context, g);
111 * @see #update(Graphics,JComponent)
H A DSynthSpinnerUI.java298 public void update(Graphics g, JComponent c) { method in class:SynthSpinnerUI
301 SynthLookAndFeel.update(context, g);
331 * @see #update(Graphics,JComponent)
H A DSynthToolBarUI.java213 public void update(Graphics g, JComponent c) { method in class:SynthToolBarUI
216 SynthLookAndFeel.update(context, g);
280 * @see #update(Graphics,JComponent)
H A DSynthSliderUI.java767 public void update(Graphics g, JComponent c) { method in class:SynthSliderUI
769 SynthLookAndFeel.update(context, g);
798 * @see #update(Graphics,JComponent)
H A DSynthTabbedPaneUI.java372 public void update(Graphics g, JComponent c) { method in class:SynthTabbedPaneUI
375 SynthLookAndFeel.update(context, g);
437 * @see #update(Graphics,JComponent)
510 //first update the selected tab's states, then set the state
H A DSynthTableUI.java270 public void update(Graphics g, JComponent c) { method in class:SynthTableUI
273 SynthLookAndFeel.update(context, g);
311 * @see #update(Graphics,JComponent)
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapTable.cpp73 bool match, bool update, ErrorContext* ctx, TRAPS) const {
75 return match_stackmap(frame, target, index, match, update, ctx, THREAD);
78 // Match and/or update current_frame to the frame in stackmap table with
81 // The values of match and update are: _match__update_
90 bool match, bool update, ErrorContext* ctx, TRAPS) const {
101 // when checking handler target, match == true && update == false
102 bool is_exception_handler = !update;
108 if (update) {
71 match_stackmap( StackMapFrame* frame, int32_t target, bool match, bool update, ErrorContext* ctx, TRAPS) const argument
88 match_stackmap( StackMapFrame* frame, int32_t target, int32_t frame_index, bool match, bool update, ErrorContext* ctx, TRAPS) const argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapNamingEnumeration.java363 update(getReferredResults(refCtx));
396 protected void update(LdapNamingEnumeration ne) { method in class:LdapNamingEnumeration
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DRangeSlider.java91 update();
109 update();
112 private void update() { method in class:RangeSlider
253 update();
261 update();
269 update();
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaInternalFramePaneUI.java46 public void update(final Graphics g, final JComponent c) { method in class:AquaInternalFramePaneUI
48 super.update(g, c);
H A DAquaMenuItemUI.java110 public void update(final Graphics g, final JComponent c) { method in class:AquaMenuItemUI
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCipherCore.java79 * update() must buffer this many bytes before before starting
255 * order to hold the result of the next <code>update</code> or
260 * previous <code>update</code> call, and padding.
262 * <p>The actual output length of the next <code>update</code> or
527 byte[] update(byte[] input, int inputOffset, int inputLen) { method in class:CipherCore
532 int len = update(input, inputOffset, inputLen, output,
569 int update(byte[] input, int inputOffset, int inputLen, byte[] output, method in class:CipherCore
648 * may have been buffered during a previous <code>update</code> operation,
698 * may have been buffered during a previous <code>update</code> operation,
H A DRSACipher.java55 * more data via calls to update() or doFinal(), we throw an
320 // internal update method
321 private void update(byte[] in, int inOfs, int inLen) { method in class:RSACipher
367 update(in, inOfs, inLen);
374 update(in, inOfs, inLen);
381 update(in, inOfs, inLen);
393 update(in, inOfs, inLen);
410 update(encoded, 0, encoded.length);
425 update(wrappedKey, 0, wrappedKey.length);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiManageCapabilities.cpp278 update();
299 update();
306 void JvmtiManageCapabilities::update() { function in class:JvmtiManageCapabilities
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSACipher.java50 * more data via calls to update() or doFinal(), we throw an
252 // internal update method
253 private void update(byte[] in, int inOfs, int inLen) { method in class:RSACipher
306 update(in, inOfs, inLen);
313 update(in, inOfs, inLen);
320 update(in, inOfs, inLen);
332 update(in, inOfs, inLen);
349 update(encoded, 0, encoded.length);
365 update(wrappedKey, 0, wrappedKey.length);
/openjdk7/jdk/src/share/demo/nio/zipfs/
H A DDemo.java139 update, // <java Demo extract zipfile file [...]> enum constant in enum:Demo.Action
303 case update:
305 update(fs, args[i]);
426 private static void update(FileSystem fs, String path) throws Throwable{ method in class:Demo
431 update(fs, child.toString());
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DHandshakeHash.java55 * 2. Before protocolDetermined() is called, only update(), reset(),
82 * hh.update(clientHelloBytes);
84 * hh.update(serverHelloBytes);
87 * hh.update(CertificateVerifyBytes);
90 * hh.update(finished1);
92 * hh.update(finished2);
136 void update(byte[] b, int offset, int len) { method in class:HandshakeHash
139 md5.update(b, offset, len);
140 sha.update(b, offset, len);
144 finMD.update(
[all...]
/openjdk7/jdk/test/java/util/zip/
H A Dzip.java51 * uflag: update
121 boolean updateOk = update(in, new BufferedOutputStream(out));
335 boolean update(InputStream in, OutputStream out) throws IOException method in class:zip
464 crc32.update(buf, 0, r);
654 " -u update existing archive\n" +
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DTarget.java249 entry.update(sequenceNum);
469 void update(long sequenceNum) { method in class:SequenceEntry
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DClassGen.java440 public void update() { method in class:ClassGen
H A DInstructionList.java213 /* Pass 2: Look for BranchInstruction and update their targets, i.e.,
229 // If it is a Select instruction, update all branch targets
1187 * Redirect all references from old_target to new_target, i.e., update targets
1284 public void update() { method in class:InstructionList
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJDialog.java831 public void update(Graphics g) { method in class:JDialog
1122 * @param time maximum time in milliseconds before update
H A DJFrame.java474 public void update(Graphics g) { method in class:JFrame
767 * @param time maximum time in milliseconds before update

Completed in 94 milliseconds

123456789