Home
last modified time | relevance | path

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

/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/projectexplorer/
H A Dcustomparserssettingspage.cpp54 m_customParsers = ProjectExplorerPlugin::customParsers(); in CustomParsersSettingsWidget()
83 m_customParsers << newParser; in CustomParsersSettingsWidget()
89 m_customParsers.removeAt(m_parserListView.row(sel.first())); in CustomParsersSettingsWidget()
95 CustomParserSettings &s = m_customParsers[m_parserListView.row(sel.first())]; in CustomParsersSettingsWidget()
105 m_customParsers[m_parserListView.row(item)].displayName = item->text(); in CustomParsersSettingsWidget()
120 void apply() override { ProjectExplorerPlugin::setCustomParsers(m_customParsers); } in apply()
125 Utils::sort(m_customParsers, in resetListView()
129 for (const CustomParserSettings &s : qAsConst(m_customParsers)) { in resetListView()
137 QList<CustomParserSettings> m_customParsers; member in ProjectExplorer::Internal::CustomParsersSettingsWidget
H A Dbuildconfiguration.cpp155 QList<Utils::Id> m_customParsers; member in ProjectExplorer::Internal::BuildConfigurationPrivate
390 map.insert(CUSTOM_PARSERS_KEY, transform(d->m_customParsers,&Utils::Id::toSetting)); in toMap()
424 d->m_customParsers = transform(map.value(CUSTOM_PARSERS_KEY).toList(), &Utils::Id::fromSetting); in fromMap()
513 return d->m_customParsers; in customParsers()
518 d->m_customParsers = parsers; in setCustomParsers()
H A Dprojectexplorer.cpp568 QList<CustomParserSettings> m_customParsers; member in ProjectExplorer::ProjectExplorerPluginPrivate
1612 dd->m_customParsers << settings; in initialize()
2297 s->setValueWithDefault(Constants::CUSTOM_PARSER_COUNT_KEY, int(dd->m_customParsers.count()), 0); in savePersistentSettings()
2298 for (int i = 0; i < dd->m_customParsers.count(); ++i) { in savePersistentSettings()
2300 dd->m_customParsers.at(i).toMap()); in savePersistentSettings()
4000 if (dd->m_customParsers != settings) { in setCustomParsers()
4001 dd->m_customParsers = settings; in setCustomParsers()
4009 QTC_ASSERT(!contains(dd->m_customParsers, [&settings](const CustomParserSettings &s) { in addCustomParser()
4013 dd->m_customParsers << settings; in addCustomParser()
4019 Utils::erase(dd->m_customParsers, [id](const CustomParserSettings &s) { in removeCustomParser()
[all …]