Lines Matching refs:hint
73 * Parses a 'name(hint)' pattern.
76 * @return an array with a name and hint, or false
81 list($type, $hint) = $p->type($match[1]);
82 return array($type, $hint);
153 list($type, $hint) = $this->getPredicateType();
154 return $this->loadType($type)->normalize($p, $hint);
166 list($typename, $hint) = $this->getPredicateType();
167 $this->renderField($mode, $R, $T, $p, $typename, $hint);
180 * @param hint optional type hint
183 function renderValue($mode, &$R, &$T, $value, $typename, $hint=null, &$type=null) {
189 $type->render($mode, $R, $T, $value, $hint);
203 * @param hint optional type hint
208 function renderField($mode, &$R, &$T, $values, $typename, $hint=null, &$type=null, $field=null, $separator=', ') {
220 $this->renderValue($mode, $R, $T, $value, $typename, $hint, $type);