Home | History | Annotate | Download | only in aura

Lines Matching defs:end_pos

3152   std::string::size_type end_pos = description.find(' ', start_pos);
3153 while (end_pos != std::string::npos) {
3154 const std::string::size_type part_length = end_pos - start_pos;
3160 end_pos + 1,
3162 end_pos = description.find(' ', start_pos);
3163 if (end_pos == std::string::npos && start_pos != end_pos)
3164 end_pos = description.length();
3166 ++end_pos;
3172 start_pos = ++end_pos;
3173 end_pos = description.find(' ', start_pos);
3176 return end_pos;