QFileInfo CppToolsPlugin::findFile(const QDir &dir, const QString &name, const ProjectExplorer::Project *project) const { if (debug) qDebug() << Q_FUNC_INFO << dir << name; QFileInfo fileInSameDir(dir, name); if (project && !fileInSameDir.isFile()) { QString pattern = QString(1, QLatin1Char('/')); pattern += name; const QStringList projectFiles = project->files(ProjectExplorer::Project::AllFiles); const QStringList::const_iterator pcend = projectFiles.constEnd(); for (QStringList::const_iterator it = projectFiles.constBegin(); it != pcend; ++it) if (it->endsWith(pattern)) return QFileInfo(*it); return QFileInfo(); } return fileInSameDir; }
static QStringList findFilesInProject(const QString &name, const ProjectExplorer::Project *project) { if (debug) qDebug() << Q_FUNC_INFO << name << project; if (!project) return QStringList(); QString pattern = QString(1, QLatin1Char('/')); pattern += name; const QStringList projectFiles = project->files(ProjectExplorer::Project::AllFiles); const QStringList::const_iterator pcend = projectFiles.constEnd(); QStringList candidateList; for (QStringList::const_iterator it = projectFiles.constBegin(); it != pcend; ++it) { if (it->endsWith(pattern)) candidateList.append(*it); } return candidateList; }
static QStringList findFilesInProject(const QString &name, const ProjectExplorer::Project *project) { if (debug) qDebug() << Q_FUNC_INFO << name << project; if (!project) return QStringList(); QString pattern = QString(1, QLatin1Char('/')); pattern += name; const QStringList projectFiles = Utils::transform(project->files(ProjectExplorer::Project::AllFiles), &Utils::FileName::toString); const QStringList::const_iterator pcend = projectFiles.constEnd(); QStringList candidateList; for (QStringList::const_iterator it = projectFiles.constBegin(); it != pcend; ++it) { if (it->endsWith(pattern, Utils::HostOsInfo::fileNameCaseSensitivity())) candidateList.append(*it); } return candidateList; }