Filename | /usr/lib/perl5/site_perl/5.12.1/DateTime/TimeZone/UTC.pm |
Statements | Executed 14 statements in 1.11ms |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 107µs | 133µs | BEGIN@3 | DateTime::TimeZone::UTC::
1 | 1 | 1 | 53µs | 399µs | BEGIN@9 | DateTime::TimeZone::UTC::
1 | 1 | 1 | 48µs | 196µs | BEGIN@5 | DateTime::TimeZone::UTC::
1 | 1 | 1 | 31µs | 31µs | BEGIN@8 | DateTime::TimeZone::UTC::
0 | 0 | 0 | 0s | 0s | category | DateTime::TimeZone::UTC::
0 | 0 | 0 | 0s | 0s | is_dst_for_datetime | DateTime::TimeZone::UTC::
0 | 0 | 0 | 0s | 0s | is_utc | DateTime::TimeZone::UTC::
0 | 0 | 0 | 0s | 0s | new | DateTime::TimeZone::UTC::
0 | 0 | 0 | 0s | 0s | offset_for_datetime | DateTime::TimeZone::UTC::
0 | 0 | 0 | 0s | 0s | offset_for_local_datetime | DateTime::TimeZone::UTC::
0 | 0 | 0 | 0s | 0s | short_name_for_datetime | DateTime::TimeZone::UTC::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package DateTime::TimeZone::UTC; | ||||
2 | |||||
3 | 3 | 152µs | 2 | 158µs | # spent 133µs (107+26) within DateTime::TimeZone::UTC::BEGIN@3 which was called:
# once (107µs+26µs) by DateTime::TimeZone::OffsetOnly::BEGIN@11 at line 3 # spent 133µs making 1 call to DateTime::TimeZone::UTC::BEGIN@3
# spent 26µs making 1 call to strict::import |
4 | |||||
5 | 3 | 171µs | 2 | 343µs | # spent 196µs (48+147) within DateTime::TimeZone::UTC::BEGIN@5 which was called:
# once (48µs+147µs) by DateTime::TimeZone::OffsetOnly::BEGIN@11 at line 5 # spent 196µs making 1 call to DateTime::TimeZone::UTC::BEGIN@5
# spent 147µs making 1 call to vars::import |
6 | 1 | 4µs | $VERSION = 0.01; | ||
7 | |||||
8 | 3 | 139µs | 1 | 31µs | # spent 31µs within DateTime::TimeZone::UTC::BEGIN@8 which was called:
# once (31µs+0s) by DateTime::TimeZone::OffsetOnly::BEGIN@11 at line 8 # spent 31µs making 1 call to DateTime::TimeZone::UTC::BEGIN@8 |
9 | 3 | 631µs | 2 | 399µs | # spent 399µs (53+346) within DateTime::TimeZone::UTC::BEGIN@9 which was called:
# once (53µs+346µs) by DateTime::TimeZone::OffsetOnly::BEGIN@11 at line 9 # spent 399µs making 1 call to DateTime::TimeZone::UTC::BEGIN@9
# spent 346µs making 1 call to base::import, recursion: max depth 1, sum of overlapping time 346µs |
10 | |||||
11 | sub new { | ||||
12 | my $class = shift; | ||||
13 | |||||
14 | return bless { name => 'UTC' }, $class; | ||||
15 | } | ||||
16 | |||||
17 | sub is_dst_for_datetime {0} | ||||
18 | |||||
19 | sub offset_for_datetime {0} | ||||
20 | sub offset_for_local_datetime {0} | ||||
21 | |||||
22 | sub short_name_for_datetime {'UTC'} | ||||
23 | |||||
24 | sub category {undef} | ||||
25 | |||||
26 | sub is_utc {1} | ||||
27 | |||||
28 | 1 | 15µs | 1; | ||
29 | |||||
30 | __END__ |