Searched refs:firstWordPos (Results 1 – 1 of 1) sorted by relevance
1392 size_t firstWordPos = line.find_first_not_of(" \t", pos); in tokenizeDoxygenComment() local1393 if (firstWordPos == string::npos) { in tokenizeDoxygenComment()1398 if (firstWordPos > pos) { in tokenizeDoxygenComment()1399 m_tokenList.push_back(Token(PLAINSTRING, line.substr(pos, firstWordPos - pos))); in tokenizeDoxygenComment()1400 pos = firstWordPos; in tokenizeDoxygenComment()