| 100 | } |
| 101 | |
| 102 | static QSet<QString> getDirsInDir(const QString &path) |
| 103 | { |
| 104 | QSet<QString> result; |
| 105 | for (const auto &dir : QDir(path).entryList(QDir::AllDirs)) { |
| 106 | result << dir; |
| 107 | } |
| 108 | return result; |
| 109 | } |
| 110 | |
| 111 | static void reduceSetToPatternMatch(QSet<QString> &set, |
| 112 | const RegexConfig ®ex, |
no outgoing calls
no test coverage detected