Lines Matching refs:return

490             $return[$property] = $value;
491 return $return;
503 $return = array();
508 $return[$shorthands[$property][$i]] = $values[$i].$important;
513 $return[$shorthands[$property][0]] = $values[0].$important;
514 $return[$shorthands[$property][1]] = $values[1].$important;
515 $return[$shorthands[$property][3]] = $values[1].$important;
516 $return[$shorthands[$property][2]] = $values[2].$important;
522 …$return[$shorthands[$property][$i]] = (($i % 2 != 0)) ? $values[1].$important : $values[0].$import…
529 $return[$shorthands[$property][$i]] = $values[0].$important;
533 return $return;
600 $return = $array;
608 $return[$key] = '';
617 $return[$key] .= csstidy::gvw_important($val).' ';
621 $return[$key] .= $val.' ';
623 unset($return[$value[$i]]);
625 $return[$key] = csstidy_optimise::shorthand(trim($return[$key].$important));
628 return $return;
648 …$return = array('background-image' => NULL,'background-size' => NULL,'background-repeat' => NULL,'…
668 $return['background-image'] .= $str_value[$i][$j].',';
673 $return['background-repeat'] .= $str_value[$i][$j].',';
677 $return['background-attachment'] .= $str_value[$i][$j].',';
681 $return['background-clip'] .= $str_value[$i][$j].',';
686 $return['background-origin'] .= $str_value[$i][$j].',';
690 $return['background-size'] .= substr($str_value[$i][$j],1,-1).',';
694 $return['background-position'] .= $str_value[$i][$j];
695 …if(!$have['pos']) $return['background-position'] .= ' '; else $return['background-position'].= ',';
700 $return['background-color'] .= $str_value[$i][$j].',';
708 if($return[$bg_prop] !== NULL)
710 $return[$bg_prop] = substr($return[$bg_prop],0,-1).$important;
712 else $return[$bg_prop] = $default_value.$important;
714 return $return;