Lines Matching refs:found

16         optionParser::preg_match_all_wrapper($pattern, $match, $found);
17 foreach($found as $regex) {
29 * @param mixed $valIfFound the value affected to the previous variable if the option is found
32 if(optionParser::preg_match_wrapper($pattern, $match, $found)) {
34 $match = optionParser::_removeFromMatch($found[0], $match);
39 if(optionParser::preg_match_wrapper('r *=? *\"?([[:digit:]]*)\"?', $match, $found)) {
40 if($found[1] != '') {
41 $varAffected = (int) $found[1];
45 $match = optionParser::_removeFromMatch($found[0], $match);
50 if(optionParser::preg_match_wrapper("nb?Cols? *=? *\"?([[:digit:]]*)\"?", $match, $found)) {
51 if($found[1] != '') {
52 $varAffected = max((int) $found[1], 1);
54 $match = optionParser::_removeFromMatch($found[0], $match);
59 if(optionParser::preg_match_wrapper("nb?Items?Max *=? *\"?([[:digit:]]*)\"?", $match, $found)) {
60 if($found[1] != '') {
61 $varAffected = max((int) $found[1], 1);
63 $match = optionParser::_removeFromMatch($found[0], $match);
68 if(optionParser::preg_match_wrapper("anchorName *=? *\"?([[:alnum:]]+)\"?", $match, $found)) {
69 $varAffected = $found[1];
70 $match = optionParser::_removeFromMatch($found[0], $match);
75 if(optionParser::preg_match_wrapper($argumentName . " *= *\"([^\"]*)\"", $match, $found)) {
76 $varAffected = $found[1];
77 $match = optionParser::_removeFromMatch($found[0], $match);
84 if(optionParser::preg_match_wrapper("dict(?:ionary)?Order *= *\"([^\"]*)\"", $match, $found)) {
85 $varAffected = $found[1];
86 $match = optionParser::_removeFromMatch($found[0], $match);
94 if(optionParser::preg_match_wrapper("exclude:\[(.*)\]", $match, $found)) {
95 $match = optionParser::_removeFromMatch($found[0], $match);
96 self::_addListOfItemsToExclude(explode(' ', $found[1]), $excludedPages, $excludedNs);
100 optionParser::preg_match_all_wrapper("exclude:([^[ <>]*):", $match, $found);
101 foreach($found as $subns) {
107 optionParser::preg_match_all_wrapper("exclude:([^[ <>]*)", $match, $found);
108 foreach($found as $page) {
114 if(optionParser::preg_match_wrapper("exclude", $match, $found)) {
116 $match = optionParser::_removeFromMatch($found[0], $match);
142 if ( optionParser::preg_match_wrapper("actualTitle *= *([[:digit:]])", $match, $found) ){
143 $varAffected = $found[1];
145 } else if ( optionParser::preg_match_wrapper("actualTitle", $match, $found) ){
151 $match = optionParser::_removeFromMatch($found[0], $match);