Lines Matching defs:typename
166 list($typename, $hint) = $this->getPredicateType();
167 $this->renderField($mode, $R, $T, $p, $typename, $hint);
179 * @param typename name of the type
181 * @param type optional type object, if omitted the typename will be used to get the type
183 function renderValue($mode, &$R, &$T, $value, $typename, $hint=null, &$type=null) {
185 if($type == null) $type = $this->loadType($typename);
188 $this->openValue($mode, $R, $typename);
202 * @param typename the name of the type
204 * @param type optional type object, if omitted typename will be used
208 function renderField($mode, &$R, &$T, $values, $typename, $hint=null, &$type=null, $field=null, $separator=', ') {
213 if($type == null) $type = $this->loadType($typename);
220 $this->renderValue($mode, $R, $T, $value, $typename, $hint, $type);
234 function openValue($mode, &$R, $typename) {
235 if($mode == 'xhtml') $R->doc .= '<span class="strata-value strata-type-'.$typename.'">';