Lines Matching refs:find
59 spos = s.find("/*");
60 epos = s.find("*/");
76 size_t const epos = line.find(terminator);
95 spos = line.find("/*");
96 epos = line.find("*/");
143 if (line.substr(0,7) == "typedef" && line.find("{")!=string::npos) {
154 if ((line.find("/**<")!=string::npos || line.find("/*!<")!=string::npos)
155 && line.find("*/")!=string::npos) {
162 spos = line.find("/**=");
164 spos = line.find("/*!");
166 spos = line.find("/**");
168 spos = line.find("/*-");
170 spos = line.find("/*=");
180 comments[comments.size()-1] = comments[comments.size()-1].substr(0, comments[comments.size()-1].find("*/"));