Lines Matching refs:fullname
135 self.fullname = raw[raw.index("class")+1]
137 self.fullname = raw[raw.index("enum")+1]
139 self.fullname = raw[raw.index("interface")+1]
141 self.fullname = raw[raw.index("@interface")+1]
152 self.fullname = self.pkg.name + "." + self.fullname
153 self.fullname_path = self.fullname.split(".")
155 self.name = self.fullname[self.fullname.rindex(".")+1:]
199 api[clazz.fullname] = clazz
264 sig = "%s-%s-%s" % (clazz.fullname, repr(detail), msg)
286 if prev_clazz.fullname not in next_api: continue
287 cur_clazz = next_api[prev_clazz.fullname]
298 del next_api[prev_clazz.fullname]
301 if "@Deprecated " in clazz.raw and not clazz.fullname in prev_api: