Searched refs:dirpath (Results 1 – 8 of 8) sorted by relevance
| /petsc/lib/petsc/bin/maint/ |
| H A D | generateetags.py | 119 def processDir(flist, dirpath, dirnames, filenames): argument 128 elif endsWithSuffix(l,hsfx) and not endsWithSuffix(l,bsfx) and not badWebIndex(dirpath,l): 131 if newls: flist.extend([os.path.join(dirpath,name) for name in newls]) 135 if exname in dirnames and os.path.realpath(dirpath) == os.path.realpath(os.getcwd()): 145 filename=os.path.join(dirpath,name) 151 if os.path.isdir(os.path.join(dirpath,name,'petsc','conf')): 186 for dirpath, dirnames, filenames in os.walk(os.getcwd()): 187 processDir(flist, dirpath, dirnames, filenames)
|
| H A D | check_header_guard.py | 433 dirpath = pathlib.Path(dirname) 436 errors.extend(replace_in_file(dirpath / f, args, replacer_cls))
|
| /petsc/doc/ |
| H A D | make_links_relative.py | 14 for dirpath, dirnames, filenames in os.walk(root, topdown=True): 16 level = os.fspath(dirpath).count(os.path.sep) - root_level 21 filename_from_root = os.path.join(dirpath, filename)
|
| H A D | build_man_examples_links.py | 48 for dirpath, dirnames, filenames in os.walk(os.path.join(petsc_dir,'src'),topdown=True): 50 if dirpath.endswith('tutorials'): 51 processdir(petsc_dir,dirpath,keyre,mdict,uses)
|
| H A D | build_man_impls_links.py | 59 for dirpath, dirnames, filenames in os.walk(os.path.join(build_dir,'manualpages'),topdown=True): 62 …if file.endswith('.md'): processfile(petsc_dir,build_dir,dirpath,file,implsClassAll,subimplsClassA…
|
| H A D | build_man_pages.py | 93 for dirpath, dirnames, filenames in os.walk(os.path.join(petsc_dir),topdown=True): 95 numberErrors = numberErrors + processdir(petsc_dir,build_dir,dirpath,doctext)
|
| /petsc/lib/petsc/bin/ |
| H A D | getAPI.py | 680 for dirpath, dirnames, filenames in os.walk(os.path.join(directory,'src'),topdown=True): 681 dirpath = dirpath.replace(directory + '/','') 683 if not os.path.isfile(os.path.join(dirpath,'makefile')): continue 684 mansec, submansec = findlmansec(dirpath) 685 for i in os.listdir(dirpath): 686 …swith('.c') or i.endswith('.cxx'): getFunctions(mansec, functiontoinclude, os.path.join(dirpath,i))
|
| /petsc/ |
| H A D | setup.py | 272 for dirpath, _, filenames in os.walk(prefix): 274 self.outputs.append(os.path.join(dirpath, fn))
|