Searched refs:changes (Results 1 - 25 of 32) sorted by relevance

12

/openjdk9/jdk/src/java.desktop/share/classes/java/beans/beancontext/
H A DBeanContextMembershipEvent.java64 * @param changes The Children affected
65 * @throws NullPointerException if {@code changes} is {@code null}
69 public BeanContextMembershipEvent(BeanContext bc, Collection changes) { argument
72 if (changes == null) throw new NullPointerException(
73 "BeanContextMembershipEvent constructor: changes is null.");
75 children = changes;
82 * @param changes The Children effected
83 * @exception NullPointerException if changes associated with this
87 public BeanContextMembershipEvent(BeanContext bc, Object[] changes) { argument
90 if (changes
[all...]
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/tree/analysis/
H A DSubroutine.java101 boolean changes = false;
105 changes = true;
113 changes = true;
117 return changes;
H A DAnalyzer.java530 boolean changes;
534 changes = true;
536 changes = oldFrame.merge(frame, interpreter);
542 changes = true;
546 changes |= oldSubroutine.merge(subroutine);
549 if (changes && !queued[insn]) {
560 boolean changes;
566 changes = true;
568 changes = oldFrame.merge(afterRET, interpreter);
572 changes |
[all...]
H A DFrame.java718 boolean changes = false;
723 changes = true;
726 return changes;
741 boolean changes = false;
745 changes = true;
748 return changes;
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DDeepNodeListImpl.java44 * concerned, the former has been dynamically updated as the changes
86 protected int changes=0; field in class:DeepNodeListImpl
127 if(rootNode.changes() != changes) {
129 changes = rootNode.changes();
/openjdk9/jdk/src/java.desktop/macosx/classes/apple/laf/
H A DJRSUIControl.java93 private final HashMap<Key, DoubleValue> changes; field in class:JRSUIControl
105 changes = new HashMap<Key, DoubleValue>();
113 changes = new HashMap<Key, DoubleValue>(other.nativeMap);
114 changes.putAll(other.changes);
136 for (final JRSUIConstants.Key key : new HashSet<JRSUIConstants.Key>(changes.keySet())) {
138 final JRSUIConstants.DoubleValue value = changes.get(key);
155 changes.remove(key);
177 changes.remove(key);
181 changes
[all...]
/openjdk9/jdk/src/java.base/macosx/native/libnio/ch/
H A DKQueue.c77 struct kevent changes[1]; local
81 EV_SET(&changes[0], fd, filter, flags, 0, 0, 0);
82 RESTARTABLE(kevent(kqfd, &changes[0], 1, NULL, 0, &timeout), res);
H A DKQueueArrayWrapper.c112 struct kevent changes[2]; local
121 EV_SET(&changes[0], fd, EVFILT_READ, r ? EV_ADD : EV_DELETE, 0, 0, 0);
122 EV_SET(&changes[1], fd, EVFILT_WRITE, w ? EV_ADD : EV_DELETE, 0, 0, 0);
123 kevent(kq, changes, 2, errors, 2, &dontBlock);
/openjdk9/hotspot/src/share/vm/code/
H A Ddependencies.cpp1199 Klass* find_witness_in(KlassDepChange& changes,
1203 Klass* find_witness_subtype(Klass* context_type, KlassDepChange* changes = NULL) {
1210 if (changes != NULL) {
1211 return find_witness_in(*changes, context_type, participants_hide_witnesses);
1216 Klass* find_witness_definer(Klass* context_type, KlassDepChange* changes = NULL) {
1222 if (changes != NULL) {
1223 return find_witness_in(*changes, context_type, !participants_hide_witnesses);
1277 Klass* ClassHierarchyWalker::find_witness_in(KlassDepChange& changes, argument
1280 assert(changes.involves_context(context_type), "irrelevant dependency");
1281 Klass* new_type = changes
1536 check_abstract_with_unique_concrete_subtype(Klass* ctxk, Klass* conck, KlassDepChange* changes) argument
1546 check_abstract_with_no_concrete_subtype(Klass* ctxk, KlassDepChange* changes) argument
1556 check_concrete_with_no_concrete_subtype(Klass* ctxk, KlassDepChange* changes) argument
1614 check_abstract_with_exclusive_concrete_subtypes( Klass* ctxk, Klass* k1, Klass* k2, KlassDepChange* changes) argument
1678 check_unique_concrete_method(Klass* ctxk, Method* uniqm, KlassDepChange* changes) argument
1723 check_exclusive_concrete_methods(Klass* ctxk, Method* m1, Method* m2, KlassDepChange* changes) argument
1733 check_has_no_finalizable_subclasses(Klass* ctxk, KlassDepChange* changes) argument
1740 check_call_site_target_value(oop call_site, oop method_handle, CallSiteDepChange* changes) argument
1770 check_klass_dependency(KlassDepChange* changes) argument
1812 check_call_site_dependency(CallSiteDepChange* changes) argument
1830 spot_check_dependency_at(DepChange& changes) argument
[all...]
H A Ddependencies.hpp39 // the runtime system, e.g. class hierarchy changes. An example is an
43 // by changes in the runtime system. We can think of these assertions
145 // count, for robustness in the face of complex schema changes.
411 KlassDepChange* changes = NULL);
413 KlassDepChange* changes = NULL);
415 KlassDepChange* changes = NULL);
417 KlassDepChange* changes = NULL);
419 KlassDepChange* changes = NULL);
421 KlassDepChange* changes = NULL);
422 static Klass* check_has_no_finalizable_subclasses(Klass* ctxk, KlassDepChange* changes
714 ContextStream(DepChange& changes) argument
718 ContextStream(DepChange& changes, NoSafepointVerifier& nsv) argument
[all...]
H A DdependencyContext.cpp59 // are dependent on the changes that were passed in and mark them for
62 int DependencyContext::mark_dependent_nmethods(DepChange& changes) { argument
68 if (b->count() > 0 && nm->is_alive() && !nm->is_marked_for_deoptimization() && nm->check_dependency_on(changes)) {
72 changes.print();
76 changes.mark_for_deoptimization(nm);
H A DdependencyContext.hpp137 int mark_dependent_nmethods(DepChange& changes);
H A DcodeCache.cpp1104 int CodeCache::mark_for_deoptimization(KlassDepChange& changes) { argument
1116 for (DepChange::ContextStream str(changes, nsv); str.next(); ) {
1118 number_of_marked_CodeBlobs += InstanceKlass::cast(d)->mark_dependent_nmethods(changes);
1126 nmethod::check_all_dependencies(changes);
1236 KlassDepChange changes(dependee);
1239 if (mark_for_deoptimization(changes) > 0) {
H A Dnmethod.hpp546 static void check_all_dependencies(DepChange& changes);
548 // tells if this compiled method is dependent on the given changes,
549 // and the changes have invalidated it
550 bool check_dependency_on(DepChange& changes);
H A DcodeCache.hpp267 static int mark_for_deoptimization(KlassDepChange& changes);
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DZoneView.java334 * zones and not directly effected by the changes to the
350 * @param changes the change information from the associated document
355 public void insertUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
356 handleInsert(changes.getOffset(), changes.getLength());
357 super.insertUpdate(changes, a, f);
367 * @param changes the change information from the associated document
372 public void removeUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
373 handleRemove(changes.getOffset(), changes
[all...]
H A DFieldView.java149 * result of changes to the document model. The bounded
288 * @param changes the change information from the associated document
293 public void insertUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
294 super.insertUpdate(changes, adjustAllocation(a), f);
302 * @param changes the change information from the associated document
307 public void removeUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
308 super.removeUpdate(changes, adjustAllocation(a), f);
H A DFlowView.java181 * appropriate. If the height of this view changes
257 * @param changes the change information from the associated document
262 public void insertUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
263 layoutPool.insertUpdate(changes, a, f);
264 strategy.insertUpdate(this, changes, getInsideAllocation(a));
271 * @param changes the change information from the associated document
276 public void removeUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
277 layoutPool.removeUpdate(changes, a, f);
278 strategy.removeUpdate(this, changes, getInsideAllocation(a));
285 * @param changes th
290 changedUpdate(DocumentEvent changes, Shape a, ViewFactory f) argument
[all...]
H A DPlainView.java585 * @param changes the change information from the associated document
590 public void insertUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
591 updateDamage(changes, a, f);
598 * @param changes the change information from the associated document
603 public void removeUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
604 updateDamage(changes, a, f);
611 * @param changes the change information from the associated document
616 public void changedUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
617 updateDamage(changes, a, f);
663 * @param changes th
668 updateDamage(DocumentEvent changes, Shape a, ViewFactory f) argument
[all...]
H A DDefaultStyledDocument.java244 * {@code DocumentEvent} for changes in element structure and {@code
245 * UndoableEditEvent} for changes in document content.</p>
483 * A write lock is held by this operation while changes
504 DefaultDocumentEvent changes =
508 buffer.change(offset, length, changes);
522 changes.addEdit(new AttributeUndoableEdit(run, sCopy, replace));
528 changes.end();
529 fireChangedUpdate(changes);
530 fireUndoableEditUpdate(new UndoableEditEvent(this, changes));
554 DefaultDocumentEvent changes
2477 transient Vector<ElemChanges> changes; field in class:DefaultStyledDocument.ElementBuffer
[all...]
/openjdk9/jdk/test/java/util/TimeZone/
H A DTimeZoneBoundaryTest.java441 int changes = 0;
453 ++changes;
457 if (changes == 0)
462 else if (changes != 2)
464 errln("FAIL: Timezone<" + z.getID() + "> " + changes + " changes seen; should see 0 or 2");
468 errln("FAIL: Timezone<" + z.getID() + "> useDaylightTime false but 2 changes seen");
470 if (changes != expectedChanges)
472 errln("FAIL: Timezone<" + z.getID() + "> " + changes + " changes see
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DBlockView.java340 public void changedUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
341 super.changedUpdate(changes, a, f);
342 int pos = changes.getOffset();
343 if (pos <= getStartOffset() && (pos + changes.getLength()) >=
H A DHRuleView.java296 public void changedUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
297 super.changedUpdate(changes, a, f);
298 int pos = changes.getOffset();
299 if (pos <= getStartOffset() && (pos + changes.getLength()) >=
H A DHTMLDocument.java498 DefaultDocumentEvent changes =
513 changes.addEdit(new AttributeUndoableEdit(paragraph, sCopy, replace));
519 changes.end();
520 fireChangedUpdate(changes);
521 fireUndoableEditUpdate(new UndoableEditEvent(this, changes));
819 DefaultDocumentEvent changes = new DefaultDocumentEvent(element.getStartOffset(),
824 changes.addEdit(new AttributeUndoableEdit(element, sCopy, false));
827 changes.end();
828 fireChangedUpdate(changes);
829 fireUndoableEditUpdate(new UndoableEditEvent(this, changes));
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicTextFieldUI.java159 * changes as the size changes.
285 * result of changes to the document model. The bounded
401 * @param changes the change information from the associated document
406 public void insertUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
407 super.insertUpdate(changes, adjustAllocation(a), f);
415 * @param changes the change information from the associated document
420 public void removeUpdate(DocumentEvent changes, Shape a, ViewFactory f) { argument
421 super.removeUpdate(changes, adjustAllocation(a), f);

Completed in 316 milliseconds

12