Searched refs:dot_pos (Results 1 – 2 of 2) sorted by relevance
172 size_t dot_pos = name.find('.', pos); in write() local173 if (dot_pos == std::string::npos) { in write()178 size_t len = dot_pos - pos; in write()181 name.substr(pos, dot_pos - pos).c_str(), len); in write()190 std::next(name.begin(), dot_pos), in write()192 pos = dot_pos + 1; in write()
441 size_t dot_pos = type.rfind('.'); in ParsePreprocessedLine() local442 if (dot_pos != string::npos) { in ParsePreprocessedLine()443 *class_name = type.substr(dot_pos + 1); in ParsePreprocessedLine()444 *package = Split(type.substr(0, dot_pos), "."); in ParsePreprocessedLine()