Home | History | Annotate | Download | only in Sema

Lines Matching refs:StrRef

3529   StringRef StrRef = FExpr->getString();
3530 const char *Str = StrRef.data();
3535 size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size());
3540 if (TypeSize <= StrRef.size() &&
3541 StrRef.substr(0, TypeSize).find('\0') == StringRef::npos) {