Lines Matching refs:fullname
134 self.fullname = raw[raw.index("class")+1]
136 self.fullname = raw[raw.index("enum")+1]
138 self.fullname = raw[raw.index("interface")+1]
140 self.fullname = raw[raw.index("@interface")+1]
151 self.fullname = self.pkg.name + "." + self.fullname
152 self.fullname_path = self.fullname.split(".")
154 self.name = self.fullname[self.fullname.rindex(".")+1:]
198 api[clazz.fullname] = clazz
263 sig = "%s-%s-%s" % (clazz.fullname, repr(detail), msg)
285 if prev_clazz.fullname not in next_api: continue
286 cur_clazz = next_api[prev_clazz.fullname]
297 del next_api[prev_clazz.fullname]
300 if "@Deprecated " in clazz.raw and not clazz.fullname in prev_api: