Lines Matching refs:join

71   ofile = os.path.join(petscarch,'ftn', getAPI.mansecpath(mansec),file)
81 …with open(os.path.join(petscarch, 'include', pkgname, 'finclude', file.replace('.h90', '.h')),'a')…
227 dir = os.path.join(petscarch,'ftn',fun.mansec.lower(),'stubs')
230 dir = os.path.join(petscarch,fun.dir.replace('src/','ftn/'))
233 dir = os.path.join(fun.dir,'ftn-custom')
237 with open(os.path.join(dir,filename.replace('.c','f.c')),'a') as fd:
432 shutil.copy(os.path.join(fun.dir,'makefile'), os.path.join(dir,'makefile'))
434 with open(os.path.join(fun.dir,'makefile')) as fin:
435 with open(os.path.join(dir,'makefile'),'w') as fout:
437 output = check_output('git add ' + os.path.join(dir,'makefile'), shell=True).decode('utf-8')
438 …print('Fix the manual stub for ' + fun.name + ' in ' + os.path.join(dir,filename.replace('.c','f.c…
439 …output = check_output('git add ' + os.path.join(dir,filename.replace('.c','f.c')), shell=True).dec…
450 fd.write(' subroutine ' + funname + ''.join(fi) + '(')
502 …with open(os.path.join(petscdir,'' if slepcdir and petscarch.startswith('installed-') else petscar…
510 with open(os.path.join(petscdir,petscarch,'lib','petsc','conf','classes.data'),'wb') as file:
523 …with open(os.path.join(petscdir,'' if petscarch.startswith('installed-') else petscarch,'lib','pet…
539 dir = os.path.join(petscarch,'include', pkgname, 'finclude')
546 with open(os.path.join(dir, i),'w') as fd:
549 fb = os.path.join('include', pkgname, 'finclude',i.replace('.h','base.h'))
551 fd.write('#include "' + os.path.join(pkgname,'finclude',i.replace('.h','base.h')) + '"\n')
556 …fd.write('#include "' + os.path.join(('petsc' if j.startswith('petsc') else 'slepc'),'finclude',j)…
561 with open(os.path.join(dir, enums[i].includefile),"a") as fd:
571 with open(os.path.join(dir, typedefs[i].includefile),"a") as fd:
575 with open(os.path.join(dir, structs[i].includefile),"a") as fd:
583 with open(os.path.join(dir, i),'a') as fd:
587 with open(os.path.join(dir, senums[i].includefile),"a") as fd:
592 with open(os.path.join(dir, i),'a') as fd:
597 with open(os.path.join(dir, classes[i].includefile),"a") as fd:
602 with open(os.path.join(petscarch,'include', 'petsc', 'finclude', 'petscsys.h'),"a") as fd:
608 with open(os.path.join(dir, i),'a') as fd:
613 dir = os.path.join(petscarch,'ftn')
619 dir = os.path.join(petscarch,'ftn', i)
623 dir = os.path.join(petscarch,'ftn', getAPI.mansecpath(i))
629 …with open(os.path.join(petscarch,'ftn', getAPI.mansecpath(classes[i].mansec),classes[i].includefil…
650 …with open(os.path.join(petscarch,'ftn', getAPI.mansecpath(enums[i].mansec),enums[i].includefile),"…
685 …with open(os.path.join(petscarch,'ftn', getAPI.mansecpath(senums[i].mansec),senums[i].includefile)…
698 …with open(os.path.join(petscarch,'ftn', getAPI.mansecpath(structs[i].mansec),structs[i].includefil…
716 with open(os.path.join(petscarch,'ftn', getAPI.mansecpath(classes[i].mansec),file),"a") as fd:
726 with open(os.path.join(petscarch,'ftn', getAPI.mansecpath(classes[i].mansec),file),"a") as fd:
766 with open(os.path.join(petscarch,'ftn',getAPI.mansecpath(enums[i].mansec),file),"a") as fd:
778 …with open(os.path.join(petscarch,'ftn', getAPI.mansecpath(classes[i].mansec),classes[i].includefil…
871 …with open(os.path.join(petscarch,'ftn',getAPI.mansecpath(enums[i].mansec),enums[i].includefile + '…
922 d = os.path.join(petscarch,'ftn', getAPI.mansecpath(i))
923 dd = os.path.join('../','ftn', getAPI.mansecpath(i))
924 args = [os.path.join(d,i) for i in os.listdir(d) if i.endswith('.h')]
927 …with open(os.path.join(d,pkgname + 'all.h'),'w') as fd, open(os.path.join(d,pkgname + 'all.h90'),'…
935 …fd.write('#include <' + os.path.join(('petsc' if j.startswith('petsc') else 'slepc'),'finclude',j)…
936 if os.path.isfile(os.path.join(d,j)) :
937 fd.write('#include <' + os.path.join(dd,j) + '>\n')
938 if os.path.isfile(os.path.join(d,j + '90')):
939 fd90.write('#include <' + os.path.join(dd,j + '90') + '>\n')
940 if os.path.isfile(os.path.join(d,j + 'f90')):
941 fdf90.write('#include <' + os.path.join(dd,j + 'f90') + '>\n')
943 fd.write('#include <' + os.path.join(pkgname,'finclude',f) + '>\n')
944 fd.write('#include <' + os.path.join(dd,f) + '>\n')
945 if os.path.isfile(os.path.join(d,f + '90')):
946 fd90.write('#include <' + os.path.join(dd,f + '90') + '>\n')
947 if os.path.isfile(os.path.join(d,f + 'f90')):
948 fdf90.write('#include <' + os.path.join(dd,f + 'f90') + '>\n')