Searched refs:full_path (Results 1 – 4 of 4) sorted by relevance
571 bool LocationIsOnArtModule(std::string_view full_path) { in LocationIsOnArtModule() argument577 return android::base::StartsWith(full_path, module_path); in LocationIsOnArtModule()597 static bool IsLocationOn(std::string_view full_path, in IsLocationOn() argument625 return android::base::StartsWith(full_path, path_prefix); in IsLocationOn()628 bool LocationIsOnSystemFramework(std::string_view full_path) { in LocationIsOnSystemFramework() argument629 return IsLocationOn(full_path, in LocationIsOnSystemFramework()635 bool LocationIsOnSystemExtFramework(std::string_view full_path) { in LocationIsOnSystemExtFramework() argument636 return IsLocationOn(full_path, in LocationIsOnSystemExtFramework()642 IsLocationOn(full_path, in LocationIsOnSystemExtFramework()648 bool LocationIsOnConscryptModule(std::string_view full_path) { in LocationIsOnConscryptModule() argument[all …]
174 std::string_view ApexNameFromLocation(std::string_view full_path);
179 std::string full_path(file_name); in WriteCompilationUnit()195 full_path = package_name + "/" + file_name; in WriteCompilationUnit()199 auto it2 = files_map.find(full_path); in WriteCompilationUnit()202 files_map.emplace(full_path, file_index); in WriteCompilationUnit()
42 std::string GetFilenameBase(const std::string& full_path) { in GetFilenameBase() argument43 size_t slash_pos = full_path.rfind('/'); in GetFilenameBase()45 size_t dot_pos = full_path.rfind('.'); in GetFilenameBase()48 return full_path.substr(slash_pos + 1u, dot_pos - (slash_pos + 1u)); in GetFilenameBase()