Lines Matching defs:name
18 // Neither the name of Google Inc. nor the names of its
42 std::string name = info.param;
44 std::replace(name.begin(), name.end(), '.', '_');
45 std::replace(name.begin(), name.end(), '-', '_');
46 return name;
174 std::string GetSuffix(const std::string& name)
176 const size_t pos = name.rfind('.');
177 return (pos == std::string::npos) ? "" : name.substr(name.rfind('.') + 1);