Lines Matching full:matches
83 self.matches = self.attr_matches(text)
85 self.matches = self.global_matches(text)
87 return self.matches[state]
97 """Compute matches when text is a simple name.
104 matches = []
108 matches.append(word)
112 matches.append(self._callable_postfix(val, word))
113 return matches
116 """Compute matches when text contains a dot.
145 matches = []
151 matches.append(word)
152 return matches