Searched refs:filespec (Results 1 – 14 of 14) sorted by relevance
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/class_types/ |
| H A D | TestClassTypes.py | 64 filespec = target.GetExecutable() 65 self.assertTrue(filespec, VALID_FILESPEC) 67 fsDir = os.path.normpath(filespec.GetDirectory()) 68 fsFile = filespec.GetFilename() 179 filespec = target.GetExecutable() 180 self.assertTrue(filespec, VALID_FILESPEC) 182 fsDir = os.path.normpath(filespec.GetDirectory()) 183 fsFile = filespec.GetFilename()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBDeclaration.cpp | 89 void SBDeclaration::SetFileSpec(lldb::SBFileSpec filespec) { in SetFileSpec() argument 90 LLDB_INSTRUMENT_VA(this, filespec); in SetFileSpec() 92 if (filespec.IsValid()) in SetFileSpec() 93 ref().SetFile(filespec.ref()); in SetFileSpec()
|
| H A D | SBLineEntry.cpp | 108 void SBLineEntry::SetFileSpec(lldb::SBFileSpec filespec) { in SetFileSpec() argument 109 LLDB_INSTRUMENT_VA(this, filespec); in SetFileSpec() 111 if (filespec.IsValid()) in SetFileSpec() 112 ref().file = filespec.ref(); in SetFileSpec()
|
| H A D | SBTarget.cpp | 245 FileSpec filespec(core_file); in LoadCore() local 246 FileSystem::Instance().Resolve(filespec); in LoadCore() 248 target_sp->GetDebugger().GetListener(), "", &filespec, false)); in LoadCore()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_target.py | 21 filespec = lldb.SBFileSpec() 22 obj.FindModule(filespec) 34 obj.BreakpointCreateByLocation(filespec, 20)
|
| H A D | sb_thread.py | 23 filespec = lldb.SBFileSpec() 24 obj.StepOverUntil(frame, filespec, 1234)
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/foundation/ |
| H A D | TestSymbolTable.py | 40 filespec = lldb.SBFileSpec(exe, False) 42 module = target.FindModule(filespec)
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/thread_local/ |
| H A D | TestThreadLocal.py | 33 filespec = lldb.SBFileSpec(exe, False) 38 main_module = target.FindModule(filespec)
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/test/ |
| H A D | TestExprs.py | 84 filespec = lldb.SBFileSpec("main.cpp", False) 85 breakpoint = target.BreakpointCreateByLocation(filespec, self.line)
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBDeclaration.i | 42 SetFileSpec (lldb::SBFileSpec filespec);
|
| H A D | SBLineEntry.i | 75 SetFileSpec (lldb::SBFileSpec filespec);
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBDeclaration.h | 38 void SetFileSpec(lldb::SBFileSpec filespec);
|
| H A D | SBLineEntry.h | 42 void SetFileSpec(lldb::SBFileSpec filespec);
|
| /llvm-project-15.0.7/lldb/test/API/source-manager/ |
| H A D | TestSourceManager.py | 75 filespec = lldb.SBFileSpec(self.file, False) 84 filespec, self.line, column, context_before, context_after,
|