Home | History | Annotate | Download | only in testgen

Lines Matching refs:get_name

27   An abc that defines a get_name method.
31 def get_name(self):
55 Gets a mixin that defines get_file_name(self) in terms of get_name(self) with the
61 A mixin defining get_file_name(self) in terms of get_name(self)
65 return self.get_name() + ext
78 A mixin that defines that the file this class belongs to is get_name() + ".smali".
84 A mixin that defines that the file this class belongs to is get_name() + ".java".
91 of a get_name(self) function.
95 return self.get_name() < other.get_name()
98 return self.get_name() > other.get_name()
101 return self.get_name() == other.get_name()
104 return self.get_name() <= other.get_name()
107 return self.get_name() >= other.get_name()
110 return self.get_name() != other.get_name()
113 return hash(self.get_name())