Home
last modified time | relevance | path

Searched refs:_selection_models (Results 1 – 3 of 3) sorted by relevance

/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/
H A Dinkscape.cpp1105 g_assert(_selection_models.find(document) == _selection_models.end()); in add_document()
1106 _selection_models[document] = new AppSelectionModel(document); in add_document()
1128 … std::map<SPDocument *, AppSelectionModel *>::iterator sel_iter = _selection_models.find(document); in remove_document()
1129 if (sel_iter != _selection_models.end()) { in remove_document()
1130 _selection_models.erase(sel_iter); in remove_document()
1220 std::map<SPDocument *, AppSelectionModel *>::iterator sel_iter = _selection_models.find(doc); in action_context_for_document()
1221 if (sel_iter == _selection_models.end()) { in action_context_for_document()
H A Dinkscape.h214 std::map<SPDocument *, AppSelectionModel *> _selection_models; variable
/dports/misc/orange3/orange3-3.29.1/Orange/widgets/evaluate/
H A Dowpredictions.py993 self._selection_models: List[SharedSelectionModel] = []
1007 self._selection_models.append(selection_model)
1016 if selection_model in self._selection_models:
1017 self._selection_models.remove(selection_model)
1091 for model in self._selection_models: