Lines Matching refs:SBFileSpec
54 lldb.SBFileSpec("main.cpp"))
56 lib_spec = lldb.SBFileSpec(self.lib_name)
61 out_spec = lldb.SBFileSpec()
77 self.assertEqual(out_spec, lldb.SBFileSpec(self.hidden_lib), "Found the expected library")
102 relative_spec = lldb.SBFileSpec(os.path.join("hidden", self.lib_name))
104 out_spec = lldb.SBFileSpec()
108 …self.assertEqual(out_spec, lldb.SBFileSpec(self.hidden_lib), "Found the expected library with rela…
117 relative_spec = lldb.SBFileSpec(os.path.join("hidden", self.lib_name))
119 out_spec = lldb.SBFileSpec()
123 …self.assertEqual(out_spec, lldb.SBFileSpec(self.hidden_lib), "Found the expected library with incl…
129 abs_spec = lldb.SBFileSpec(os.path.join(self.hidden_dir, self.lib_name))
140 self.assertEqual(out_spec, lldb.SBFileSpec(self.hidden_lib), "Found the expected library")