Lines Matching refs:matches
89 self.matches = self.attr_matches(text)
91 self.matches = self.global_matches(text)
93 return self.matches[state]
103 """Compute matches when text is a simple name.
110 matches = []
122 matches.append(word)
127 matches.append(self._callable_postfix(val, word))
128 return matches
131 """Compute matches when text contains a dot.
159 matches = []
178 matches.append(match)
179 if matches or not noprefix:
185 matches.sort()
186 return matches