Home
last modified time | relevance | path

Searched refs:GetNumLocations (Results 1 – 25 of 94) sorted by relevance

1234

/external/llvm-project/lldb/test/API/functionalities/breakpoint/objc/
DTestObjCBreakpoints.py42 name_bp.GetNumLocations(), selector_bp.GetNumLocations(),
57 category_bp.GetNumLocations(), 1,
60 stripped_bp.GetNumLocations(), 1,
63 stripped2_bp.GetNumLocations(), 1,
90 name_bp.GetNumLocations(), selector_bp.GetNumLocations(),
93 selector_bp.GetNumLocations(), 50,
113 name_bp.GetNumLocations(), selector_bp.GetNumLocations(),
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_language/
DTestBreakpointLanguage.py42 cpp_bp.GetNumLocations() == 1,
52 c_bp.GetNumLocations() == 1,
62 objc_bp.GetNumLocations() == 0,
84 cpp_bp.GetNumLocations() == 1,
95 no_cpp_bp.GetNumLocations() == 0,
105 c_bp.GetNumLocations() == 1,
116 no_c_bp.GetNumLocations() == 0,
126 objc_bp.GetNumLocations() == 0,
/external/llvm-project/lldb/test/API/functionalities/breakpoint/source_regexp/
DTestSourceRegexBreakpoints.py42 num_locations = main_break.GetNumLocations()
75 num_locations = main_break.GetNumLocations()
87 num_locations = main_break.GetNumLocations()
99 num_locations = main_break.GetNumLocations()
/external/llvm-project/lldb/test/API/functionalities/breakpoint/scripted_bkpt/
DTestScriptedResolver.py108 self.assertTrue(right[i].GetNumLocations() >= 1, "Breakpoint %d has no locations."%(i))
152 self.assertEqual(wrong[i].GetNumLocations(), 0, "Breakpoint %d has locations."%(i))
180 self.assertTrue(bkpt.GetNumLocations() > 0, "Resolver got no locations.")
185 self.assertTrue(bkpt.GetNumLocations() > 0, "ResolverModuleDepth got no locations.")
190 self.assertTrue(bkpt.GetNumLocations() > 0, "ResolverCUDepth got no locations.")
195 self.assertTrue(bkpt.GetNumLocations() > 0, "ResolverBadDepth got no locations.")
200 self.assertTrue(bkpt.GetNumLocations() > 0, "ResolverFuncDepth got no locations.")
/external/llvm-project/lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/
DTestMembersAndLocalsWithSameName.py18 bp1.IsValid() and bp1.GetNumLocations() >= 1,
23 bp2.IsValid() and bp2.GetNumLocations() >= 1,
28 bp3.IsValid() and bp3.GetNumLocations() >= 1,
33 bp4.IsValid() and bp4.GetNumLocations() >= 1,
120 bp1.IsValid() and bp1.GetNumLocations() >= 1,
125 bp5.IsValid() and bp5.GetNumLocations() >= 1,
130 bp6.IsValid() and bp6.GetNumLocations() >= 1,
135 bp7.IsValid() and bp7.GetNumLocations() >= 1,
/external/llvm-project/lldb/bindings/interface/
DSBBreakpoint.i228 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…
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/
DTestBreakpointByLineAndColumn.py26 for i in range(breakpoint.GetNumLocations()):
40 for i in range(breakpoint.GetNumLocations()):
/external/llvm-project/lldb/test/API/lang/cpp/dynamic-value-same-basename/
DTestDynamicValueSameBase.py34 self.assertEqual(namesp_bkpt.GetNumLocations(), 1, "Namespace breakpoint invalid")
37 self.assertEqual(virtual_bkpt.GetNumLocations(), 1, "Virtual breakpoint invalid")
/external/llvm-project/lldb/test/API/python_api/breakpoint/
DTestBreakpointAPI.py30 breakpoint.GetNumLocations() == 1,
64 breakpoint.GetNumLocations() == 1,
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointResolverAddress.cpp100 else if (GetBreakpoint()->GetNumLocations() == 0) in ResolveBreakpoint()
113 else if (GetBreakpoint()->GetNumLocations() == 0) in ResolveBreakpointInModules()
126 if (breakpoint.GetNumLocations() == 0) { in SearchCallback()
/external/llvm-project/lldb/test/API/functionalities/thread_plan/
DTestThreadPlanCommands.py95 self.assertTrue(call_me_bkpt.GetNumLocations() > 0, "Set the breakpoint successfully")
141 self.assertTrue(second_step_bkpt.GetNumLocations() > 0, "Set the breakpoint successfully")
144 self.assertTrue(final_bkpt.GetNumLocations() > 0, "Set the breakpoint successfully")
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/
DTestAvoidBreakpointInDelaySlot.py32 breakpoint.GetNumLocations() == 1,
68 breakpoint.GetNumLocations() == 1,
/external/llvm-project/lldb/test/API/commands/watchpoints/watchpoint_disable/
DTestWatchpointDisable.py36 self.assertEqual(bkpt_before.GetNumLocations(), 1, "Failed setting the before breakpoint.")
39 self.assertEqual(bkpt_after.GetNumLocations(), 1, "Failed setting the after breakpoint.")
/external/llvm-project/lldb/test/API/python_api/frame/
DTestFrames.py33 breakpoint.GetNumLocations() == 1,
136 breakpoint.GetNumLocations() == 1,
178 breakpoint.GetNumLocations() == 1,
/external/llvm-project/lldb/test/API/functionalities/source-map/
DTestTargetSourceMap.py18 self.assertEquals(bp.GetNumLocations(), 1,
42 self.assertEquals(bp.GetNumLocations(), 0,
/external/llvm-project/lldb/test/API/python_api/function_symbol/
DTestSymbolAPI.py44 breakpoint1.GetNumLocations() == 1,
47 breakpoint2.GetNumLocations() == 1,
DTestDisasmAPI.py44 breakpoint1.GetNumLocations() == 1,
47 breakpoint2.GetNumLocations() == 1,
/external/llvm-project/lldb/test/API/commands/expression/call-throws/
DTestCallThatThrows.py60 self.assertTrue(handler_bkpt.GetNumLocations() > 0)
74 self.assertTrue(exception_bkpt.GetNumLocations() > 0)
/external/llvm-project/lldb/test/API/lang/cpp/nsimport/
DTestCppNsImport.py34 break_0.IsValid() and break_0.GetNumLocations() >= 1,
39 break_1.IsValid() and break_1.GetNumLocations() >= 1,
/external/llvm-project/lldb/test/API/python_api/watchpoint/watchlocation/
DTestTargetWatchAddress.py43 breakpoint.GetNumLocations() == 1,
118 breakpoint.GetNumLocations() == 1,
/external/llvm-project/lldb/test/API/python_api/frame/get-variables/
DTestGetVariables.py64 self.assertTrue(breakpoint1.GetNumLocations() >= 1, PROCESS_IS_VALID)
65 self.assertTrue(breakpoint2.GetNumLocations() >= 1, PROCESS_IS_VALID)
66 self.assertTrue(breakpoint3.GetNumLocations() >= 1, PROCESS_IS_VALID)
/external/llvm-project/lldb/test/API/lang/objc/objc-dynamic-value/
DTestObjCDynamicValue.py53 handle_SourceBase_bkpt.GetNumLocations() == 1,
59 main_before_setProperty_bkpt.GetNumLocations() == 1,
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_conditions/
DTestBreakpointConditions.py131 breakpoint.GetNumLocations() == 1,
199 breakpoint.GetNumLocations() == 1,
/external/llvm-project/lldb/test/API/commands/expression/completion-crash-invalid-iterator/
DTestInvalidIteratorCompletionCrash.py17 self.assertTrue(callee_break.GetNumLocations() > 0)
/external/llvm-project/lldb/test/API/lang/objc/foundation/
DTestObjCMethods2.py34 self.assertEqual(desc_bkpt.GetNumLocations(), 1, "description breakpoint has a location")

1234