Searched refs:str_input (Results 1 – 2 of 2) sorted by relevance
| /openbsd-src/gnu/llvm/clang/tools/clang-format/ |
| H A D | git-clang-format | 645 def to_bytes(str_input): argument 647 if isinstance(str_input, bytes): 648 return str_input 649 return str_input.encode('utf-8')
|
| /openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbtest.py | 2090 def check_completion_with_desc(self, str_input, match_desc_pairs, enforce_order=False): argument 2104 …num_matches = interp.HandleCompletionWithDescriptions(str_input, len(str_input), 0, -1, match_stri… 2149 def complete_exactly(self, str_input, patterns): argument 2150 self.complete_from_to(str_input, patterns, True) 2152 def complete_from_to(self, str_input, patterns, turn_off_re_match=False): argument 2166 num_matches = interp.HandleCompletion(str_input, len(str_input), 0, -1, match_strings) 2169 compare_string = str_input 2172 compare_string = str_input + common_match 2182 str_input, p, match_strings), exe=False, substrs=[p]) 2186 str_input, p, match_strings), exe=False, patterns=[p])
|