Home
last modified time | relevance | path

Searched refs:index (Results 1 – 3 of 3) sorted by relevance

/honee/tests/
H A Djunit_common.py346 index = field_names.index(key)
351 known[key] = test_fields[index].type(value) # type: ignore
354 known[key] = get_origin(test_fields[index].type)(value) # type: ignore
524 backend: str, test: str, index: int, verbose: bool) -> str:
585 def run_test(index: int, test: str, spec: TestSpec, backend: str,
606 run_args[run_args.index('{ceed_resource}')] = backend
611 run_args[run_args.index('{nproc}')] = f'{nproc}'
755 output_str = test_case_output_string(test_case, spec, mode, backend, test, index, verbose)
/honee/
H A DDoxyfile1149 # (index.html). This can be useful if you have a project on for instance GitHub
1250 # Configuration options related to the alphabetical class index
1253 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
1261 # that should be ignored while generating the index headers. The IGNORE_PREFIX
1407 # documentation will contain a main index with vertical navigation menus that
1408 # are dynamically created via JavaScript. If disabled, the navigation index will
1445 # If the GENERATE_DOCSET tag is set to YES, additional index files will be
1498 # additional HTML index files: index.hhp, index.hhc, and index.hhk. The
1499 # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
1511 # HTML files also contain an index, a table of contents, and you can search for
[all …]
/honee/src/
H A Dmat-ceed.c80 PetscInt index = -1; in MatCeedAssemblePointBlockDiagonalCOO() local
83 if (ctx->mats_assembled_pbd[i] == mat_coo) index = i; in MatCeedAssemblePointBlockDiagonalCOO()
85 if (index == -1) { in MatCeedAssemblePointBlockDiagonalCOO()
747 CeedInt index = -1; in MatCeedAssembleCOO() local
750 if (ctx->mats_assembled_full[i] == mat_coo) index = i; in MatCeedAssembleCOO()
752 if (index == -1) PetscCall(MatCeedSetPreallocationCOO(mat_ceed, mat_coo)); in MatCeedAssembleCOO()