Searched refs:BreakpointCreateBySourceRegex (Results 1 – 25 of 66) sorted by relevance
123
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_command/ |
D | TestBreakpointCommandsFromPython.py | 45 body_bkpt = self.target.BreakpointCreateBySourceRegex( 49 func_bkpt = self.target.BreakpointCreateBySourceRegex( 53 fancy_bkpt = self.target.BreakpointCreateBySourceRegex( 57 fancier_bkpt = self.target.BreakpointCreateBySourceRegex( 61 not_so_fancy_bkpt = self.target.BreakpointCreateBySourceRegex( 67 no_files_bkpt = self.target.BreakpointCreateBySourceRegex( 156 bkpt = self.target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/lang/objc/objc-stepping/ |
D | TestObjCStepping.py | 45 break1 = target.BreakpointCreateBySourceRegex( 50 break2 = target.BreakpointCreateBySourceRegex( 55 break3 = target.BreakpointCreateBySourceRegex( 60 break4 = target.BreakpointCreateBySourceRegex( 65 break5 = target.BreakpointCreateBySourceRegex( 70 break_returnStruct_call_super = target.BreakpointCreateBySourceRegex( 75 break_step_nil = target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/lang/c/stepping/ |
D | TestStepAndBreakpoints.py | 38 break_1_in_main = target.BreakpointCreateBySourceRegex( 44 break_in_a = target.BreakpointCreateBySourceRegex( 49 break_in_b = target.BreakpointCreateBySourceRegex( 54 break_in_c = target.BreakpointCreateBySourceRegex( 223 break_before_complex_1 = target.BreakpointCreateBySourceRegex( 227 break_before_complex_2 = target.BreakpointCreateBySourceRegex( 231 break_before_complex_3 = target.BreakpointCreateBySourceRegex( 235 break_before_complex_4 = target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/source_regexp/ |
D | TestSourceRegexBreakpoints.py | 40 main_break = target.BreakpointCreateBySourceRegex( 72 main_break = target.BreakpointCreateBySourceRegex( 84 main_break = target.BreakpointCreateBySourceRegex( 96 main_break = target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/functionalities/inline-stepping/ |
D | TestInlineStepping.py | 150 break_1_in_main = target.BreakpointCreateBySourceRegex( 194 break_2_in_main = target.BreakpointCreateBySourceRegex( 232 break_3_in_main = target.BreakpointCreateBySourceRegex( 262 break_1_in_main = target.BreakpointCreateBySourceRegex( 293 break_1_in_main = target.BreakpointCreateBySourceRegex( 297 break_2_in_main = target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/ |
D | TestMembersAndLocalsWithSameName.py | 15 bp1 = self.target.BreakpointCreateBySourceRegex( 20 bp2 = self.target.BreakpointCreateBySourceRegex( 25 bp3 = self.target.BreakpointCreateBySourceRegex( 30 bp4 = self.target.BreakpointCreateBySourceRegex( 117 bp1 = self.target.BreakpointCreateBySourceRegex( 122 bp5 = self.target.BreakpointCreateBySourceRegex( 127 bp6 = self.target.BreakpointCreateBySourceRegex( 132 bp7 = self.target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/ |
D | TestDataFormatterLibcxxListLoop.py | 28 breakpoint1 = target.BreakpointCreateBySourceRegex( 31 breakpoint2 = target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/lang/cpp/dynamic-value-same-basename/ |
D | TestDynamicValueSameBase.py | 33 …namesp_bkpt = target.BreakpointCreateBySourceRegex("namesp function did something.", self.main_sou… 36 …virtual_bkpt = target.BreakpointCreateBySourceRegex("Virtual function did something.", self.main_s…
|
/external/llvm-project/clang/utils/ |
D | clangdiag.py | 114 bp = target.BreakpointCreateBySourceRegex(name, lldb.SBFileSpec()) 131 bp = target.BreakpointCreateBySourceRegex(args.id, lldb.SBFileSpec()) 140 bp = target.BreakpointCreateBySourceRegex(m.group(1), lldb.SBFileSpec())
|
/external/llvm-project/lldb/test/API/functionalities/thread_plan/ |
D | TestThreadPlanCommands.py | 94 … call_me_bkpt = target.BreakpointCreateBySourceRegex("Set another here", self.main_source_file) 139 second_step_bkpt = target.BreakpointCreateBySourceRegex("Run here to step over again", 142 final_bkpt = target.BreakpointCreateBySourceRegex("Make sure we get here on last continue",
|
/external/llvm-project/lldb/test/API/commands/watchpoints/watchpoint_disable/ |
D | TestWatchpointDisable.py | 35 … bkpt_before = self.target.BreakpointCreateBySourceRegex("Set a breakpoint here", main_file_spec) 38 … bkpt_after = self.target.BreakpointCreateBySourceRegex("We should have stopped", main_file_spec)
|
/external/llvm-project/lldb/test/API/macosx/indirect_symbol/ |
D | TestIndirectSymbols.py | 37 break1 = target.BreakpointCreateBySourceRegex( 41 break2 = target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/functionalities/exec/ |
D | TestExec.py | 48 breakpoint1 = target.BreakpointCreateBySourceRegex( 51 breakpoint2 = target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/lang/cpp/nsimport/ |
D | TestCppNsImport.py | 31 break_0 = target.BreakpointCreateBySourceRegex( 36 break_1 = target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/lang/objc/blocks/ |
D | TestObjCIvarsInBlocks.py | 34 breakpoint = target.BreakpointCreateBySourceRegex( 38 breakpoint_two = target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/commands/target/stop-hooks/ |
D | TestStopHookScripted.py | 98 …bkpt = target.BreakpointCreateBySourceRegex("Set a breakpoint here and step out", self.main_source… 123 dummy_target.BreakpointCreateBySourceRegex("return result", self.main_source_file)
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/step_over_breakpoint/ |
D | TestStepOverBreakpoint.py | 39 self.breakpoint2 = self.target.BreakpointCreateBySourceRegex("breakpoint_2", src) 42 self.breakpoint3 = self.target.BreakpointCreateBySourceRegex("breakpoint_3", src)
|
/external/llvm-project/lldb/test/API/lang/objc/foundation/ |
D | TestObjCMethods2.py | 32 desc_bkpt = target.BreakpointCreateBySourceRegex("Break here for description test",
|
/external/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-caching/ |
D | TestDataFormatterCaching.py | 20 bkpt_b = target.BreakpointCreateBySourceRegex('break here',
|
/external/llvm-project/lldb/test/API/lang/cpp/this_class_type_mixing/ |
D | TestThisClassTypeMixing.py | 30 breakpoint = self.target().BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/lang/objc/ptr_refs/ |
D | TestPtrRefsObjC.py | 26 breakpoint = target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/functionalities/ptr_refs/ |
D | TestPtrRefs.py | 27 breakpoint = target.BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/commands/expression/result_numbering/ |
D | TestResultNumbering.py | 28 bkpt = target.BreakpointCreateBySourceRegex("Add conditions to this breakpoint",
|
/external/llvm-project/lldb/test/API/functionalities/dlopen_other_executable/ |
D | TestDlopenOtherExecutable.py | 30 breakpoint = self.target().BreakpointCreateBySourceRegex(
|
/external/llvm-project/lldb/test/API/lang/objc/direct-dispatch-step/ |
D | TestObjCDirectDispatchStepping.py | 31 … stop_bkpt = target.BreakpointCreateBySourceRegex("// Stop Location [0-9]+", self.main_source)
|
123