Lines Matching refs:found
482 PetscErrorCode PetscStrInList(const char str[], const char list[], char sep, PetscBool *found) in PetscStrInList() argument
488 PetscAssertPointer(found, 4); in PetscStrInList()
489 *found = PETSC_FALSE; in PetscStrInList()
493 PetscCall(PetscStrcmp(str, item, found)); in PetscStrInList()
494 if (*found) break; in PetscStrInList()
666 PetscBool found; in PetscStrcmpAny() local
667 PetscCall(PetscStrcmp(src, cmp, &found)); in PetscStrcmpAny()
668 if (found) { in PetscStrcmpAny()
696 …cEListFind(PetscInt n, const char *const *list, const char *str, PetscInt *value, PetscBool *found) in PetscEListFind() argument
699 if (found) { in PetscEListFind()
700 PetscAssertPointer(found, 5); in PetscEListFind()
701 *found = PETSC_FALSE; in PetscEListFind()
708 if (found) *found = PETSC_TRUE; in PetscEListFind()
733 …ode PetscEnumFind(const char *const *enumlist, const char *str, PetscEnum *value, PetscBool *found) in PetscEnumFind() argument
748 if (found) { in PetscEnumFind()
749 PetscAssertPointer(found, 4); in PetscEnumFind()
750 *found = efound; in PetscEnumFind()