Searched refs:fullname (Results 1 – 8 of 8) sorted by relevance
| /petsc/share/petsc/matlab/ |
| H A D | PetscReadBinaryTrajectory.m | 29 fullname = fullfile(inarg,'variablenames'); variable 30 if exist(fullname,'file') == 2 31 fd = PetscOpenFile(fullname); 43 fullname = fullfile(inarg,filename); variable 44 if exist(fullname,'file') ~= 2 48 fd = PetscOpenFile(fullname);
|
| /petsc/src/binding/petsc4py/docs/source/_templates/autosummary/ |
| H A D | class.rst | 1 {{ fullname | escape | underline}} 43 ~{{ fullname }}.{{ item }} 53 ~{{ fullname }}.{{ item }} 63 ~{{ fullname }}.{{ item }}
|
| H A D | module.rst | 1 {{ fullname | escape | underline}} 3 .. automodule:: {{ fullname }} 5 :synopsis: {{ synopsis.get(fullname, '') }}
|
| /petsc/src/sys/fileio/ |
| H A D | fdir.c | 17 static PetscErrorCode PetscPathJoin(const char dname[], const char fname[], size_t n, char fullname… in PetscPathJoin() argument 25 PetscCall(PetscStrncpy(fullname, dname, n)); in PetscPathJoin() 26 PetscCall(PetscStrlcat(fullname, "/", n)); in PetscPathJoin() 27 PetscCall(PetscStrlcat(fullname, fname, n)); in PetscPathJoin()
|
| /petsc/src/binding/petsc4py/src/petsc4py/lib/ |
| H A D | __init__.py | 72 fullname = f'{pkg}.{name}' 76 spec = finder.find_spec(fullname, pathlist) 78 sys.modules[fullname] = module 83 return imp.load_module(fullname, f, fn, info)
|
| /petsc/src/vec/vec/tests/ |
| H A D | ex48.c | 435 char *fullname = buf; in testGroupsDatasets() local 438 PetscCall(PetscSNPrintf(fullname, sizeof(buf), "%s/%s", group, name)); in testGroupsDatasets() 442 if (verbose) PetscCall(PetscPrintf(comm, " %s dataset? %s", fullname, PetscBools[flg2])); in testGroupsDatasets() 443 …, comm, PETSC_ERR_PLIB, "Dataset %s should exist? %s Exists in %s? %s", fullname, PetscBools[flg1]… in testGroupsDatasets() 452 …g1, comm, PETSC_ERR_PLIB, "Dataset %s in %s is not equal to the original Vec", fullname, filename); in testGroupsDatasets()
|
| /petsc/src/sys/objects/ |
| H A D | options.c | 1280 char fullname[PETSC_MAX_OPTION_NAME] = ""; in PetscOptionsSetValue_Private() local 1296 strncpy(fullname, options->prefix, sizeof(fullname)); in PetscOptionsSetValue_Private() 1297 fullname[sizeof(fullname) - 1] = 0; in PetscOptionsSetValue_Private() 1298 strncat(fullname, name, sizeof(fullname) - strlen(fullname) - 1); in PetscOptionsSetValue_Private() 1299 fullname[sizeof(fullname) - 1] = 0; in PetscOptionsSetValue_Private() 1300 name = fullname; in PetscOptionsSetValue_Private()
|
| /petsc/src/binding/petsc4py/conf/ |
| H A D | confpetsc.py | 620 fullname = self.get_ext_fullname(ext.name) 621 modpath = str.split(fullname, '.') 778 fullname = self.get_ext_fullname(ext.name) 779 filename = self.get_ext_filename(fullname)
|