Lines Matching defs:fullname
5866 void parseName(const String &fullname,
5975 void DepTool::parseName(const String &fullname,
5980 if (fullname.size() < 2)
5983 std::size_t pos = fullname.find_last_of('/');
5984 if (pos != fullname.npos && pos<fullname.size()-1)
5986 path = fullname.substr(0, pos);
5988 basename = fullname.substr(pos, fullname.size()-pos);
5993 basename = fullname;