Searched refs:changed (Results 1 - 25 of 81) sorted by relevance

1234

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DChangedListener.java32 public void changed(T source); method in interface:ChangedListener
H A DChangedEvent.java42 l.changed(object);
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DHierarchyEvent.java165 Component changed; field in class:HierarchyEvent
181 * @param changed The <code>Component</code> at the top of
182 * the hierarchy which was changed
183 * @param changedParent The parent of the <code>changed</code> component.
193 public HierarchyEvent(Component source, int id, Component changed, argument
196 this.changed = changed;
212 * @param changed The <code>Component</code> at the top
213 * of the hierarchy which was changed
214 * @param changedParent The parent of the <code>changed</cod
230 HierarchyEvent(Component source, int id, Component changed, Container changedParent, long changeFlags) argument
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DdtraceAttacher.cpp60 bool changed = false; local
63 changed = true;
67 changed = true;
71 changed = true;
74 if (changed) {
75 // one or more flags changed, need to deoptimize
84 bool changed = false; local
87 changed = true;
91 changed = true;
95 changed
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DObservable.java63 private boolean changed = false; field in class:Observable
99 * If this object has changed, as indicated by the
102 * indicate that this object has no longer changed.
119 * If this object has changed, as indicated by the
122 * that this object has no longer changed.
152 if (!changed)
170 * Marks this <tt>Observable</tt> object as having been changed; the
174 changed = true;
178 * Indicates that this object has no longer changed, or that it has
188 changed
[all...]
H A DRegularEnumSet.java155 * @return <tt>true</tt> if the set changed as a result of the call
211 * @return <tt>true</tt> if this set changed as a result of the call
238 * @return <tt>true</tt> if this set changed as a result of the call
259 * @return <tt>true</tt> if this set changed as a result of the call
268 boolean changed = (elements != 0);
270 return changed;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Settings/src/com/sun/hotspot/igv/settings/
H A DViewOptionsPanelController.java41 private boolean changed; field in class:ViewOptionsPanelController
45 changed = false;
50 changed = false;
62 return changed;
88 void changed() { method in class:ViewOptionsPanelController
89 if (!changed) {
90 changed = true;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBitMap.java100 boolean changed = false;
103 changed = changed || (temp != data[index]);
106 return changed;
139 boolean changed = false;
142 changed = changed || (temp != data[index]);
145 return changed;
/openjdk7/jdk/src/windows/classes/sun/net/dns/
H A DResolverConfigurationImpl.java45 // Addreses have changed
46 private static boolean changed = false; field in class:ResolverConfigurationImpl
84 // if address have changed then DNS probably changed aswell;
87 if (changed) {
88 changed = false;
145 changed = true;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DRangeSliderModel.java49 boolean changed = false;
50 changed |= (positions != model.positions);
52 changed |= (firstPosition != model.firstPosition);
54 changed |= (secondPosition != model.secondPosition);
58 if (changed) {
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogCleanupReader.java65 boolean changed = false;
72 changed = true;
78 changed = true;
84 changed = true;
87 if (changed) {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DFilterNode.java65 public void changed(Filter source) {
106 changed(FilterTopComponent.findInstance());
109 public void changed(FilterTopComponent source) { method in class:FilterNode
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DGraphicsUtilities.java92 boolean changed = false;
96 changed = true;
100 changed = true;
103 if (changed) {
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp192 // Return true to indicate that this thread changed
353 bool changed = false; local
359 changed = changed || (temp != map(index));
362 return changed;
368 bool changed = false; local
374 changed = changed || (temp != dest_map[index]);
377 return changed;
383 bool changed local
[all...]
/openjdk7/make/scripts/
H A Dupdate_copyright_year.sh73 changed="false"
85 changed="true"
92 echo "${changed}"
95 # Update the copyright year on all files changed by this changeset
117 printf " None of the %d files were changed.\n" ${fcount}
120 printf " ERROR: No files changed in the changeset? Must be a mistake.\n"
189 echo "No files were changed"
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/som/cff/
H A DMessages.java120 boolean changed = false;
126 changed = true;
135 changed = true;
138 if (changed)
/openjdk7/jdk/test/java/lang/invoke/
H A DAccessControlTest.java161 int changed = 0;
173 changed |= (PUBLIC|PACKAGE|PRIVATE|PROTECTED); // [A6]
177 changed |= (PACKAGE|PRIVATE|PROTECTED); // [A4]
181 changed |= (PRIVATE|PROTECTED); // [A5]
184 changed |= (PROTECTED); // [A3]
186 assert(changed == 0); // [A8] (no deprivation if same class)
188 if (accessible) assert((changed & PUBLIC) == 0); // [A7]
189 int m2 = m1 & ~changed;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DControlFlowScene.java238 boolean changed = false;
245 changed = true;
251 changed = true;
258 if (changed) {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DDiagramViewModel.java66 public void changed(FilterChain source) {
165 public void changed(DiagramViewModel source) {
177 public void changed(Group source) {
337 public void changed(RangeSliderModel source) { method in class:DiagramViewModel
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DNextDiagramAction.java102 public void changed(DiagramViewModel source) { method in class:NextDiagramAction
H A DPrevDiagramAction.java102 public void changed(DiagramViewModel source) { method in class:PrevDiagramAction
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DFrame.java1268 * the given label has been changed by this operation.
1275 * changed by this operation.
1278 boolean changed = false;
1285 changed = true;
1310 changed |= merge(cw, t, frame.inputLocals, i);
1316 changed |= merge(cw, t, frame.inputLocals, i);
1320 changed = true;
1322 changed |= merge(cw, edge, frame.inputStack, 0);
1323 return changed;
1329 changed
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEventController.cpp312 static void trace_changed(JvmtiThreadState *state, jlong now_enabled, jlong changed);
313 static void trace_changed(jlong now_enabled, jlong changed);
331 // or changed accordingly.
358 JvmtiEventControllerPrivate::trace_changed(JvmtiThreadState *state, jlong now_enabled, jlong changed) { argument
365 if (changed & bit) {
366 // it changed, print it
378 JvmtiEventControllerPrivate::trace_changed(jlong now_enabled, jlong changed) { argument
385 if (changed & bit) {
386 // it changed, print it
469 // if anything changed d
477 jlong changed = now_enabled ^ was_enabled; local
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DImageView.java281 // PENDING: This needs to be changed to support the CSS versions
326 * Invoked when the Elements attributes have changed. Recreates the image.
861 // preference changed, or repaint, we just reset the fWidth/fHeight as
877 // Be sure image hasn't changed since we don't
902 short changed = 0;
905 changed |= 1;
909 changed |= 2;
913 if ((changed & 1) == 1 && (state & WIDTH_FLAG) == 0) {
916 if ((changed & 2) == 2 && (state & HEIGHT_FLAG) == 0) {
925 if (changed !
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXFramePeer.java254 int changed = state ^ newState;
255 int changeIconic = changed & Frame.ICONIFIED;
270 if ((changed & ~Frame.ICONIFIED) != 0) {
293 stateLog.finer("either not a state atom or state has not been changed");
298 int changed = state ^ newState;
299 if (changed == 0) {
310 if ((changed & Frame.ICONIFIED) != 0) {

Completed in 416 milliseconds

1234