Lines Matching refs:preg_match_wrapper
32 if(optionParser::preg_match_wrapper($pattern, $match, $found)) {
39 if(optionParser::preg_match_wrapper('r *=? *\"?([[:digit:]]*)\"?', $match, $found)) {
50 if(optionParser::preg_match_wrapper("nb?Cols? *=? *\"?([[:digit:]]*)\"?", $match, $found)) {
59 … if(optionParser::preg_match_wrapper("nb?Items?Max *=? *\"?([[:digit:]]*)\"?", $match, $found)) {
68 … if(optionParser::preg_match_wrapper("anchorName *=? *\"?([[:alnum:]]+)\"?", $match, $found)) {
75 if(optionParser::preg_match_wrapper($argumentName . " *= *\"([^\"]*)\"", $match, $found)) {
84 … if(optionParser::preg_match_wrapper("dict(?:ionary)?Order *= *\"([^\"]*)\"", $match, $found)) {
94 if(optionParser::preg_match_wrapper("exclude:\[(.*)\]", $match, $found)) {
114 if(optionParser::preg_match_wrapper("exclude", $match, $found)) {
142 if ( optionParser::preg_match_wrapper("actualTitle *= *([[:digit:]])", $match, $found) ){
145 } else if ( optionParser::preg_match_wrapper("actualTitle", $match, $found) ){
155 static private function preg_match_wrapper($pattern, $subject, &$matches){ function in optionParser