Home
last modified time | relevance | path

Searched refs:full_path (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/
H A Dloader.py243 def _match_path(self, path, full_path, pattern): argument
252 full_path = os.path.join(start_dir, path)
253 if os.path.isfile(full_path):
257 if not self._match_path(path, full_path, pattern):
260 name = self._get_name_from_path(full_path)
267 getattr(module, '__file__', full_path))
269 fullpath_noext = os.path.splitext(full_path)[0]
273 os.path.basename(full_path))[0]
274 expected_dir = os.path.dirname(full_path)
281 elif os.path.isdir(full_path):
[all …]
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_file.cpp57 internal_snprintf(full_path, kMaxPathLength, "%s.%s.%zu", path_prefix, in ReopenIfNecessary()
60 internal_snprintf(full_path, kMaxPathLength, "%s.%zu", path_prefix, pid); in ReopenIfNecessary()
63 internal_strlcat(full_path, common_flags()->log_suffix, kMaxPathLength); in ReopenIfNecessary()
66 fd = OpenFile(full_path, WrOnly, &err); in ReopenIfNecessary()
70 WriteToFile(kStderrFd, full_path, internal_strlen(full_path)); in ReopenIfNecessary()
124 return full_path; in GetReportPath()
H A Dsanitizer_file.h41 char full_path[kMaxPathLength]; member
/llvm-project-15.0.7/compiler-rt/lib/hwasan/scripts/
H A Dhwasan_symbolize185 full_path = os.path.join(p, name)
186 if os.path.exists(full_path):
187 return full_path
190 full_path = os.path.join(p, "apex/com.google.android." + name[len(apex_prefix):])
191 if os.path.exists(full_path):
192 return full_path
195 full_path = os.path.join(p, os.path.basename(name))
196 if os.path.exists(full_path):
197 return full_path
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_discovery.py162 full_path = os.path.abspath(os.path.normpath('/foo'))
167 self.assertEqual(loader._top_level_dir, full_path)
168 self.assertIn(full_path, sys.path)
332 full_path = os.path.abspath('foo')
342 if full_path in sys.path:
343 sys.path.remove(full_path)
370 self.assertEqual(sys.path[0], full_path)
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_command/
H A DTestRegexpBreakCommand.py53 full_path = os.path.join(self.getSourceDir(), self.source)
55 self, "b %s:%d" % (full_path, self.line))
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/utils/
H A DUnitTests.py21 def _match_path(self, path, full_path, pattern): argument
25 d = os.path.basename(os.path.dirname(full_path))
/llvm-project-15.0.7/llvm/utils/
H A Ddemangle_tree.py165 full_path = os.path.join(root, f)
166 full_path = os.path.normpath(full_path)
167 pending.append(full_path)
/llvm-project-15.0.7/lldb/test/API/commands/target/stop-hooks/
H A DTestStopHooks.py23 full_path = os.path.join(self.getSourceDir(), "main.c")
24 self.main_start_line = line_number(full_path, "main()")
H A DTestStopHookScripted.py23 full_path = os.path.join(self.getSourceDir(), "main.c")
24 self.main_start_line = line_number(full_path, "main()")
/llvm-project-15.0.7/lldb/test/Shell/helper/
H A Dbuild.py358 full_path = os.path.join(vcinstalldir, subdirs[-1])
359 print('Using VC tools version directory {0} found by directory walk.'.format(full_path))
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Ddotest.py714 full_path = seven.get_command_output('xcrun -sdk %s --show-sdk-path' % sdk)
715 basename = os.path.basename(full_path)