Searched refs:NormalizePath (Results 1 – 6 of 6) sorted by relevance
/development/vndk/tools/header-checker/src/utils/ |
D | collect_exported_headers_test.cpp | 26 EXPECT_EQ("", NormalizePath(root, root)); in TEST() 27 EXPECT_EQ("/unit/test", NormalizePath("/unit/test", root)); in TEST() 28 EXPECT_EQ("/root/unit/test", NormalizePath(root + "/../unit/test", root)); in TEST() 35 EXPECT_EQ("", NormalizePath("", cwd)); in TEST() 36 EXPECT_EQ("unit/test", NormalizePath("./unit/test/.", cwd)); in TEST() 37 EXPECT_EQ("unit/test", NormalizePath("unit//test//", cwd)); in TEST() 38 EXPECT_EQ("test", NormalizePath("unit/../test", cwd)); in TEST() 39 EXPECT_EQ("unit/test", NormalizePath(cwd + "/unit/test", cwd)); in TEST() 40 EXPECT_EQ('/', NormalizePath("../unit/test", cwd)[0]); in TEST()
|
D | collect_exported_headers.cpp | 49 std::string NormalizePath(const std::string &path, in NormalizePath() function 101 exported_headers->insert(NormalizePath(file_path, root_dir)); in CollectExportedHeaderSet()
|
D | header_abi_util.h | 33 std::string NormalizePath(const std::string &path, const std::string &root_dir);
|
/development/vndk/tools/header-checker/src/dumper/ |
D | header_checker.cpp | 47 using header_checker::utils::NormalizePath; 184 NormalizePath(header_file, root_dir_or_cwd), out_dump, in main()
|
D | ast_processing.cpp | 39 return utils::NormalizePath(path.str(), root_dir_); in remapPath()
|
D | abi_wrappers.cpp | 82 return utils::NormalizePath(sm.getFilename(expansion_location).str(), in GetDeclSourceFile()
|