Home
last modified time | relevance | path

Searched refs:GetLine (Results 1 – 25 of 79) sorted by relevance

1234

/llvm-project/lldb/test/API/functionalities/unwind/zeroth_frame/
H A DTestZerothFrame.py63 thread.frame[0].GetLineEntry().GetLine(),
64 bp1.GetLocationAtIndex(0).GetAddress().GetLineEntry().GetLine(),
79 thread.frame[0].GetLineEntry().GetLine(),
80 bp2.GetLocationAtIndex(0).GetAddress().GetLineEntry().GetLine(),
85 thread.frame[0].GetLineEntry().GetLine(),
86 thread.frame[0].GetPCAddress().GetLineEntry().GetLine(),
/llvm-project/lldb/test/API/lang/objc/objc-stepping/
H A DTestObjCStepping.py112 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
122 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
136 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
152 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
183 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
193 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
207 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
225 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
239 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
/llvm-project/lldb/test/API/functionalities/tsan/basic/
H A DTestTsanBasic.py78 if frame.GetLineEntry().GetLine() == self.line_thread1:
80 if frame.GetLineEntry().GetLine() == self.line_thread2:
113 if frame.GetLineEntry().GetLine() == self.line_thread1:
115 if frame.GetLineEntry().GetLine() == self.line_thread2:
125 if frame.GetLineEntry().GetLine() == self.line_thread1:
127 if frame.GetLineEntry().GetLine() == self.line_thread2:
/llvm-project/lldb/test/API/lang/cpp/std-function-step-into-callable/
H A DTestStdFunctionStepIntoCallable.py45 thread.GetFrameAtIndex(0).GetLineEntry().GetLine(),
55 thread.GetFrameAtIndex(0).GetLineEntry().GetLine(), self.source_foo_line
65 thread.GetFrameAtIndex(0).GetLineEntry().GetLine(),
76 thread.GetFrameAtIndex(0).GetLineEntry().GetLine(),
94 thread.GetFrameAtIndex(0).GetLineEntry().GetLine(),
/llvm-project/lldb/source/Core/
H A DSourceLocationSpec.cpp56 lhs.GetLine() == rhs.GetLine()); in Equal()
71 std::optional<uint32_t> SourceLocationSpec::GetLine() const { in GetLine() function in SourceLocationSpec
72 uint32_t line = m_declaration.GetLine(); in GetLine()
H A DAddressResolverFileLine.cpp61 m_src_location_spec.GetLine().value_or(0)); in SearchCallback()
75 m_src_location_spec.GetLine().value_or(0)); in GetDescription()
H A DDeclaration.cpp83 return lhs.GetLine() == rhs.GetLine() && lhs.GetFile() == rhs.GetFile(); in operator ==()
/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverFileLine.cpp112 m_location_spec.GetLine().value_or(0)); in SerializeToStructuredData()
150 line = inline_declaration.GetLine(); in FilterContexts()
189 if (m_location_spec.GetLine() == sc.line_entry.line) in FilterContexts()
194 m_location_spec.GetLine() < line - decl_line_is_too_late_fudge) { in DeduceSourceMapping()
299 const uint32_t line = m_location_spec.GetLine().value_or(0); in SearchCallback()
343 m_location_spec.GetLine().value_or(0));
/llvm-project/lldb/test/API/symbol_ondemand/shared_library/
H A DTestSharedLibOnDemand.py67 self.assertEqual(4, leaf_frame.GetLineEntry().GetLine())
73 self.assertEqual(7, parent_frame.GetLineEntry().GetLine())
105 self.assertEqual(4, leaf_frame.GetLineEntry().GetLine())
111 self.assertEqual(7, parent_frame.GetLineEntry().GetLine())
/llvm-project/lldb/test/API/lang/c/stepping/
H A DTestStepAndBreakpoints.py100 current_line = frame.GetLineEntry().GetLine()
112 frame.GetLineEntry().GetLine(),
156 frame.GetLineEntry().GetLine(),
196 current_line = frame.GetLineEntry().GetLine()
225 thread.GetFrameAtIndex(0).GetLineEntry().GetLine(), current_line
/llvm-project/lldb/unittests/Editline/
H A DEditlineTest.cpp76 bool GetLine(std::string &line, bool &interrupted, size_t timeout_millis);
168 bool EditlineAdapter::GetLine(std::string &line, bool &interrupted, in GetLine() function in EditlineAdapter
174 _editline_sp->GetLine(line, interrupted); in GetLine()
276 const bool received_line = GetEditlineAdapter().GetLine( in TEST_F()
/llvm-project/lldb/source/API/
H A DSBDeclaration.cpp70 uint32_t SBDeclaration::GetLine() const { in GetLine() function in SBDeclaration
75 line = m_opaque_up->GetLine(); in GetLine()
155 strm.Printf("%s:%u", file_path, GetLine()); in GetDescription()
/llvm-project/lldb/bindings/interface/
H A DSBLineEntryExtensions.i12 return self.GetLine()
17 …line = property(GetLine, None, doc='''A read only property that returns the 1 based line number fo…
/llvm-project/lldb/test/API/functionalities/inline-stepping/
H A DTestInlineStepping.py99 and stop_line_entry.GetLine() == destination_line_entry.GetLine()
241 before_line_entry.GetLine(),
242 after_line_entry.GetLine(),
/llvm-project/lldb/test/API/functionalities/asan/
H A DTestMemoryHistory.py166 history_thread.frames[1].GetLineEntry().GetLine(), self.line_free
176 history_thread.frames[1].GetLineEntry().GetLine(), self.line_malloc
188 history_thread.frames[1].GetLineEntry().GetLine(), self.line_malloc
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/
H A DTestBreakpointIgnoreCount.py153 frame0.GetLineEntry().GetLine() == self.line1
154 and frame1.GetLineEntry().GetLine() == self.line3
155 and frame2.GetLineEntry().GetLine() == self.line4,
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/
H A DTestBreakpointByLineAndColumn.py26 self.assertEqual(b_loc.GetLine(), line)
43 self.assertEqual(b_loc.GetLine(), line)
111 self.assertEqual(line_entry.GetLine(), loc["line"])
/llvm-project/lldb/test/API/python_api/thread/
H A DTestThreadAPI.py184 thread.GetFrameAtIndex(0).GetLineEntry().GetLine(),
217 self.assertEqual(lineEntry.GetLine(), self.step_out_of_malloc)
234 self.assertEqual(lineEntry.GetLine(), self.after_3_step_overs)
264 self.assertEqual(lineEntry.GetLine(), self.step_out_of_malloc)
/llvm-project/lldb/test/API/functionalities/thread/exit_during_step/
H A DTestExitDuringStep.py97 stepping_frame.GetLineEntry().GetLine(),
113 current_line = frame.GetLineEntry().GetLine()
/llvm-project/lldb/test/API/python_api/symbol-context/
H A DTestSymbolContext.py46 self.assertEqual(frame0.GetLineEntry().GetLine(), self.line)
85 lineEntry.GetLine(), self.line, "The line entry's line number should match "
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/
H A DTestBreakpointHitCount.py85 frame0.GetLineEntry().GetLine(),
104 frame0.GetLineEntry().GetLine(),
/llvm-project/lldb/test/API/python_api/function_symbol/
H A DTestDisasmAPI.py58 self.assertEqual(lineEntry.GetLine(), self.line1)
82 self.assertEqual(lineEntry.GetLine(), self.line2)
/llvm-project/lldb/test/API/commands/watchpoints/step_over_watchpoint/
H A DTestStepOverWatchpoint.py108 current_line = self.frame().GetLineEntry().GetLine()
109 while self.frame().GetLineEntry().GetLine() == current_line:
/llvm-project/lldb/test/API/functionalities/plugins/python_os_plugin/
H A DTestPythonOSPlugin.py199 line_entry.GetLine(), 5, "Make sure we stopped on line 5 in main.c"
218 line_entry.GetLine(),
/llvm-project/lldb/examples/python/
H A Djump.py53 line_entry.GetFileSpec(), (line_entry.GetLine() + line_number)
69 line_entry.GetFileSpec(), (line_entry.GetLine() - line_number)

1234