Home
last modified time | relevance | path

Searched refs:clean_path (Results 1 – 2 of 2) 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/
Dtest_pydoc.py1532 clean_path = sys.path.copy()
1534 for __ in range(clean_path.count(spelling)):
1535 clean_path.remove(spelling)
1536 return clean_path
1539 clean_path = self._get_starting_path()
1540 expected_path = [self.abs_curdir] + clean_path
1541 self.assertEqual(self._get_revised_path(clean_path), expected_path)
1544 clean_path = self._get_starting_path()
1545 expected_path = [self.abs_curdir] + clean_path
1546 leading_argv0dir = [self.argv0dir] + clean_path
[all …]