Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
Dregposix.c136 regcomp(regex_t* reg, const char* pattern, int posix_options) in regcomp() argument
142 if ((posix_options & REG_EXTENDED) == 0) in regcomp()
146 if ((posix_options & REG_ICASE) != 0) in regcomp()
148 if ((posix_options & REG_NEWLINE) != 0) { in regcomp()
153 reg->comp_options = posix_options; in regcomp()
169 regmatch_t pmatch[], int posix_options) in regexec() argument
177 if ((posix_options & REG_NOTBOL) != 0) options |= ONIG_OPTION_NOTBOL; in regexec()
178 if ((posix_options & REG_NOTEOL) != 0) options |= ONIG_OPTION_NOTEOL; in regexec()