Home
last modified time | relevance | path

Searched refs:matching_string (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/python/pyfakefs/pyfakefs/
Dfake_filesystem.py121 matching_string,
432 return matching_string(path, self.path_separator)
436 return matching_string(path, self.alternative_path_separator)
473 and path == matching_string(path, mount_point)
475 and path.lower() == matching_string(path, mount_point.lower())
487 if path == matching_string(path, self.root.name):
533 if path == matching_string(path, mount_path):
535 mount_path = matching_string(path, "")
538 root_path = matching_string(path, root_path)
935 dot = matching_string(path_str, ".")
[all …]
Dfake_path.py41 matching_string,
318 sep = matching_string(path, self.filesystem.path_separator)
322 start = matching_string(path, self.filesystem.cwd)
324 system_sep = matching_string(path, self._os_path.sep)
326 altsep = matching_string(path, self.filesystem.alternative_path_separator)
384 curdir = matching_string(path, ".")
385 pardir = matching_string(path, "..")
424 matching_string(path, self.filesystem.readlink(newpath)),
442 matching_string(path, self._os_path.sep),
443 matching_string(path, self.sep),
Dhelpers.py161 def matching_string(matched: bytes, string: AnyStr) -> bytes: function
166 def matching_string(matched: str, string: AnyStr) -> str: function
171 def matching_string(matched: AnyStr, string: None) -> None: function
175 def matching_string( # type: ignore[misc] function
Dfake_os.py62 matching_string,
268 path, matching_string(path, str(uuid.uuid4()))
1144 if tail in (matching_string(tail, "."), matching_string(tail, "..")):
Dfake_file.py51 matching_string,
358 names.insert(0, matching_string(self.name, obj.name)) # type: ignore
/aosp_15_r20/tools/test/connectivity/acts_tests/tests/google/gnss/
DGnssSuplTest.py138 matching_string="setting position_mode to", begin_time=begin_time)
/aosp_15_r20/tools/test/connectivity/acts/framework/acts/controllers/
Dandroid_device.py864 matching_string, argument
901 output = job.run("grep '%s' %s" % (matching_string, logcat_path),