Lines Matching refs:spos
57 size_t spos, epos; in trim_comments() local
59 spos = s.find("/*"); in trim_comments()
61 s = s.substr(spos+3, epos-(spos+3)); in trim_comments()
92 size_t spos, epos; in print_line() local
96 spos = line.find("/*"); in print_line()
98 if (spos!=string::npos && epos!=string::npos) { in print_line()
99 sout << line.substr(0, spos); in print_line()
100 sout << "</b>" << line.substr(spos) << "<b>" << endl; in print_line()
113 size_t spos, l; in main() local
163 spos = line.find("/**="); in main()
164 if (spos==string::npos) { in main()
165 spos = line.find("/*!"); in main()
166 if (spos==string::npos) in main()
167 spos = line.find("/**"); in main()
168 if (spos==string::npos) in main()
169 spos = line.find("/*-"); in main()
170 if (spos==string::npos) in main()
171 spos = line.find("/*="); in main()
172 if (spos==string::npos) in main()
174 exclam = line[spos+2]; in main()
179 if (!comments.empty()) comments[0] = line.substr(spos+3); in main()