Searched defs:update (Results 1 - 25 of 217) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DLineListener.java66 public void update(LineEvent event); method in interface:LineListener
/openjdk7/jdk/src/share/classes/java/util/
H A DObserver.java46 void update(Observable o, Object arg); method in interface:Observer
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DChecksum.java43 public void update(int val) { method in class:Checksum
49 update(b);
57 void update(long val) { method in class:Checksum
67 update(b);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DCRC16.java43 /** update CRC with byte b */
44 public void update(byte aByte) { method in class:CRC16
H A DJavaUtilZipAccess.java32 public void update(Adler32 adler32, ByteBuffer buf); method in interface:JavaUtilZipAccess
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DChecksum.java38 * @param b the byte to update the checksum with
40 public void update(int b); method in interface:Checksum
44 * @param b the byte array to update the checksum with
46 * @param len the number of bytes to use for the update
48 public void update(byte[] b, int off, int len); method in interface:Checksum
H A DAdler32.java53 * @param b the byte to update the checksum with
55 public void update(int b) { method in class:Adler32
56 adler = update(adler, b);
62 public void update(byte[] b, int off, int len) { method in class:Adler32
75 * @param b the byte array to update the checksum with
77 public void update(byte[] b) { method in class:Adler32
91 * @param buffer the ByteBuffer to update the checksum with
93 private void update(ByteBuffer buffer) { method in class:Adler32
129 public void update(Adler32 adler32, ByteBuffer buf) {
130 adler32.update(bu
135 private native static int update(int adler, int b); method in class:Adler32
[all...]
H A DCRC32.java49 * @param b the byte to update the checksum with
51 public void update(int b) { method in class:CRC32
52 crc = update(crc, b);
58 public void update(byte[] b, int off, int len) { method in class:CRC32
71 * @param b the array of bytes to update the checksum with
73 public void update(byte[] b) { method in class:CRC32
91 private native static int update(int crc, int b); method in class:CRC32
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaPanelUI.java45 public final void update(final Graphics g, final JComponent c) { method in class:AquaPanelUI
H A DAquaPopupMenuSeparatorUI.java43 public void update(final Graphics g, final JComponent c) { method in class:AquaPopupMenuSeparatorUI
/openjdk7/jdk/test/sun/security/smartcardio/
H A DTestPresent.java42 long update() { method in class:TestPresent.Timer
49 long t = update();
/openjdk7/jdk/test/javax/swing/border/
H A DTest4252164.java46 update(event.getWheelRotation());
62 update(10);
67 private void update(int thickness) { method in class:Test4252164
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DStackFrameStream.java54 public StackFrameStream(JavaThread thread, boolean update) { argument
60 regMap = thread.newRegisterMap(update);
68 regMap = thread.newRegisterMap(update);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalMenuBarUI.java89 * @see javax.swing.plaf.ComponentUI#update
93 public void update(Graphics g, JComponent c) { method in class:MetalMenuBarUI
116 super.update(g, c);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DContextAction.java61 update(result.allInstances().iterator().next());
63 update(null);
80 public void update(T t) { method in class:ContextAction
/openjdk7/hotspot/test/compiler/6724218/
H A DTest.java28 * @run main/othervm -Xbatch -XX:CompileCommand=exclude,Test.update Test
55 void update() { method in class:Test
80 update();
94 t.update();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/spi/
H A DPolicyMapConfigurator.java60 Collection<PolicySubject> update(PolicyMap policyMap, SEIModel model, WSBinding wsBinding) throws PolicyException; method in interface:PolicyMapConfigurator
/openjdk7/jdk/test/com/sun/jdi/
H A DFieldWatchpoints.java47 public void update (){ method in class:FieldWatchpointsDebugee
62 my.update();
80 startTo("FieldWatchpointsDebugee", "update", "()V");
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djava_awt_BorderLayout.java54 update(layout, BorderLayout.EAST);
55 update(layout, BorderLayout.WEST);
56 update(layout, BorderLayout.NORTH);
57 update(layout, BorderLayout.SOUTH);
64 update(layout, BorderLayout.CENTER);
77 private static void update(BorderLayout layout, String constraints) { method in class:java_awt_BorderLayout
H A Djava_awt_GridBagLayout.java49 update(layout, "1", 1, 1);
50 update(layout, "2", 2, 2);
51 update(layout, "3", 3, 3);
58 update(layout, "11", 1, 1);
59 update(layout, "12", 1, 2);
60 update(layout, "21", 2, 1);
61 update(layout, "22", 2, 2);
89 private static void update(GridBagLayout layout, String id, int x, int y) { method in class:java_awt_GridBagLayout
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DTab.java48 public void update() { method in class:Tab
/openjdk7/jdk/test/javax/swing/JScrollPane/
H A DTest6526631.java60 private void update(int offset) { method in class:Test6526631
68 update(OFFSET);
73 update(-OFFSET);
/openjdk7/jdk/test/sun/misc/Version/
H A DVersion.java66 final int update; field in class:Version.VersionInfo
70 int update, String special, int build) {
74 this.update = update;
81 this.micro == v.micro && this.update == v.update &&
88 if (update > 0) {
89 sb.append("_" + update);
106 int update = 0;
117 regex += "([0-9]{2})"; // update
69 VersionInfo(int major, int minor, int micro, int update, String special, int build) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/log/
H A DLogHandler.java33 * A LogHandler represents snapshots and update records as serializable
37 * apply an update to a snapshot. The client must specifiy these methods
92 * Writes the representation (a serializable object) of an update
94 * update method of ReliableLog.
108 * Reads a stably logged update (a serializable object) from a
110 * every record in the log. After reading the update, this method
126 * Reads a stably logged update (a serializable object) from a stream.
128 * log. After reading the update, this method is invoked in order to
129 * obtain the new snapshot value. The method should apply the update
132 * @param update th
138 applyUpdate(Object update, Object state) argument
[all...]
/openjdk7/jdk/test/sun/rmi/log/ReliableLog/
H A DRecovery.java105 String update = new String(u);
106 handler.basicUpdate(update);
107 log.update(update, true);
108 writ.append(update);
117 log.update(f, true);
202 public Object applyUpdate (Object update, Object state) argument
206 ((Recovery)state).basicUpdate ((String)update);
210 // an "update" is a short string to append to this.contents (must ignore state)

Completed in 116 milliseconds

123456789