Lines Matching refs:methods
119 self.methods = []
180 clazz.methods.append(Method(clazz, raw, blame))
248 for m in clazz.methods:
270 for m in clazz.methods:
286 for m in clazz.methods:
290 if len(clazz.methods) == 1 and clazz.name.startswith("On"):
291 m = clazz.methods[0]
358 methods = [ m.name for m in clazz.methods ]
359 eq = "equals" in methods
360 hc = "hashCode" in methods
369 write = [ i for i in clazz.methods if i.name == "writeToParcel" ]
370 describe = [ i for i in clazz.methods if i.name == "describeContents" ]
378 for m in clazz.methods:
431 methods = [ m.name for m in clazz.methods ]
432 for m in clazz.methods:
436 if other not in methods:
440 if other not in methods:
449 if other not in methods:
453 if other not in methods:
462 for m in clazz.methods:
471 for m in clazz.methods:
530 for m in clazz.methods:
549 for m in clazz.methods:
614 for m in clazz.methods:
628 methods = [ m.name for m in clazz.methods ]
633 builder_methods = [ m.name for m in api[builder].methods ]
635 for m in clazz.methods:
638 if setter in methods:
652 for m in clazz.methods:
731 methods = list(clazz.methods)
733 methods.extend(all_methods(api, api[clazz.extends]))
734 return methods
737 methods = all_methods(api, clazz)
738 for m in methods:
761 methods = all_methods(prev, prev_clazz)
762 for test in methods: