Home | History | Annotate | Download | only in runtime

Lines Matching defs:target_path

993   std::vector<std::string> target_path;
995 Split(target, '/', &target_path);
999 std::reverse(target_path.begin(), target_path.end());
1003 // components, this becomes the common suffix of target_path and cwd_path.
1004 while (!target_path.empty() && !cwd_path.empty()
1005 && target_path.back() == cwd_path.back()) {
1006 target_path.pop_back();
1012 // the end of target_path.
1014 target_path.push_back("..");
1018 std::reverse(target_path.begin(), target_path.end());
1019 return Join(target_path, '/');