Home
last modified time | relevance | path

Searched refs:str_input (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/commands/expression/completion/
H A DTestExprCompletion.py223 def assume_no_completions(self, str_input, cursor_pos = None): argument
227 cursor_pos = len(str_input)
228 num_matches = interp.HandleCompletion(str_input, cursor_pos, 0, -1, match_strings)
236 def completions_contain(self, str_input, items): argument
239 num_matches = interp.HandleCompletion(str_input, len(str_input), 0, -1, match_strings)
/llvm-project-15.0.7/bolt/utils/
H A Dllvm-bolt-wrapper.py159 def compare_logs(main, cmp, skip_begin=0, skip_end=0, str_input=True): argument
166 main_inp = main.splitlines() if str_input else main.readlines()
167 cmp_inp = cmp.splitlines() if str_input else cmp.readlines()
169 if not str_input:
328 … out = compare_logs(main_out, cmp_out, skip_end=1, str_input=False) if cfg.COMPARE_OUTPUT else None
/llvm-project-15.0.7/clang/tools/clang-format/
H A Dgit-clang-format619 def to_bytes(str_input): argument
621 if isinstance(str_input, bytes):
622 return str_input
623 return str_input.encode('utf-8')
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbtest.py2057 def check_completion_with_desc(self, str_input, match_desc_pairs, enforce_order=False): argument
2071 …num_matches = interp.HandleCompletionWithDescriptions(str_input, len(str_input), 0, -1, match_stri…
2116 def complete_exactly(self, str_input, patterns): argument
2117 self.complete_from_to(str_input, patterns, True)
2119 def complete_from_to(self, str_input, patterns, turn_off_re_match=False): argument
2133 num_matches = interp.HandleCompletion(str_input, len(str_input), 0, -1, match_strings)
2136 compare_string = str_input
2139 compare_string = str_input + common_match
2149 str_input, p, match_strings), exe=False, substrs=[p])
2153 str_input, p, match_strings), exe=False, patterns=[p])