Lines Matching refs:PetscStrcasecmp
313 PetscCall(PetscStrcasecmp(first, "-options_file", &isfile)); in PetscOptionsInsertString_Private()
314 PetscCall(PetscStrcasecmp(first, "-options_file_yaml", &isfileyaml)); in PetscOptionsInsertString_Private()
315 PetscCall(PetscStrcasecmp(first, "-options_string_yaml", &isstringyaml)); in PetscOptionsInsertString_Private()
316 PetscCall(PetscStrcasecmp(first, "-prefix_push", &ispush)); in PetscOptionsInsertString_Private()
317 PetscCall(PetscStrcasecmp(first, "-prefix_pop", &ispop)); in PetscOptionsInsertString_Private()
525 PetscCall(PetscStrcasecmp(tokens[0], "alias", &alias)); in PetscOptionsInsertFilePetsc()
669 PetscCall(PetscStrcasecmp(eargs[0], "-options_file", &isfile)); in PetscOptionsInsertArgs()
670 PetscCall(PetscStrcasecmp(eargs[0], "-options_file_yaml", &isfileyaml)); in PetscOptionsInsertArgs()
671 PetscCall(PetscStrcasecmp(eargs[0], "-options_string_yaml", &isstringyaml)); in PetscOptionsInsertArgs()
672 PetscCall(PetscStrcasecmp(eargs[0], "-prefix_push", &ispush)); in PetscOptionsInsertArgs()
673 PetscCall(PetscStrcasecmp(eargs[0], "-prefix_pop", &ispop)); in PetscOptionsInsertArgs()
753 PetscCall(PetscStrcasecmp(args[a], opt[o], &eq)); in PetscOptionsProcessPrecedentFlags()
764 PetscCall(PetscStrcasecmp(val[PO_HELP], "intro", &options->help_intro)); in PetscOptionsProcessPrecedentFlags()
1858 PetscCall(PetscStrcasecmp(options->names[i], name, used)); in PetscOptionsUsed()
2157 PetscCall(PetscStrcasecmp(value, "TRUE", &istrue)); in PetscOptionsStringToBool()
2162 PetscCall(PetscStrcasecmp(value, "YES", &istrue)); in PetscOptionsStringToBool()
2167 PetscCall(PetscStrcasecmp(value, "1", &istrue)); in PetscOptionsStringToBool()
2172 PetscCall(PetscStrcasecmp(value, "on", &istrue)); in PetscOptionsStringToBool()
2177 PetscCall(PetscStrcasecmp(value, "FALSE", &isfalse)); in PetscOptionsStringToBool()
2182 PetscCall(PetscStrcasecmp(value, "NO", &isfalse)); in PetscOptionsStringToBool()
2187 PetscCall(PetscStrcasecmp(value, "0", &isfalse)); in PetscOptionsStringToBool()
2192 PetscCall(PetscStrcasecmp(value, "off", &isfalse)); in PetscOptionsStringToBool()
2212 PetscCall(PetscStrcasecmp(name, "PETSC_DEFAULT", &tdefault)); in PetscOptionsStringToInt()
2213 if (!tdefault) PetscCall(PetscStrcasecmp(name, "DEFAULT", &tdefault)); in PetscOptionsStringToInt()
2214 PetscCall(PetscStrcasecmp(name, "PETSC_DECIDE", &decide)); in PetscOptionsStringToInt()
2215 if (!decide) PetscCall(PetscStrcasecmp(name, "DECIDE", &decide)); in PetscOptionsStringToInt()
2216 if (!decide) PetscCall(PetscStrcasecmp(name, "PETSC_DETERMINE", &decide)); in PetscOptionsStringToInt()
2217 if (!decide) PetscCall(PetscStrcasecmp(name, "DETERMINE", &decide)); in PetscOptionsStringToInt()
2218 PetscCall(PetscStrcasecmp(name, "PETSC_UNLIMITED", &unlimited)); in PetscOptionsStringToInt()
2219 if (!unlimited) PetscCall(PetscStrcasecmp(name, "UNLIMITED", &unlimited)); in PetscOptionsStringToInt()
2220 PetscCall(PetscStrcasecmp(name, "mouse", &mouse)); in PetscOptionsStringToInt()
2311 PetscCall(PetscStrcasecmp(name, "PETSC_DEFAULT", &match)); in PetscOptionsStringToReal()
2312 if (!match) PetscCall(PetscStrcasecmp(name, "DEFAULT", &match)); in PetscOptionsStringToReal()
2318 PetscCall(PetscStrcasecmp(name, "PETSC_DECIDE", &match)); in PetscOptionsStringToReal()
2319 if (!match) PetscCall(PetscStrcasecmp(name, "DECIDE", &match)); in PetscOptionsStringToReal()
2325 PetscCall(PetscStrcasecmp(name, "PETSC_DETERMINE", &match)); in PetscOptionsStringToReal()
2326 if (!match) PetscCall(PetscStrcasecmp(name, "DETERMINE", &match)); in PetscOptionsStringToReal()
2332 PetscCall(PetscStrcasecmp(name, "PETSC_UNLIMITED", &match)); in PetscOptionsStringToReal()
2333 if (!match) PetscCall(PetscStrcasecmp(name, "UNLIMITED", &match)); in PetscOptionsStringToReal()
2471 PetscCall(PetscStrcasecmp("AUTO", value, &isAUTO)); // auto or AUTO in PetscOptionsGetBool3()
2472 if (!isAUTO) PetscCall(PetscStrcasecmp("UNKNOWN", value, &isUNKNOWN)); // unknown or UNKNOWN in PetscOptionsGetBool3()