Home | History | Annotate | Download | only in performance

Lines Matching refs:firstLineEndNdx

95 	int firstLineEndNdx = 0;
96 while (firstLineEndNdx < (int)str.size() && str[firstLineEndNdx] != '\n')
98 res += str[firstLineEndNdx];
99 firstLineEndNdx++;
102 DE_ASSERT(firstLineEndNdx < (int)str.size());
119 res.append(&str.c_str()[firstLineEndNdx + 1]);