Searched refs:typedefs (Results 1 – 7 of 7) sorted by relevance
| /petsc/lib/petsc/bin/maint/ |
| H A D | prettyprintAPI.py | 19 classes, enums, senums, typedefs, structs, funcs, files, mansecs, submansecs = getAPI.getAPI() 27 for t in typedefs: 28 print(typedefs[t]) 50 for i in sorted(list(typedefs.keys())): 52 if typedefs[i].name: 53 fd.write('- '+i+' = '+typedefs[i].value+'\n')
|
| /petsc/lib/petsc/bin/ |
| H A D | getAPI.py | 35 typedefs = {} variable 329 if typedef in typedefs: 330 …typedefs[typedef].name = None # mark to be deleted since it appears multiple times (with presumabl… 332 typedefs[typedef] = Typedef(typedef,mansec,file,fl.group(0).split()[1]) 640 global typedefs 669 for i in typedefs.keys(): 670 if typedefs[i].name: cp[i] = typedefs[i] # delete ones marked as having multiple definitions 671 typedefs = cp 673 for i in typedefs.keys(): 674 verbosePrint(verbose, typedefs[i]) [all …]
|
| H A D | generatefortranbindings.py | 508 …classes, enums, senums, typedefs, structs, funcs, files, mansecs, submansecs = getAPI.getAPI(petsc… 515 pickle.dump(typedefs,file) 531 …classes, enums, senums, typedefs, structs, funcs, files, mansecs, submansecs = getAPI.getAPI(slepc… 564 for i in typedefs.keys(): 565 if not typedefs[i].name: continue 567 value = typedefs[i].value 571 with open(os.path.join(dir, typedefs[i].includefile),"a") as fd:
|
| /petsc/doc/changes/ |
| H A D | 321.md | 28 - Deprecate `PetscVoidFunction`, `PetscVoidStarFunction`, and `PetscErrorCodeFunction` typedefs in … 136 - Add function typedefs `SNESInitialGuessFn`, `SNESFunctionFn`, `SNESObjectiveFn`, `SNESJacobianFn`…
|
| /petsc/config/BuildSystem/config/ |
| H A D | base.py | 76 self.typedefs = {} 188 self.typedefs[value] = name
|
| H A D | framework.py | 887 if not hasattr(child, 'typedefs') or not isinstance(child.typedefs, dict): return 888 for newType, oldType in child.typedefs.items():
|
| /petsc/doc/developers/ |
| H A D | buildsystem.md | 306 function prototypes and typedefs are removed to a separate header.
|