Home
last modified time | relevance | path

Searched refs:complete_from_to (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/completion/
DTestCompletion.py33 self.complete_from_to('at', 'attach ')
37 self.complete_from_to('de', 'detach ')
52 self.complete_from_to('frame variable fo',
54 self.complete_from_to('frame variable fooo.',
56 self.complete_from_to('frame variable fooo.dd',
59 self.complete_from_to('frame variable ptr_fooo->',
61 self.complete_from_to('frame variable ptr_fooo->dd',
64 self.complete_from_to('frame variable cont',
66 self.complete_from_to('frame variable container.',
68 self.complete_from_to('frame variable container.Mem',
[all …]
/external/llvm-project/lldb/test/API/functionalities/gdb_remote_client/
DTestGDBRemoteDiskFileCompletion.py23 self.complete_from_to('platform get-size ', ['test', '123'])
24 self.complete_from_to('platform get-file ', ['test', '123'])
25 self.complete_from_to('platform put-file foo ', ['test', '123'])
26 self.complete_from_to('platform file open ', ['test', '123'])
27 self.complete_from_to('platform settings -w ', ['test', '123'])
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbtest.py2273 self.complete_from_to(str_input, patterns, True)
2275 def complete_from_to(self, str_input, patterns, turn_off_re_match=False): member in TestBase