コード例 #1
0
ファイル: test_jitprof.py プロジェクト: sota/pypy-old
 def start(self):
     self.counter = 123456
     Profiler.start(self)
     self.events = []
     self.times = [0, 0]
コード例 #2
0
ファイル: test_jitprof.py プロジェクト: sota/pypy-old
 def _end(self, event):
     Profiler._end(self, event)
     self.events.append(~event)
コード例 #3
0
ファイル: test_jitprof.py プロジェクト: sota/pypy-old
 def _start(self, event):
     Profiler._start(self, event)
     self.events.append(event)
コード例 #4
0
ファイル: test_jitprof.py プロジェクト: timfel/thesis-data
 def start(self):
     self.counter = 123456
     Profiler.start(self)
     self.events = []
     self.times = [0, 0]
コード例 #5
0
ファイル: test_jitprof.py プロジェクト: timfel/thesis-data
 def _end(self, event):
     Profiler._end(self, event)
     self.events.append(~event)
コード例 #6
0
ファイル: test_jitprof.py プロジェクト: timfel/thesis-data
 def _start(self, event):
     Profiler._start(self, event)
     self.events.append(event)