Home | History | Annotate | Download | only in Sema

Lines Matching defs:StrLen

2234       uint64_t StrLen = SL->getLength();
2235 if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen))
2236 StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue();
2237 StructuredList->resizeInits(Context, StrLen);
2241 for (unsigned i = 0, e = StrLen; i != e; ++i) {
2256 uint64_t StrLen = Str.size();
2257 if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen))
2258 StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue();
2259 StructuredList->resizeInits(Context, StrLen);
2263 for (unsigned i = 0, e = StrLen; i != e; ++i) {