Searched refs:normalized_path (Results 1 – 6 of 6) sorted by relevance
/external/libchrome/base/i18n/ |
D | file_util_icu_unittest.cc | 119 const char* normalized_path; member 132 EXPECT_EQ(FilePath(kNormalizeFileNameEncodingTestCases[i].normalized_path), in TEST_F()
|
/external/python/setuptools/setuptools/command/ |
D | easy_install.py | 1787 normalized_path = normalize_path(dist_path) 1788 _uncache(normalized_path, sys.path_importer_cache) 1790 _replace_zip_directory_cache_data(normalized_path) 1806 _remove_and_clear_zip_directory_cache_data(normalized_path) 1809 def _collect_zipimporter_cache_entries(normalized_path, cache): argument 1820 prefix_len = len(normalized_path) 1823 if (np.startswith(normalized_path) and 1829 def _update_zipimporter_cache(normalized_path, cache, updater=None): argument 1844 for p in _collect_zipimporter_cache_entries(normalized_path, cache): 1861 def _uncache(normalized_path, cache): argument [all …]
|
/external/libchrome/base/files/ |
D | file_util_unittest.cc | 462 FilePath normalized_path; in TEST_F() local 478 ASSERT_TRUE(NormalizeFilePath(file_txt, &normalized_path)); in TEST_F() 479 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str()); in TEST_F() 484 &normalized_path)); in TEST_F() 485 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str()); in TEST_F() 493 &normalized_path)); in TEST_F() 494 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str()); in TEST_F() 507 ASSERT_FALSE(NormalizeFilePath(long_path, &normalized_path)); in TEST_F() 512 &normalized_path)); in TEST_F() 519 &normalized_path)); in TEST_F() [all …]
|
D | file_util_posix.cc | 737 bool NormalizeFilePath(const FilePath& path, FilePath* normalized_path) { in NormalizeFilePath() argument 747 *normalized_path = real_path_result; in NormalizeFilePath()
|
/external/python/pyfakefs/pyfakefs/ |
D | fake_filesystem.py | 1412 normalized_path = sep.join(normalized_components) 1413 if path.startswith(sep) and not normalized_path.startswith(sep): 1414 normalized_path = sep + normalized_path 1415 return normalized_path
|
/external/python/setuptools/docs/ |
D | pkg_resources.txt | 1673 the same filesystem location if they have equal ``normalized_path()``
|