Home | History | Annotate | Download | only in Sema

Lines Matching defs:StrLen

2267       uint64_t StrLen = SL->getLength();
2268 if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen))
2269 StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue();
2270 StructuredList->resizeInits(Context, StrLen);
2274 for (unsigned i = 0, e = StrLen; i != e; ++i) {
2289 uint64_t StrLen = Str.size();
2290 if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen))
2291 StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue();
2292 StructuredList->resizeInits(Context, StrLen);
2296 for (unsigned i = 0, e = StrLen; i != e; ++i) {