Lines Matching refs:optionParser

13 class optionParser {
16 optionParser::preg_match_all_wrapper($pattern, $match, $found);
19 $match = optionParser::_removeFromMatch($regex[0], $match);
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)) {
45 $match = optionParser::_removeFromMatch($found[0], $match);
50 if(optionParser::preg_match_wrapper("nb?Cols? *=? *\"?([[:digit:]]*)\"?", $match, $found)) {
54 $match = optionParser::_removeFromMatch($found[0], $match);
59 if(optionParser::preg_match_wrapper("nb?Items?Max *=? *\"?([[:digit:]]*)\"?", $match, $found)) {
63 $match = optionParser::_removeFromMatch($found[0], $match);
68 if(optionParser::preg_match_wrapper("anchorName *=? *\"?([[:alnum:]]+)\"?", $match, $found)) {
70 $match = optionParser::_removeFromMatch($found[0], $match);
75 if(optionParser::preg_match_wrapper($argumentName . " *= *\"([^\"]*)\"", $match, $found)) {
77 $match = optionParser::_removeFromMatch($found[0], $match);
84 if(optionParser::preg_match_wrapper("dict(?:ionary)?Order *= *\"([^\"]*)\"", $match, $found)) {
86 $match = optionParser::_removeFromMatch($found[0], $match);
94 if(optionParser::preg_match_wrapper("exclude:\[(.*)\]", $match, $found)) {
95 $match = optionParser::_removeFromMatch($found[0], $match);
100 optionParser::preg_match_all_wrapper("exclude:([^[ <>]*):", $match, $found);
103 $match = optionParser::_removeFromMatch($subns[0], $match);
107 optionParser::preg_match_all_wrapper("exclude:([^[ <>]*)", $match, $found);
110 $match = optionParser::_removeFromMatch($page[0], $match);
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) ){
145 } else if ( optionParser::preg_match_wrapper("actualTitle", $match, $found) ){
151 $match = optionParser::_removeFromMatch($found[0], $match);