Lines Matching refs:cl
101 for key, cl in dict.items():
102 if cl.module == name:
104 if hasattr(cl, 'super') and cl.super:
106 for sup in cl.super:
111 if sup.module != cl.module:
115 items.append((cl.lineno, s))
116 self.classes[s] = cl
130 self.cl = self.classes[self.name]
132 self.cl = None
133 self.isfunction = isinstance(self.cl, pyclbr.Function)
148 if self.cl:
150 return not not self.cl.methods
155 if not self.cl:
159 item = MethodBrowserTreeItem(name, self.cl, self.file)
167 if hasattr(self.cl, 'lineno'):
168 lineno = self.cl.lineno
172 if not self.cl:
175 for name, lineno in self.cl.methods.items():
185 def __init__(self, name, cl, file):
187 self.cl = cl
203 edit.gotoline(self.cl.methods[self.name])