Home
last modified time | relevance | path

Searched refs:yearRx (Results 1 – 7 of 7) sorted by relevance

/dports/misc/tellico/tellico-3.4.2/src/fetch/
H A Dkinoteatrfetcher.cpp148 QRegularExpression yearRx(QStringLiteral(" ([12]\\d\\d\\d)[ \"]")); in slotComplete() local
161 match = yearRx.match(resultText); in slotComplete()
274 QRegularExpression yearRx(QStringLiteral("Рік:.*?([12]\\d\\d\\d).*?</a"), in parseEntry() local
276 match = yearRx.match(str_); in parseEntry()
H A Dbedethequefetcher.cpp346 QRegExp yearRx(QLatin1String("\\d{4}")); in parseEntry() local
360 if(yearRx.indexIn(data) > -1) { in parseEntry()
361 entry->setField(it.value(), yearRx.cap(0)); in parseEntry()
H A Dibsfetcher.cpp173 QRegularExpression yearRx(QLatin1String("<span class=\"cc-owner\">.*?([12]\\d{3}).*?</"), in slotComplete() local
187 auto yearMatch = yearRx.match(s); in slotComplete()
H A Dopenlibraryfetcher.cpp267 QRegularExpression yearRx(QStringLiteral("\\d{4}")); in slotComplete() local
268 QRegularExpressionMatch yearMatch = yearRx.match(mapValue(resultMap, "publish_date")); in slotComplete()
H A Dupcitemdbfetcher.cpp366 static const QRegularExpression yearRx(QLatin1String("\\d{4}")); in parseTitleToken() local
367 QRegularExpressionMatch yearMatch = yearRx.match(token_); in parseTitleToken()
H A Danimenfofetcher.cpp168 QRegExp yearRx(QLatin1String("\\d{4}")); in slotComplete() local
200 if(yearRx.exactMatch(infoRx.cap(1))) { in slotComplete()
H A Dimdbfetcher.cpp801 …static const QRegularExpression yearRx(QLatin1String("\\d{4}")); // ignore ending year for tv seri… in doTitle() local
802 auto match = yearRx.match(inParentheses); in doTitle()