Searched defs:update (Results 26 - 50 of 217) sorted by relevance

123456789

/openjdk7/jdk/test/sun/rmi/log/ReliableLog/
H A DSnapshotSize.java74 public Object applyUpdate(Object update, Object state) { argument
H A DLogAlignmentTest.java35 * Reproduced by writing an odd number of bytes into an update, and then
82 // Write a preamble update
85 log.update (c, true);
87 // Generate the requested size update (single chars)
95 log.update (c, true);
99 log.update (c, true);
104 log.update (c, true);
153 public Object applyUpdate (Object update, Object state) argument
157 ((LogAlignmentTest)state).basicUpdate ((String)update);
161 // an "update" i
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DIntervalNode.java60 public boolean update() { method in class:IntervalNode
H A DRBNode.java60 methods when necessary. Subclasses can use this to update any
64 return true if an update actually occurred, false if not. */
65 public boolean update() { method in class:RBNode
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicBoolean.java94 * @param update the new value
98 public final boolean compareAndSet(boolean expect, boolean update) { argument
100 int u = update ? 1 : 0;
113 * @param update the new value
116 public boolean weakCompareAndSet(boolean expect, boolean update) { argument
118 int u = update ? 1 : 0;
H A DAtomicReference.java109 * @param update the new value
113 public final boolean compareAndSet(V expect, V update) { argument
114 return unsafe.compareAndSwapObject(this, valueOffset, expect, update);
126 * @param update the new value
129 public final boolean weakCompareAndSet(V expect, V update) { argument
130 return unsafe.compareAndSwapObject(this, valueOffset, expect, update);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/
H A DMethodNode.java95 public void update(InputGraph graph, InputMethod method) { method in class:MethodNode
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DFilterNode.java66 update();
70 update();
80 private void update() { method in class:FilterNode
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DNextDiagramAction.java78 public void update(DiagramViewModel model) { method in class:NextDiagramAction
79 super.update(model);
103 update(source);
H A DPrevDiagramAction.java78 public void update(DiagramViewModel model) { method in class:PrevDiagramAction
79 super.update(model);
103 update(source);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJForLoop.java61 public void update(JExpression e) { method in class:JForLoop
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/policy/
H A DMtomPolicyMapConfigurator.java89 public Collection<PolicySubject> update(PolicyMap policyMap, SEIModel model, WSBinding wsBinding) throws PolicyException { method in class:MtomPolicyMapConfigurator
/openjdk7/jdk/test/java/awt/FullScreen/SetFSWindow/
H A DFSFrame.java66 public void update(Graphics g) { method in class:FSFrame
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DMemoryCredentialsCache.java61 public abstract void update(Credentials c); method in class:MemoryCredentialsCache
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DRegisterPanel.java127 public void update(ThreadProxy curThread) { method in class:RegisterPanel
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DProcessListPanel.java53 update();
131 /** Set update interval for automatic updating of the process list */
147 /** Call this to update the panel's notion of the process list */
148 public synchronized void update() { method in class:ProcessListPanel
212 update();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DCellRendererPane.java93 public void update(Graphics g) { } method in class:CellRendererPane
H A DPopup.java247 public void update(Graphics g) { method in class:Popup.HeavyWeightWindow
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DComponentUI.java120 * This method is invoked from the <code>ComponentUI.update</code> method when
131 * @see #update
156 public void update(Graphics g, JComponent c) { method in class:ComponentUI
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalButtonUI.java125 * @see javax.swing.plaf.ComponentUI#update
129 public void update(Graphics g, JComponent c) { method in class:MetalButtonUI
150 super.update(g, c);
H A DMetalToggleButtonUI.java127 * @see javax.swing.plaf.ComponentUI#update
131 public void update(Graphics g, JComponent c) { method in class:MetalToggleButtonUI
152 super.update(g, c);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiButtonUI.java89 * Invokes the <code>update</code> method on each UI handled by this object.
91 public void update(Graphics a, JComponent b) { method in class:MultiButtonUI
93 ((ComponentUI) (uis.elementAt(i))).update(a,b);
H A DMultiColorChooserUI.java89 * Invokes the <code>update</code> method on each UI handled by this object.
91 public void update(Graphics a, JComponent b) { method in class:MultiColorChooserUI
93 ((ComponentUI) (uis.elementAt(i))).update(a,b);
H A DMultiComboBoxUI.java129 * Invokes the <code>update</code> method on each UI handled by this object.
131 public void update(Graphics a, JComponent b) { method in class:MultiComboBoxUI
133 ((ComponentUI) (uis.elementAt(i))).update(a,b);
H A DMultiDesktopIconUI.java89 * Invokes the <code>update</code> method on each UI handled by this object.
91 public void update(Graphics a, JComponent b) { method in class:MultiDesktopIconUI
93 ((ComponentUI) (uis.elementAt(i))).update(a,b);

Completed in 56 milliseconds

123456789