Searched refs:camelCaseRegex (Results 1 – 1 of 1) sorted by relevance
53 static const QRegularExpression camelCaseRegex(QStringLiteral("([a-z0-9])([A-Z])")); in formatPropertyName() local54 return nameAsString.replace(camelCaseRegex, QStringLiteral("\\1-\\2")).toLower().toLatin1(); in formatPropertyName()