Lines Matching defs:FullPaths
3544 static void removeRedundantPaths(std::list<FullPathTy> &FullPaths) {
3545 FullPaths.remove_if([&](const FullPathTy &SpecificPath) {
3546 for (const FullPathTy &OtherPath : FullPaths) {
3594 std::list<FullPathTy> &FullPaths) {
3596 if (FullPaths.empty())
3598 if (FullPaths.size() == 1)
3599 return &FullPaths.front();
3604 for (const FullPathTy &SpecificPath : FullPaths) {
3658 return BestPath ? BestPath : &FullPaths.front();
3666 std::list<FullPathTy> FullPaths;
3671 FullPaths);
3673 removeRedundantPaths(FullPaths);
3676 selectBestPath(Context, RD, *Info, FullPaths))
3679 FullPaths.clear();