| /petsc/lib/petsc/bin/ |
| H A D | getAPI.py | 22 def mansecpath(mansec): argument 24 return os.path.join('sys','classes',mansec) if mansec in ['bv','ds','fn','rg','st'] else mansec 47 return ' ' + str(obj.includefile)+' (' + str(obj.mansec) + ')\n' 54 def __init__(self, name, mansec, includefile, value, *args, **kwargs): argument 56 self.mansec = mansec 69 self.mansec = None 121 def __init__(self, name, mansec, includefile, opaque, records, *args, **kwargs): argument 123 self.mansec = mansec 150 def __init__(self, name, mansec, includefile, values, *args, **kwargs): argument 152 self.mansec = mansec [all …]
|
| H A D | generatefortranbindings.py | 67 mansec = fun.mansec 68 if not mansec: mansec = fun.submansec 71 ofile = os.path.join(petscarch,'ftn', getAPI.mansecpath(mansec),file) 227 dir = os.path.join(petscarch,'ftn',fun.mansec.lower(),'stubs') 241 fd.write('#include <' + pkgname + fun.mansec + '.h>\n') 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: [all …]
|
| /petsc/doc/ |
| H A D | add_man_page_redirects.py | 27 for mansec in os.listdir(manualpages_dir): 28 subdirectory = os.path.join(manualpages_dir, mansec)
|
| H A D | build_man_pages.py | 10 mansec = None 24 mansec = re.sub('MANSEC[ ]*=[ ]*','',mansecl[0]).strip('\n').strip() 26 return mansec
|
| H A D | build_c2html.py | 53 mansec = re.sub('MANSEC[ ]*=[ ]*','',mansecl[0]).strip('\n').strip() 54 with open(os.path.join('doc','manualpages','MANSECHeaders',mansec)) as fd:
|
| /petsc/src/sys/objects/ |
| H A D | inherit.c | 22 …ClassId classid, const char class_name[], const char descr[], const char mansec[], MPI_Comm comm, … in PetscHeaderCreate_Function() argument 26 PetscCall(PetscHeaderCreate_Private(*h, classid, class_name, descr, mansec, comm, destroy, view)); in PetscHeaderCreate_Function() 34 …ClassId classid, const char class_name[], const char descr[], const char mansec[], MPI_Comm comm, … in PetscHeaderCreate_Private() argument 44 h->mansec = (char *)mansec; in PetscHeaderCreate_Private()
|
| H A D | aoptions.c | 35 …ms PetscOptionsObject, MPI_Comm comm, const char prefix[], const char title[], const char mansec[]) in PetscOptionsBegin_Private() argument 40 if (mansec) PetscAssertPointer(mansec, 5); in PetscOptionsBegin_Private() 74 …tscCall(PetscOptionsBegin_Private(PetscOptionsObject, obj->comm, obj->prefix, title, obj->mansec)); in PetscObjectOptionsBegin_Private()
|
| /petsc/include/petsc/private/ |
| H A D | petscimpl.h | 121 char *mansec; member 327 #define PetscHeaderCreate(h, classid, class_name, descr, mansec, comm, destroy, view) \ argument 328 …(PetscNew(&(h)), (PetscObject *)&(h), (classid), (class_name), (descr), (mansec), (comm), (PetscOb…
|