Home
last modified time | relevance | path

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

1234

/llvm-project-15.0.7/lldb/test/API/lang/objc/objc-stepping/
H A DTestObjCStepping.py105 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
113 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
127 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
140 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
167 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
175 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
189 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
202 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
214 line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
/llvm-project-15.0.7/lldb/test/API/functionalities/tsan/basic/
H A DTestTsanBasic.py73 if frame.GetLineEntry().GetLine() == self.line_thread1:
75 if frame.GetLineEntry().GetLine() == self.line_thread2:
108 if frame.GetLineEntry().GetLine() == self.line_thread1:
110 if frame.GetLineEntry().GetLine() == self.line_thread2:
120 if frame.GetLineEntry().GetLine() == self.line_thread1:
122 if frame.GetLineEntry().GetLine() == self.line_thread2:
/llvm-project-15.0.7/lldb/test/API/lang/cpp/std-function-step-into-callable/
H A DTestStdFunctionStepIntoCallable.py41 …self.assertEqual( thread.GetFrameAtIndex(0).GetLineEntry().GetLine(), self.source_main_invoking_f1…
45 … self.assertEqual( thread.GetFrameAtIndex(0).GetLineEntry().GetLine(), self.source_foo_line ) ;
50 …self.assertEqual( thread.GetFrameAtIndex(0).GetLineEntry().GetLine(), self.source_lambda_f2_line )…
55 …self.assertEqual( thread.GetFrameAtIndex(0).GetLineEntry().GetLine(), self.source_lambda_f3_line )…
67 …self.assertEqual( thread.GetFrameAtIndex(0).GetLineEntry().GetLine(), self.source_bar_add_num_line…
/llvm-project-15.0.7/lldb/test/API/functionalities/unwind/zeroth_frame/
H A DTestZerothFrame.py72 process.GetThreadAtIndex(0).frame[0].GetLineEntry().GetLine(),
88 thread.frame[0].GetLineEntry().GetLine(),
93 thread.frame[0].GetLineEntry().GetLine(),
94 thread.frame[0].GetPCAddress().GetLineEntry().GetLine(),
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointResolverFileLine.cpp103 m_location_spec.GetLine().value_or(0)); in SerializeToStructuredData()
161 line = inline_declaration.GetLine(); in FilterContexts()
197 if (m_location_spec.GetLine() == sc.line_entry.line) in FilterContexts()
202 m_location_spec.GetLine() < line - decl_line_is_too_late_fudge) { in FilterContexts()
230 const uint32_t line = m_location_spec.GetLine().value_or(0); in SearchCallback()
241 search_file_spec, m_location_spec.GetLine().value_or(0), in SearchCallback()
275 m_location_spec.GetLine().value_or(0)); in GetDescription()
/llvm-project-15.0.7/lldb/source/Core/
H A DSourceLocationSpec.cpp54 lhs.GetLine() == rhs.GetLine()); in Equal()
69 llvm::Optional<uint32_t> SourceLocationSpec::GetLine() const { in GetLine() function in SourceLocationSpec
70 uint32_t line = m_declaration.GetLine(); in GetLine()
H A DAddressResolverFileLine.cpp64 m_src_location_spec.GetLine().value_or(0)); in SearchCallback()
79 m_src_location_spec.GetLine().value_or(0)); in GetDescription()
H A DDeclaration.cpp82 return lhs.GetLine() == rhs.GetLine() && lhs.GetFile() == rhs.GetFile(); in operator ==()
/llvm-project-15.0.7/lldb/test/API/symbol_ondemand/shared_library/
H A DTestSharedLibOnDemand.py69 self.assertEqual(4, leaf_frame.GetLineEntry().GetLine())
75 self.assertEqual(7, parent_frame.GetLineEntry().GetLine())
107 self.assertEqual(4, leaf_frame.GetLineEntry().GetLine())
113 self.assertEqual(7, parent_frame.GetLineEntry().GetLine())
/llvm-project-15.0.7/lldb/test/API/functionalities/asan/
H A DTestMemoryHistory.py85 history_thread.frames[1].GetLineEntry().GetLine(),
93 history_thread.frames[1].GetLineEntry().GetLine(),
103 history_thread.frames[1].GetLineEntry().GetLine(),
/llvm-project-15.0.7/lldb/test/API/lang/c/stepping/
H A DTestStepAndBreakpoints.py104 current_line = frame.GetLineEntry().GetLine()
117 current_line, frame.GetLineEntry().GetLine(),
148 current_line, frame.GetLineEntry().GetLine(),
180 current_line = frame.GetLineEntry().GetLine()
213 0).GetLineEntry().GetLine() == current_line)
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBDeclaration.i33 GetLine () const;
61 …line = property(GetLine, None, doc='''A read only property that returns the 1 based line number fo…
H A DSBLineEntry.i66 GetLine () const;
94 …line = property(GetLine, None, doc='''A read only property that returns the 1 based line number fo…
/llvm-project-15.0.7/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-15.0.7/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-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/
H A DTestBreakpointByLineAndColumn.py27 self.assertEqual(b_loc.GetLine(), line)
44 self.assertEqual(b_loc.GetLine(), line)
110 self.assertEqual(line_entry.GetLine(), loc['line'])
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/
H A DTestBreakpointIgnoreCount.py142 self.assertTrue(frame0.GetLineEntry().GetLine() == self.line1 and
143 frame1.GetLineEntry().GetLine() == self.line3 and
144 frame2.GetLineEntry().GetLine() == self.line4,
/llvm-project-15.0.7/lldb/test/API/functionalities/inline-stepping/
H A DTestInlineStepping.py91 ) and stop_line_entry.GetLine() == destination_line_entry.GetLine())
217 before_line_entry.GetLine(), after_line_entry.GetLine(),
/llvm-project-15.0.7/lldb/test/API/python_api/thread/
H A DTestThreadAPI.py176 thread.GetFrameAtIndex(0).GetLineEntry().GetLine(), self.step_out_of_malloc,
206 self.assertEqual(lineEntry.GetLine(), self.step_out_of_malloc)
223 self.assertEqual(lineEntry.GetLine(), self.after_3_step_overs)
252 self.assertEqual(lineEntry.GetLine(), self.step_out_of_malloc)
/llvm-project-15.0.7/lldb/test/API/functionalities/thread/exit_during_step/
H A DTestExitDuringStep.py95 stepping_frame.GetLineEntry().GetLine(),
110 current_line = frame.GetLineEntry().GetLine()
/llvm-project-15.0.7/lldb/test/API/python_api/symbol-context/
H A DTestSymbolContext.py48 self.assertEqual(frame0.GetLineEntry().GetLine(), self.line)
80 self.assertEqual(lineEntry.GetLine(), self.line,
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/
H A DTestBreakpointHitCount.py89 frame0.GetLineEntry().GetLine(), self.a_int_body_line_no,
106 frame0.GetLineEntry().GetLine(), self.a_float_body_line_no,
/llvm-project-15.0.7/lldb/test/API/python_api/function_symbol/
H A DTestDisasmAPI.py61 self.assertEqual(lineEntry.GetLine(), self.line1)
84 self.assertEqual(lineEntry.GetLine(), self.line2)
/llvm-project-15.0.7/lldb/test/API/commands/watchpoints/step_over_watchpoint/
H A DTestStepOverWatchpoint.py99 current_line = self.frame().GetLineEntry().GetLine()
100 while self.frame().GetLineEntry().GetLine() == current_line:
/llvm-project-15.0.7/lldb/test/API/commands/register/register/aarch64_sve_registers/rw_access_dynamic_resize/
H A DTestSVEThreadedDynamic.py107 0).GetLineEntry().GetLine()
128 0).GetLineEntry().GetLine()

1234