Home
last modified time | relevance | path

Searched refs:changedKey (Results 1 – 25 of 54) sorted by relevance

123

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/databinding/observable/map/
H A DCompositeMap.java93 for (K changedKey : diff.getChangedKeys()) {
94 I oldValue1 = diff.getOldValue(changedKey);
95 I newValue2 = diff.getNewValue(changedKey);
99 pendingRemoves.put(oldValue1, changedKey);
110 changes.add(changedKey);
111 oldValues.put(changedKey, secondMap.get(oldValue1));
112 wrappedMap.put(changedKey, secondMap.get(newValue2));
202 for (I changedKey : diff.getChangedKeys()) {
203 Set<K> elements2 = firstMap.getKeys(changedKey);
206 oldValues.put(element3, diff.getOldValue(changedKey));
[all …]
H A DBidiObservableMap.java94 for (K changedKey : diff.getChangedKeys()) { in handleMapChange()
95 removeMapping(changedKey, diff.getOldValue(changedKey)); in handleMapChange()
96 addMapping(changedKey, diff.getNewValue(changedKey)); in handleMapChange()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/internal/databinding/observable/masterdetail/
H A DMapDetailValueObservableMap.java132 for (K changedKey : changedKeys) { in handleMasterMapChange()
135 IObservableValue<E> oldDetailValue = getDetailObservableValue(changedKey); in handleMasterMapChange()
136 oldValues.put(changedKey, oldDetailValue.getValue()); in handleMasterMapChange()
140 removeDetailObservable(changedKey); in handleMasterMapChange()
141 addDetailObservable(changedKey); in handleMasterMapChange()
144 IObservableValue<E> newDetailValue = getDetailObservableValue(changedKey); in handleMasterMapChange()
145 newValues.put(changedKey, newDetailValue.getValue()); in handleMasterMapChange()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/
H A DJavadocProblemsConfigurationBlock.java283 protected void validateSettings(Key changedKey, String oldValue, String newValue) { in validateSettings() argument
288 if (changedKey != null) { in validateSettings()
289 if (PREF_PB_INVALID_JAVADOC.equals(changedKey) || in validateSettings()
290 PREF_PB_MISSING_JAVADOC_TAGS.equals(changedKey) || in validateSettings()
291 PREF_PB_MISSING_JAVADOC_COMMENTS.equals(changedKey) || in validateSettings()
292 PREF_JAVADOC_SUPPORT.equals(changedKey) || in validateSettings()
293 PREF_PB_INVALID_JAVADOC_TAGS.equals(changedKey)) { in validateSettings()
H A DJavaEditorCodeMiningConfigurationBlock.java233 protected void validateSettings(Key changedKey, String oldValue, String newValue) { in validateSettings() argument
237 if (changedKey != null) { in validateSettings()
238 …CODEMINING_ENABLED.equals(changedKey) || PREF_SHOW_REFERENCES.equals(changedKey) || PREF_SHOW_IMPL… in validateSettings()
H A DProblemSeveritiesConfigurationBlock.java1272 if (changedKey != null) { in validateSettings()
1273 if (PREF_PB_UNUSED_PARAMETER.equals(changedKey) || in validateSettings()
1274 PREF_PB_DEPRECATION.equals(changedKey) || in validateSettings()
1275 PREF_PB_LOCAL_VARIABLE_HIDING.equals(changedKey) || in validateSettings()
1276 PREF_15_PB_INCOMPLETE_ENUM_SWITCH.equals(changedKey) || in validateSettings()
1279 PREF_PB_SUPPRESS_WARNINGS.equals(changedKey) || in validateSettings()
1280 PREF_ANNOTATION_NULL_ANALYSIS.equals(changedKey)) { in validateSettings()
1285 && (PREF_ANNOTATION_NULL_ANALYSIS.equals(changedKey) in validateSettings()
1286 || PREF_PB_NULL_REFERENCE.equals(changedKey) in validateSettings()
1287 || PREF_PB_POTENTIAL_NULL_REFERENCE.equals(changedKey) in validateSettings()
[all …]
H A DJavaBuildConfigurationBlock.java264 protected void validateSettings(Key changedKey, String oldValue, String newValue) { in validateSettings() argument
269 if (changedKey != null) { in validateSettings()
270 if (PREF_PB_MAX_PER_UNIT.equals(changedKey)) { in validateSettings()
272 } else if (PREF_RESOURCE_FILTER.equals(changedKey)) { in validateSettings()
H A DComplianceConfigurationBlock.java589 if (changedKey != null) { in validateSettings()
590 if (INTR_DEFAULT_COMPLIANCE.equals(changedKey)) { in validateSettings()
594 } else if (INTR_COMPLIANCE_FOLLOWS_EE.equals(changedKey)) { in validateSettings()
602 } else if (PREF_COMPLIANCE.equals(changedKey)) { in validateSettings()
610 } else if (PREF_RELEASE.equals(changedKey)) { in validateSettings()
616 } else if (PREF_SOURCE_COMPATIBILITY.equals(changedKey)) { in validateSettings()
620 } else if (PREF_CODEGEN_TARGET_PLATFORM.equals(changedKey)) { in validateSettings()
637 } else if (PREF_PB_ENUM_AS_IDENTIFIER.equals(changedKey) || in validateSettings()
638 PREF_PB_ASSERT_AS_IDENTIFIER.equals(changedKey)) { in validateSettings()
640 } else if (PREF_ENABLE_PREVIEW.equals(changedKey)) { in validateSettings()
[all …]
H A DTodoTaskConfigurationBlock.java280 protected void validateSettings(Key changedKey, String oldValue, String newValue) { in validateSettings() argument
285 if (changedKey != null) { in validateSettings()
286 if (PREF_COMPILER_TASK_TAGS.equals(changedKey)) { in validateSettings()
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/xmlregistry/
H A DXMLRegistry.cpp224 void XMLRegistry::notifyKeyObservers(const std::string& changedKey, const std::string& newVal) in notifyKeyObservers() argument
226 for (KeyObserverMap::iterator it = _keyObservers.find(changedKey); in notifyKeyObservers()
227 it != _keyObservers.upper_bound(changedKey) && it != _keyObservers.end(); in notifyKeyObservers()
233 keyObserver->keyChanged(changedKey, newVal); in notifyKeyObservers()
H A DXMLRegistry.h156 void notifyKeyObservers(const std::string& changedKey, const std::string& newVal);
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/preferences/
H A DTodoTaskConfigurationBlock.java229 protected void validateSettings(String changedKey, String newValue) { in validateSettings() argument
230 if (changedKey != null) { in validateSettings()
231 if (PREF_COMPILER_TASK_TAGS.equals(changedKey)) { in validateSettings()
H A DCompilerConfigurationBlock.java589 protected void validateSettings(String changedKey, String newValue) { in validateSettings() argument
591 if (changedKey != null) { in validateSettings()
608 if (PREF_PB_MAX_PER_UNIT.equals(changedKey)) { in validateSettings()
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/brush/
H A DBrushModule.h67 void keyChanged (const std::string& changedKey, const std::string& newValue);
H A DBrushModule.cpp77 void BrushModuleClass::keyChanged(const std::string& changedKey, const std::string& newValue) { in keyChanged() argument
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/map/
H A DAutoSaver.h50 void keyChanged(const std::string& changedKey, const std::string& newValue);
H A DMapCompiler.h39 void keyChanged (const std::string& changedKey, const std::string& newValue);
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/pathfinding/
H A DPathfinding.h37 void keyChanged (const std::string& changedKey, const std::string& newValue);
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/ui/mru/
H A DMRU.h66 void keyChanged(const std::string& changedKey, const std::string& newValue);
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/eventmanager/
H A DRegistryToggle.h48 void keyChanged(const std::string& changedKey, const std::string& newValue) { in keyChanged() argument
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/camera/
H A DCameraSettings.h49 void keyChanged (const std::string& changedKey, const std::string& newValue);
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/textures/
H A DTextureManipulator.h45 void keyChanged (const std::string& changedKey, const std::string& newValue);
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/clipper/
H A DClipper.h49 void keyChanged (const std::string& changedKey, const std::string& newValue);
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/material/
H A DMaterialShaderSystem.h61 void keyChanged (const std::string& changedKey, const std::string& newValue);
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/undo/
H A DRadiantUndoSystem.h56 void keyChanged (const std::string& changedKey, const std::string& newValue);

123