Lines Matching refs:PetscOptNameCmp
23 #define PetscOptNameCmp(a, b) strcasecmp(a, b) macro
25 #define PetscOptNameCmp(a, b) stricmp(a, b) macro
27 #define PetscOptNameCmp(a, b) Error_strcasecmp_not_found macro
56 return !PetscOptNameCmp(a, b); in PetscOptEqual()
794 if (!PetscOptNameCmp(precedentOptions[i], name)) { in PetscOptionsSkipPrecedent()
1305 int result = PetscOptNameCmp(options->aliases1[i], name); in PetscOptionsSetValue_Private()
1316 int result = PetscOptNameCmp(names[i], name); in PetscOptionsSetValue_Private()
1389 if (!PetscOptNameCmp(name, "help")) { in PetscOptionsSetValue_Private()
1391 options->help_intro = (value && !PetscOptNameCmp(value, "intro")) ? PETSC_TRUE : PETSC_FALSE; in PetscOptionsSetValue_Private()
1431 if (!PetscOptNameCmp(name, "-help")) options->help = options->help_intro = PETSC_FALSE; in PetscOptionsClearValue()
1439 int result = PetscOptNameCmp(names[i], name); in PetscOptionsClearValue()