Lines Matching refs:root
36 for root, dirs, files in chain.from_iterable(os.walk(path) for path in [petsc_dir]):
38 root = root[len(petsc_dir)+1:]
39 if not root: continue
40 if not os.path.isdir(os.path.join(loc,root)): os.makedirs(os.path.join(loc,root))
41 …allfiles.extend([os.path.join(loc,root,f+'.html') for f in files if any([s for s in SUFFIXES if f.…
44 with open(os.path.join(loc,root,'index.html'),'w') as fdw:
45 if root.startswith('src'):
49 if os.path.isfile(os.path.join(root,'makefile')):
50 with open(os.path.join(root,'makefile')) as mklines:
62 if root.find('/tests') > -1 or root.find('tutorials') > -1:
66 with open(os.path.join(root,f)) as fd: