Searched refs:RStr (Results 1 – 2 of 2) sorted by relevance
222 static const std::regex RStr("^(\\d+)(?:,(\\d+))*$"); in parseAnnotation() local223 if (std::smatch MatchStr; std::regex_match(Item, MatchStr, RStr)) { in parseAnnotation()
1499 StringRef LStr, RStr; in optimizeMemCmpVarSize() local1501 !getConstantStringInfo(RHS, RStr, /*TrimAtNul=*/false)) in optimizeMemCmpVarSize()1511 for (uint64_t MinSize = std::min(LStr.size(), RStr.size()); ; ++Pos) { in optimizeMemCmpVarSize()1513 (StrNCmp && (LStr[Pos] == '\0' && RStr[Pos] == '\0'))) { in optimizeMemCmpVarSize()1521 if (LStr[Pos] != RStr[Pos]) in optimizeMemCmpVarSize()1527 int IRes = UChar(LStr[Pos]) < UChar(RStr[Pos]) ? -1 : 1; in optimizeMemCmpVarSize()