Home
last modified time | relevance | path

Searched refs:path_type (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/paths/
DTestPaths.py29 for path_type in dir_path_types:
30 f = lldb.SBHostOS.GetLLDBPath(path_type)
/external/llvm-project/lldb/source/API/
DSBHostOS.cpp48 SBFileSpec SBHostOS::GetLLDBPath(lldb::PathType path_type) { in GetLLDBPath() argument
50 (lldb::PathType), path_type); in GetLLDBPath()
53 switch (path_type) { in GetLLDBPath()
/external/autotest/server/cros/ap_configurators/
Dpyauto_utils.py37 def __init__(self, path, path_type='dir'): argument
44 assert path_type in ('file', 'dir'), 'Invalid path_type: %s' % path_type
45 self._path_type = path_type
/external/llvm-project/lldb/bindings/interface/
DSBHostOS.i22 GetLLDBPath (lldb::PathType path_type);
/external/llvm-project/lldb/include/lldb/API/
DSBHostOS.h23 static lldb::SBFileSpec GetLLDBPath(lldb::PathType path_type);
/external/python/cpython3/Lib/
Dos.py1041 path_type = type(path)
1043 path_repr = path_type.__fspath__(path)
1045 if hasattr(path_type, '__fspath__'):
1049 "not " + path_type.__name__)
1054 "not {}".format(path_type.__name__,