You are here

function xhprof_print_pct_cell in XHProf 7

4 calls to xhprof_print_pct_cell()
theme_xhprof_run_table in ./xhprof.module
Theme function to display list of XHProf function calls.
xhprof_pc_info in ./xhprof.inc
Print info for a parent or child function xhprof_in the parent & children report.
xhprof_print_function_info in ./xhprof.inc
Print "flat" data corresponding to one function.
xhprof_symbol_report in ./xhprof.inc
Generates a report for a single function/symbol.

File

./xhprof.module, line 539

Code

function xhprof_print_pct_cell($numer, $denom, $bold = FALSE, $attributes = NULL) {
  return array(
    'data' => call_user_func_array('xhprof_print_pct', func_get_args()),
    'class' => 'xhprof_percent',
    'align' => 'right',
  );
}