| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/objc/ |
| H A D | TestObjCBreakpoints.py | 40 name_bp.GetNumLocations(), selector_bp.GetNumLocations(), 55 category_bp.GetNumLocations(), 1, 58 stripped_bp.GetNumLocations(), 1, 61 stripped2_bp.GetNumLocations(), 1, 88 name_bp.GetNumLocations(), selector_bp.GetNumLocations(), 91 selector_bp.GetNumLocations(), 50, 111 name_bp.GetNumLocations(), selector_bp.GetNumLocations(),
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_language/ |
| H A D | TestBreakpointLanguage.py | 40 cpp_bp.GetNumLocations(), 1, 50 c_bp.GetNumLocations(), 1, 60 objc_bp.GetNumLocations(), 0, 82 cpp_bp.GetNumLocations(), 1, 93 no_cpp_bp.GetNumLocations(), 0, 103 c_bp.GetNumLocations(), 1, 114 no_c_bp.GetNumLocations(), 0, 124 objc_bp.GetNumLocations(), 0,
|
| /llvm-project-15.0.7/lldb/test/API/symbol_ondemand/breakpoint_language/ |
| H A D | TestBreakpointLanguageOnDemand.py | 45 cpp_bp.GetNumLocations(), 1, 55 c_bp.GetNumLocations(), 1, 65 objc_bp.GetNumLocations(), 0, 92 cpp_bp.GetNumLocations(), 1, 103 no_cpp_bp.GetNumLocations(), 0, 113 c_bp.GetNumLocations(), 1, 124 no_c_bp.GetNumLocations(), 0, 134 objc_bp.GetNumLocations(), 0,
|
| /llvm-project-15.0.7/lldb/test/API/lua_api/ |
| H A D | TestBreakpointAPI.lua | 6 assertTrue(breakpoint:IsValid() and breakpoint:GetNumLocations() == 1) 17 assertTrue(breakpoint:IsValid() and breakpoint:GetNumLocations() == 1) 29 assertTrue(breakpoint:IsValid() and breakpoint:GetNumLocations() == 1) 38 assertTrue(breakpoint:IsValid() and breakpoint:GetNumLocations() == 1)
|
| H A D | TestComprehensive.lua | 11 assertTrue(self.main_bp:IsValid() and self.main_bp:GetNumLocations() == 1) 12 assertTrue(self.loop_bp:IsValid() and self.loop_bp:GetNumLocations() == 1)
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/source_regexp/ |
| H A D | TestSourceRegexBreakpoints.py | 40 num_locations = main_break.GetNumLocations() 73 num_locations = main_break.GetNumLocations() 85 num_locations = main_break.GetNumLocations() 97 num_locations = main_break.GetNumLocations()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/scripted_bkpt/ |
| H A D | TestScriptedResolver.py | 105 self.assertTrue(right[i].GetNumLocations() >= 1, "Breakpoint %d has no locations."%(i)) 149 self.assertEqual(wrong[i].GetNumLocations(), 0, "Breakpoint %d has locations."%(i)) 177 self.assertTrue(bkpt.GetNumLocations() > 0, "Resolver got no locations.") 182 self.assertTrue(bkpt.GetNumLocations() > 0, "ResolverModuleDepth got no locations.") 187 self.assertTrue(bkpt.GetNumLocations() > 0, "ResolverCUDepth got no locations.") 192 self.assertTrue(bkpt.GetNumLocations() > 0, "ResolverBadDepth got no locations.") 197 self.assertTrue(bkpt.GetNumLocations() > 0, "ResolverFuncDepth got no locations.")
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/ |
| H A D | TestMembersAndLocalsWithSameName.py | 16 bp1.IsValid() and bp1.GetNumLocations() >= 1, 21 bp2.IsValid() and bp2.GetNumLocations() >= 1, 26 bp3.IsValid() and bp3.GetNumLocations() >= 1, 31 bp4.IsValid() and bp4.GetNumLocations() >= 1, 118 bp1.IsValid() and bp1.GetNumLocations() >= 1, 123 bp5.IsValid() and bp5.GetNumLocations() >= 1, 128 bp6.IsValid() and bp6.GetNumLocations() >= 1, 133 bp7.IsValid() and bp7.GetNumLocations() >= 1,
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/ |
| H A D | TestBreakpointByLineAndColumn.py | 25 for i in range(breakpoint.GetNumLocations()): 42 for i in range(breakpoint.GetNumLocations()): 80 self.assertEqual(valid_bpkt.GetNumLocations(), 1) 123 self.assertEqual(invalid_bpkt.GetNumLocations(), 0)
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBBreakpoint.i | 228 GetNumLocations() const; 272 return int(self.sbbreakpoint.GetNumLocations()) 300 return self.GetNumLocations() 307 …num_locations = property(GetNumLocations, None, doc='''A read only property that returns the count…
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/stop-on-sharedlibrary-load/ |
| H A D | TestStopOnSharedlibraryEvents.py | 56 self.assertGreater(backstop_bkpt_1.GetNumLocations(), 0, "Set our second breakpoint") 74 self.assertGreater(load_bkpt.GetNumLocations(), 0, "Set the load breakpoint") 79 self.assertGreater(backstop_bkpt_2.GetNumLocations(), 0, "Set our third breakpoint")
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/break-on-initializers/ |
| H A D | TestBreakOnCPP11Initializers.py | 31 self.assertEqual(bkpt1.GetNumLocations(), 1) 33 self.assertEqual(bkpt2.GetNumLocations(), 1)
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/dynamic-value-same-basename/ |
| H A D | TestDynamicValueSameBase.py | 32 self.assertEqual(namesp_bkpt.GetNumLocations(), 1, "Namespace breakpoint invalid") 35 self.assertEqual(virtual_bkpt.GetNumLocations(), 1, "Virtual breakpoint invalid")
|
| /llvm-project-15.0.7/lldb/test/API/python_api/breakpoint/ |
| H A D | TestBreakpointAPI.py | 27 breakpoint.GetNumLocations() == 1, 60 breakpoint.GetNumLocations() == 1,
|
| /llvm-project-15.0.7/lldb/test/API/macosx/ignore_exceptions/ |
| H A D | TestIgnoredExceptions.py | 37 self.assertEqual(sig_bkpt.GetNumLocations(), 1, "Found sig handler breakpoint") 40 self.assertEqual(return_bkpt.GetNumLocations(), 1, "Found return breakpoint")
|
| /llvm-project-15.0.7/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverAddress.cpp | 97 else if (GetBreakpoint()->GetNumLocations() == 0) in ResolveBreakpoint() 110 else if (GetBreakpoint()->GetNumLocations() == 0) in ResolveBreakpointInModules() 123 if (breakpoint.GetNumLocations() == 0) { in SearchCallback()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/thread_plan/ |
| H A D | TestThreadPlanCommands.py | 93 self.assertTrue(call_me_bkpt.GetNumLocations() > 0, "Set the breakpoint successfully") 139 self.assertTrue(second_step_bkpt.GetNumLocations() > 0, "Set the breakpoint successfully") 142 self.assertTrue(final_bkpt.GetNumLocations() > 0, "Set the breakpoint successfully")
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/watchpoint_disable/ |
| H A D | TestWatchpointDisable.py | 32 self.assertEqual(bkpt_before.GetNumLocations(), 1, "Failed setting the before breakpoint.") 35 self.assertEqual(bkpt_after.GetNumLocations(), 1, "Failed setting the after breakpoint.")
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/ |
| H A D | TestAvoidBreakpointInDelaySlot.py | 30 breakpoint.GetNumLocations() == 1, 66 breakpoint.GetNumLocations() == 1,
|
| /llvm-project-15.0.7/lldb/test/API/python_api/frame/ |
| H A D | TestFrames.py | 30 breakpoint.GetNumLocations() == 1, 133 breakpoint.GetNumLocations() == 1, 174 breakpoint.GetNumLocations() == 1,
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/source-map/ |
| H A D | TestTargetSourceMap.py | 16 self.assertEquals(bp.GetNumLocations(), 1, 40 self.assertEquals(bp.GetNumLocations(), 0,
|
| /llvm-project-15.0.7/lldb/test/API/python_api/function_symbol/ |
| H A D | TestSymbolAPI.py | 41 breakpoint1.GetNumLocations() == 1, 44 breakpoint2.GetNumLocations() == 1,
|
| H A D | TestDisasmAPI.py | 41 breakpoint1.GetNumLocations() == 1, 44 breakpoint2.GetNumLocations() == 1,
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/call-throws/ |
| H A D | TestCallThatThrows.py | 58 self.assertTrue(handler_bkpt.GetNumLocations() > 0) 72 self.assertTrue(exception_bkpt.GetNumLocations() > 0)
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/nsimport/ |
| H A D | TestCppNsImport.py | 32 break_0.IsValid() and break_0.GetNumLocations() >= 1, 37 break_1.IsValid() and break_1.GetNumLocations() >= 1,
|