Lines Matching refs:_match

136 		$_match		= array();		// a temp variable for the current regex match
165 …_match_all("!{$ldq}\s*literal\s*{$rdq}(.*?){$ldq}\s*/literal\s*{$rdq}!s", $file_contents, $_match);
166 $this->_literal = $_match[1];
170 preg_match_all("!{$ldq}\s*php\s*{$rdq}(.*?){$ldq}\s*/php\s*{$rdq}!s", $file_contents, $_match);
171 $this->_php_blocks = $_match[1];
175 preg_match_all("!{$ldq}\s*(.*?)\s*{$rdq}!s", $file_contents, $_match);
176 $tags = $_match[1];
226 $_match = array(); // stores the tags
231 …s->_func_regexp . ')(' . $this->_mod_regexp . '*)(?:\s*[,\.]\s*)?)(?:\s+(.*))?/xs', $tag, $_match);
233_match[1][0]{0} == '$' || ($_match[1][0]{0} == '#' && $_match[1][0]{strlen($_match[1][0]) - 1} == …
235 $_result = $this->_parse_variables($_match[1], $_match[2]);
239 $tag_command = $_match[1][0];
240 $tag_modifiers = !empty($_match[2][0]) ? $_match[2][0] : null;
241 $tag_arguments = !empty($_match[3][0]) ? $_match[3][0] : null;
564 $_match = array();
567 preg_match_all('/(?:' . $this->_qstr_regexp . ' | (?>[^"\'=\s]+))+|[=]/x', $arguments, $_match);
575 foreach($_match[0] as $value)
754 …eg_match_all('!(?:^\w+)|(?:' . $this->_var_bracket_regexp . ')|\.\$?\w+|\S+!', $variable, $_match);
755 $variable = $_match[0];
805 $constant = str_replace($find, "", $_match[0][2]);
884 $_match = array();
888 …eg_match_all('!\|(@?\w+)((?>:(?:'. $this->_qstr_regexp . '|[^|]+))*)!', '|' . $modifiers, $_match);
889 list(, $_mods, $_args) = $_match;
894 preg_match_all('!:(' . $this->_qstr_regexp . '|[^:]+)!', $_args[$i], $_match);
895 $_arg = $_match[1];