Home
last modified time | relevance | path

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 DTestClassTypes.py64 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 DSBDeclaration.cpp89 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 DSBLineEntry.cpp108 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 DSBTarget.cpp245 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 Dsb_target.py21 filespec = lldb.SBFileSpec()
22 obj.FindModule(filespec)
34 obj.BreakpointCreateByLocation(filespec, 20)
H A Dsb_thread.py23 filespec = lldb.SBFileSpec()
24 obj.StepOverUntil(frame, filespec, 1234)
/llvm-project-15.0.7/lldb/test/API/lang/objc/foundation/
H A DTestSymbolTable.py40 filespec = lldb.SBFileSpec(exe, False)
42 module = target.FindModule(filespec)
/llvm-project-15.0.7/lldb/test/API/lang/cpp/thread_local/
H A DTestThreadLocal.py33 filespec = lldb.SBFileSpec(exe, False)
38 main_module = target.FindModule(filespec)
/llvm-project-15.0.7/lldb/test/API/commands/expression/test/
H A DTestExprs.py84 filespec = lldb.SBFileSpec("main.cpp", False)
85 breakpoint = target.BreakpointCreateByLocation(filespec, self.line)
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBDeclaration.i42 SetFileSpec (lldb::SBFileSpec filespec);
H A DSBLineEntry.i75 SetFileSpec (lldb::SBFileSpec filespec);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBDeclaration.h38 void SetFileSpec(lldb::SBFileSpec filespec);
H A DSBLineEntry.h42 void SetFileSpec(lldb::SBFileSpec filespec);
/llvm-project-15.0.7/lldb/test/API/source-manager/
H A DTestSourceManager.py75 filespec = lldb.SBFileSpec(self.file, False)
84 filespec, self.line, column, context_before, context_after,