Home | History | Annotate | Download | only in Sema

Lines Matching full:strref

4202   StringRef StrRef = FExpr->getString();
4203 const char *Str = StrRef.data();
4208 StrRef.size());
4213 if (TypeSize <= StrRef.size() &&
4214 StrRef.substr(0, TypeSize).find('\0') == StringRef::npos) {
4258 StringRef StrRef = FExpr->getString();
4259 const char *Str = StrRef.data();
4264 size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size());