← Index
NYTProf Performance Profile   « line view »
For t/bug-md-11.t
  Run on Fri Mar 8 13:27:24 2024
Reported on Fri Mar 8 13:30:23 2024

Filename/home/micha/.plenv/versions/5.38.2/lib/perl5/site_perl/5.38.2/Spreadsheet/ParseExcel/Font.pm
StatementsExecuted 15 statements in 70µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
31110µs10µsSpreadsheet::ParseExcel::Font::::newSpreadsheet::ParseExcel::Font::new
1119µs10µsSpreadsheet::ParseExcel::Font::::BEGIN@19Spreadsheet::ParseExcel::Font::BEGIN@19
1113µs18µsSpreadsheet::ParseExcel::Font::::BEGIN@20Spreadsheet::ParseExcel::Font::BEGIN@20
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Spreadsheet::ParseExcel::Font;
2
3###############################################################################
4#
5# Spreadsheet::ParseExcel::Font - A class for Cell fonts.
6#
7# Used in conjunction with Spreadsheet::ParseExcel.
8#
9# Copyright (c) 2014 Douglas Wilson
10# Copyright (c) 2009-2013 John McNamara
11# Copyright (c) 2006-2008 Gabor Szabo
12# Copyright (c) 2000-2006 Kawai Takanori
13#
14# perltidy with standard settings.
15#
16# Documentation after __END__
17#
18
19216µs212µs
# spent 10µs (9+2) within Spreadsheet::ParseExcel::Font::BEGIN@19 which was called: # once (9µs+2µs) by Spreadsheet::ParseExcel::BEGIN@33 at line 19
use strict;
# spent 10µs making 1 call to Spreadsheet::ParseExcel::Font::BEGIN@19 # spent 2µs making 1 call to strict::import
20240µs233µs
# spent 18µs (3+15) within Spreadsheet::ParseExcel::Font::BEGIN@20 which was called: # once (3µs+15µs) by Spreadsheet::ParseExcel::BEGIN@33 at line 20
use warnings;
# spent 18µs making 1 call to Spreadsheet::ParseExcel::Font::BEGIN@20 # spent 15µs making 1 call to warnings::import
21
221300nsour $VERSION = '0.66';
23
24
# spent 10µs within Spreadsheet::ParseExcel::Font::new which was called 3 times, avg 3µs/call: # 3 times (10µs+0s) by Spreadsheet::ParseXLSX::_parse_styles at line 872 of /home/micha/Projekt/spreadsheet-parsexlsx/lib/Spreadsheet/ParseXLSX.pm, avg 3µs/call
sub new {
2537µs my ( $class, %rhIni ) = @_;
263700ns my $self = \%rhIni;
27
2834µs bless $self, $class;
29}
30
3112µs1;
32
33__END__