Home | History | Annotate | Download | only in Sema

Lines Matching refs:TypeSize

3534   size_t TypeSize = T->getSize().getZExtValue();
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) {