Home
last modified time | relevance | path

Searched refs:clean_path (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/security/fuzzing/
Dcleanpath_fuzz.cc30 std::string clean_path = tensorflow::io::CleanPath(input_path); in LLVMFuzzerTestOneInput() local
33 assert(!absl::StrContains(clean_path, "/./")); in LLVMFuzzerTestOneInput()
35 assert(!absl::StrContains(clean_path, "//")); in LLVMFuzzerTestOneInput()
38 assert(!std::regex_match(clean_path, higher_up_directory)); in LLVMFuzzerTestOneInput()
/external/python/cpython3/Lib/test/test_pydoc/
Dtest_pydoc.py2159 clean_path = sys.path.copy()
2161 for __ in range(clean_path.count(spelling)):
2162 clean_path.remove(spelling)
2163 return clean_path
2166 clean_path = self._get_starting_path()
2167 expected_path = [self.abs_curdir] + clean_path
2168 self.assertEqual(self._get_revised_path(clean_path), expected_path)
2171 clean_path = self._get_starting_path()
2172 expected_path = [self.abs_curdir] + clean_path
2173 leading_argv0dir = [self.argv0dir] + clean_path
[all …]
/external/cronet/tot/third_party/apache-portable-runtime/src/build/
Dgen-build.py218 def clean_path(path): function
224 files.extend(map(clean_path, glob.glob(pat)))
/external/cronet/stable/third_party/apache-portable-runtime/src/build/
Dgen-build.py218 def clean_path(path): function
224 files.extend(map(clean_path, glob.glob(pat)))
/external/sandboxed-api/sandboxed_api/sandbox2/
Dpolicybuilder.cc1842 std::string clean_path = file::CleanPath(relative_path); in AnchorPathAbsolute() local
1843 if (absl::StartsWith(clean_path, "../") || clean_path == "..") { in AnchorPathAbsolute()
1851 return file::CleanPath(file::JoinPath(base, clean_path)); in AnchorPathAbsolute()
1864 return file::CleanPath(file::JoinPath(cwd, clean_path)); in AnchorPathAbsolute()
1867 return file::CleanPath(file::JoinPath(cwd, base, clean_path)); in AnchorPathAbsolute()