Lines Matching defs:text_length
117 uint8_t text_length;
118 fuzz->nextRange(&text_length, 0, MAX_TEXT_LENGTH);
119 fuzz->nextN(buffer, text_length);
120 return text_length;
126 const auto text_length = RandomText(text, fuzz);
127 builder->addText(text, text_length);
132 const auto text_length = RandomText(text, fuzz);
133 builder->addText(std::u16string(text, text_length));
143 const auto text_length = RandomText(text, fuzz);
146 for (auto& c : std::string(text, text_length)) {