Searched refs:_selection_models (Results 1 – 3 of 3) sorted by relevance
1105 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()
214 std::map<SPDocument *, AppSelectionModel *> _selection_models; variable
993 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: