Searched refs:dot_pos (Results 1 – 2 of 2) sorted by relevance
176 size_t dot_pos = name.find('.', pos); in write() local177 if (dot_pos == std::string::npos) { in write()182 size_t len = dot_pos - pos; in write()185 name.substr(pos, dot_pos - pos).c_str(), len); in write()194 std::next(name.begin(), dot_pos), in write()196 pos = dot_pos + 1; in write()
484 size_t dot_pos = type.rfind('.'); in ParsePreprocessedLine() local485 if (dot_pos != string::npos) { in ParsePreprocessedLine()486 *class_name = type.substr(dot_pos + 1); in ParsePreprocessedLine()487 *package = Split(type.substr(0, dot_pos), "."); in ParsePreprocessedLine()