Lines Matching refs:root
48 def findItem(root,path): argument
64 c = root
86 elem = root
135 elem = root
215 elem = root
260 elem = root
361 def analyseResult(resultPath,root,results,embedded,benchmark,trace,formatter): argument
413 elem = findItem(root,path)
498 elem = findItem(root,newPath)
545 def analyze(root,results,args,trace): argument
550 analyseResult(resultPath,root,results,args.e,args.b,trace,CSVFormatter())
552 analyseResult(resultPath,root,results,args.e,args.b,trace,HTMLFormatter())
554 analyseResult(resultPath,root,results,args.e,args.b,trace,HTMLFormatter(append=True))
556 analyseResult(resultPath,root,results,args.e,args.b,trace,MathematicaFormatter())
563 analyseResult(resultPath,root,results,args.e,args.b,trace,TextFormatter())
591 root=parse.loadRoot(args.f) variable
595 analyze(root,results,args,iter(trace))
598 analyze(root,results,args,None)