{# -*- engine: jinja -*- #}
{% set class_sortable = " sortable" if not info.static_report and function_list | length > 1 else "" %}
Function (File:Line)
Calls
Lines
Branches
{% if SHOW_CONDITION_COVERAGE %}
Conditions
{% endif %}
Blocks
{% for entry in function_list %}
{%- if entry["excluded"] %}excluded {%- else %} {%- if entry["count"] == 0 %}not called {%- else %}called {{ entry["count"] }} time{% if entry["count"] > 1 %}s{% endif %} {%- endif -%} {%- endif -%}
{{ entry["line_coverage"] }}%
{{ entry["branch_coverage"] }}%
{% if SHOW_CONDITION_COVERAGE %}
{{ entry["condition_coverage"] }}%
{% endif %}
{{ '-' if entry["blocks"] is none else entry["blocks"] }}%
{% endfor %}