/openjdk7/jdk/src/share/classes/javax/sound/sampled/ |
H A D | LineListener.java | 66 public void update(LineEvent event); method in interface:LineListener
|
/openjdk7/jdk/src/share/classes/java/util/ |
H A D | Observer.java | 46 void update(Observable o, Object arg); method in interface:Observer
|
/openjdk7/jdk/make/tools/src/build/tools/javazic/ |
H A D | Checksum.java | 43 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 D | CRC16.java | 43 /** update CRC with byte b */ 44 public void update(byte aByte) { method in class:CRC16
|
H A D | JavaUtilZipAccess.java | 32 public void update(Adler32 adler32, ByteBuffer buf); method in interface:JavaUtilZipAccess
|
/openjdk7/jdk/src/share/classes/java/util/zip/ |
H A D | Checksum.java | 38 * @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 D | Adler32.java | 53 * @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 D | CRC32.java | 49 * @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 D | AquaPanelUI.java | 45 public final void update(final Graphics g, final JComponent c) { method in class:AquaPanelUI
|
H A D | AquaPopupMenuSeparatorUI.java | 43 public void update(final Graphics g, final JComponent c) { method in class:AquaPopupMenuSeparatorUI
|
/openjdk7/jdk/test/sun/security/smartcardio/ |
H A D | TestPresent.java | 42 long update() { method in class:TestPresent.Timer 49 long t = update();
|
/openjdk7/jdk/test/javax/swing/border/ |
H A D | Test4252164.java | 46 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 D | StackFrameStream.java | 54 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 D | MetalMenuBarUI.java | 89 * @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 D | ContextAction.java | 61 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 D | Test.java | 28 * @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 D | PolicyMapConfigurator.java | 60 Collection<PolicySubject> update(PolicyMap policyMap, SEIModel model, WSBinding wsBinding) throws PolicyException; method in interface:PolicyMapConfigurator
|
/openjdk7/jdk/test/com/sun/jdi/ |
H A D | FieldWatchpoints.java | 47 public void update (){ method in class:FieldWatchpointsDebugee 62 my.update(); 80 startTo("FieldWatchpointsDebugee", "update", "()V");
|
/openjdk7/jdk/test/java/beans/XMLEncoder/ |
H A D | java_awt_BorderLayout.java | 54 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 D | java_awt_GridBagLayout.java | 49 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 D | Tab.java | 48 public void update() { method in class:Tab
|
/openjdk7/jdk/test/javax/swing/JScrollPane/ |
H A D | Test6526631.java | 60 private void update(int offset) { method in class:Test6526631 68 update(OFFSET); 73 update(-OFFSET);
|
/openjdk7/jdk/test/sun/misc/Version/ |
H A D | Version.java | 66 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 D | LogHandler.java | 33 * 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 D | Recovery.java | 105 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)
|