Lines Matching defs:in
5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
30 " * you may not use this file except in compliance with the License.\n"
35 " * Unless required by applicable law or agreed to in writing, software\n"
99 string in = stringReplace(html, "<li>", "- ");
101 for (size_t start = 0; start < in.size(); start++) {
102 size_t lt = in.find('<', start);
104 out += in.substr(start);
107 out += in.substr(start, lt - start);
108 if (isalpha(in[lt + 1]) || in[lt + 1] == '/') {
110 start = in.find('>', lt + 1);