Lines Matching refs:matches
92 self.matches = self.attr_matches(text)
94 self.matches = self.global_matches(text)
96 return self.matches[state]
112 """Compute matches when text is a simple name.
118 matches = []
130 matches.append(word)
135 matches.append(self._callable_postfix(val, word))
136 return matches
139 """Compute matches when text contains a dot.
166 matches = []
187 matches.append(match)
190 matches.append(self._callable_postfix(value, match))
192 matches.append(match)
193 if matches or not noprefix:
199 matches.sort()
200 return matches