Lines Matching refs:name
51 if hasattr(obj, 'super') and obj.super and obj.name == key:
52 # If obj.name != key, it has already been suffixed.
58 sname = sup.name
62 obj.name += '({})'.format(', '.join(supers))
87 name: Module name.
155 file: Full path and module name.
160 "Return the module name as the text string to display."
164 "Return the name of the icon to display."
188 name, _ = os.path.splitext(base)
190 tree = pyclbr.readmodule_ex(name, [dir] + sys.path)
193 return transform_children(tree, name)
205 self.name = obj.name
209 "Return the name of the function/class to display."
210 name = self.name
212 return "def " + name + "(...)"
214 return "class " + name
217 "Return the name of the icon to display."