Lines Matching refs:group

32      * are used with '/' as delimiter, and should contain at least one capture group.
225 'group'=>array(),
236 $grouping = $this->extractGroups($root, 'group');
241 // transform actual group
255 list($group, $scope) = $this->transformGroup($tree, $typemap);
256 $result['group'] = $group;
257 if(!$group) return false;
265 // handle each line in the group
290 // we have a group, so we want grouping
346 * Transforms a full query group.
350 * @return the transformed group and a list of in-scope variables
447 * Transforms a union group with multiple subgroups
449 * @param root array the union group to transform
451 * @return the transformed group and a list of in-scope variables
466 // transform the first group
469 // transform each subsequent group
712 * Parses a projection group in 'long syntax'.
740 * Parses a projection group in 'short syntax'.
937 * Returns whether the given node is a group.
998 foreach ($tree['cs'] as $group) {
999 $this->emitError($group, 'error_property_unknowngroup', hsc($trees[0]['tag']), hsc($group['tag']));
1016 function _setPropertyValue($properties, $group, $region, $variable, $isMulti, $value, &$propertyValues) {
1027 $this->emitError($region, 'error_property_unknownproperty', hsc($group), hsc($variable), $propertyList);
1030 $this->emitError($region, 'error_property_multi', hsc($group), hsc($variable));
1043 $this->emitError($region, 'error_property_notmulti', hsc($group), hsc($variable), $minOccur);
1050 $this->emitError($region, 'error_property_occur', hsc($group), hsc($variable), $minOccur, count($values));
1052 $this->emitError($region, 'error_property_occurrange', hsc($group), hsc($variable), $minOccur, $maxOccur, count($values));
1076 $this->emitError($region, 'error_property_invalidchoice', hsc($group), hsc($variable), hsc($v), implode(', ', $choicesInfo));
1086 $this->emitError($region, 'error_property_patterndesc', hsc($group), hsc($variable), hsc($v), $p['pattern_desc']);
1088 $this->emitError($region, 'error_property_pattern', hsc($group), hsc($variable), hsc($v), hsc($p['pattern']));