Lines Matching defs:time
4 import math, os.path, re, sys, time, unittest
49 self.m_start = time.time()
51 e = time.time()
62 for time in self.m_times[key]:
63 if time > sampleMax:
64 sampleMax = time
65 if time < sampleMin:
66 sampleMin = time
67 sampleSum += time
71 for time in self.m_times[key]:
72 sampleVariance += (time - sampleMean) ** 2