Lines Matching defs:fullname
252 void parseName(const String &fullname,
492 void DepTool::parseName(const String &fullname,
497 if (fullname.size() < 2)
500 String::size_type pos = fullname.find_last_of('/');
501 if (pos != fullname.npos && pos<fullname.size()-1)
503 path = fullname.substr(0, pos);
505 basename = fullname.substr(pos, fullname.size()-pos);
510 basename = fullname;