Lines Matching refs:arg
94 foreach($args as $arg){
95 if ($arg[0] == '=') {
96 $this->setVal(substr($arg,1));
97 } elseif ($arg == '!') {
99 } elseif ($arg == '^') {
104 } elseif($arg == '@') {
106 } elseif($arg == '@@') {
108 } elseif(preg_match('/x\d/', $arg)) {
109 $this->opt['rows'] = substr($arg,1);
110 } elseif($arg[0] == '.') {
111 $this->opt['class'] = substr($arg, 1);
112 } elseif(preg_match('/0{2,}/', $arg)) {
113 $this->opt['leadingzeros'] = strlen($arg);
114 } elseif($arg[0].$arg[1] == '**') {
115 $this->opt['matchexplanation'] = substr($arg,2);
117 $t = $arg[0];
118 $d = substr($arg,1);
129 … msg(sprintf($this->getLang('e_unknownconstraint'), hsc($t).' ('.hsc($arg).')'), -1);