Lines Matching refs:self
40 def __init__(self, name): argument
41 self.name = name
43 def x20_profile_location(self): argument
46 def apct_job_name(self): argument
49 def profdata_file(self, suffix=''): argument
50 profdata = os.path.join(self.name, '{}.profdata'.format(self.name))
55 def profraw_files(self): argument
58 def merge_profraws(self, profile_dir, output): argument
59 profraws = [os.path.join(profile_dir, p) for p in self.profraw_files(profile_dir)]
64 def apct_job_name(self): argument
67 def x20_profile_location(self): argument
70 def profraw_files(self, profile_dir): argument
71 if self.name == 'hwui':
75 elif self.name == 'hwbinder':
80 def apct_job_name(self): argument
83 def x20_profile_location(self): argument
86 def profdata_file(self, suffix=''): argument
87 profdata = os.path.join('art', '{}_arm_arm64.profdata'.format(self.name))
92 def profraw_files(self, profile_dir): argument