Home | History | Annotate | Download | only in runtime

Lines Matching refs:target_path

1076   std::vector<std::string> target_path;
1078 Split(target, '/', &target_path);
1082 std::reverse(target_path.begin(), target_path.end());
1086 // components, this becomes the common suffix of target_path and cwd_path.
1087 while (!target_path.empty() && !cwd_path.empty()
1088 && target_path.back() == cwd_path.back()) {
1089 target_path.pop_back();
1095 // the end of target_path.
1097 target_path.push_back("..");
1101 std::reverse(target_path.begin(), target_path.end());
1102 return android::base::Join(target_path, '/');