Lines Matching refs:path

152     std::filesystem::path path(argv.substr(0, argv.find('\0')));  in GetAndroidBuildTop()  local
153 path = std::filesystem::absolute(path); in GetAndroidBuildTop()
155 for (; path.parent_path() != path; path = path.parent_path()) { in GetAndroidBuildTop()
157 if (path.filename() == std::filesystem::path("linux-x86")) { in GetAndroidBuildTop()
158 android_build_top = path.parent_path().parent_path().parent_path(); in GetAndroidBuildTop()
162 if (path.filename() == std::filesystem::path("testcases")) { in GetAndroidBuildTop()
163 android_build_top = path.append("art_common"); in GetAndroidBuildTop()
172 android_build_top = std::filesystem::path(android_build_top).string(); in GetAndroidBuildTop()
201 android_host_out = (std::filesystem::path(android_out_dir) / "host" / "linux-x86").string(); in GetAndroidHostOut()
204 (std::filesystem::path(GetAndroidBuildTop()) / android_out_dir / "host" / "linux-x86") in GetAndroidHostOut()
207 std::filesystem::path expected(android_host_out); in GetAndroidHostOut()
209 std::filesystem::path from_env(std::filesystem::weakly_canonical(android_host_out_from_env)); in GetAndroidHostOut()
329 std::string path = GetAndroidBuildTop() + ART_CLANG_PATH + "/bin/"; in GetAndroidTool()
330 CHECK(OS::DirectoryExists(path.c_str())) << path; in GetAndroidTool()
331 path += name; in GetAndroidTool()
332 CHECK(OS::FileExists(path.c_str())) << path; in GetAndroidTool()
333 return path; in GetAndroidTool()
495 std::string path = executable_dir + "/art-gtest-jars-" + name + ext; in GetTestDexFileName() local
496 if (OS::FileExists(path.c_str())) { in GetTestDexFileName()
497 return path; in GetTestDexFileName()