Lines Matching defs:str_input
2116 self, str_input, match_desc_pairs, enforce_order=False
2121 :param str_input: The input that should be completed. The completion happens at the end of the string.
2132 str_input, len(str_input), 0, -1, match_strings, description_strings
2195 def complete_from_to(self, str_input, patterns):
2196 """Test that the completion mechanism completes str_input to patterns,
2200 If there is only one pattern and it is exactly equal to str_input, this
2216 str_input, len(str_input), 0, -1, match_strings
2220 compare_string = str_input
2223 compare_string = str_input + common_match
2229 if len(patterns) == 1 and str_input == patterns[0] and num_matches:
2235 msg=COMPLETION_MSG(str_input, p, match_strings),