Home | History | Annotate | Download | only in Sema

Lines Matching refs:StrLen

2095       uint64_t StrLen = SL->getLength();
2096 if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen))
2097 StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue();
2098 StructuredList->resizeInits(Context, StrLen);
2102 for (unsigned i = 0, e = StrLen; i != e; ++i) {
2117 uint64_t StrLen = Str.size();
2118 if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen))
2119 StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue();
2120 StructuredList->resizeInits(Context, StrLen);
2124 for (unsigned i = 0, e = StrLen; i != e; ++i) {