Lines Matching refs:preg_match_wrapper
29 if(optionParser::preg_match_wrapper($pattern, $match, $found)) {
36 if(optionParser::preg_match_wrapper('r *=? *\"?([[:digit:]]*)\"?', $match, $found)) {
47 if(optionParser::preg_match_wrapper("nb?Cols? *=? *\"?([[:digit:]]*)\"?", $match, $found)) {
56 … if(optionParser::preg_match_wrapper("nb?Items?Max *=? *\"?([[:digit:]]*)\"?", $match, $found)) {
65 … if(optionParser::preg_match_wrapper("anchorName *=? *\"?([[:alnum:]]+)\"?", $match, $found)) {
72 if(optionParser::preg_match_wrapper($argumentName . " *= *\"([^\"]*)\"", $match, $found)) {
81 … if(optionParser::preg_match_wrapper("dict(?:ionary)?Order *= *\"([^\"]*)\"", $match, $found)) {
91 if(optionParser::preg_match_wrapper("exclude:\[(.*)\]", $match, $found)) {
111 if(optionParser::preg_match_wrapper("exclude", $match, $found)) {
134 if ( optionParser::preg_match_wrapper("actualTitle *= *([[:digit:]])", $match, $found) ){
136 } else if ( optionParser::preg_match_wrapper("actualTitle", $match, $found) ){
142 static private function preg_match_wrapper($pattern, $subject, &$matches){ function in optionParser