Lines Matching refs:format
35 print("Error: {}".format(e), file=sys.stderr)
97 print("Using {}: {}\n".format(self.name, self.path))
134 msg("\rTouch sequences detected: {}".format(len(self.touches)), end="")
184 print(" Max delta: {}ms".format(int(dmax)))
185 print(" Min delta: {}ms".format(int(dmin)))
186 print(" Average delta: {}ms".format(int(davg)))
187 print(" Median delta: {}ms".format(int(dmedian)))
188 print(" 90th percentile: {}ms".format(int(d90pc)))
189 print(" 95th percentile: {}ms".format(int(d95pc)))
229 def print(self, format):
234 if format == "summary":
236 elif format == "dat":
252 "--format",
253 metavar="format",
256 help='data format to print ("summary" or "dat")',
275 device.print(args.format)
277 error("Error: failed to open device. {}".format(e))
279 error("Error: {}".format(e))