← Index
NYTProf Performance Profile   « block view • line view • sub view »
For mongo_pain.pl
  Run on Fri Mar 25 17:00:29 2011
Reported on Fri Mar 25 17:07:06 2011

Filename/usr/local/share/perl/5.10.1/DateTime/TimeZone/UTC.pm
StatementsExecuted 14 statements in 312µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11112µs12µsDateTime::TimeZone::UTC::::BEGIN@2DateTime::TimeZone::UTC::BEGIN@2
11110µs22µsDateTime::TimeZone::UTC::::BEGIN@7DateTime::TimeZone::UTC::BEGIN@7
11110µs39µsDateTime::TimeZone::UTC::::BEGIN@10DateTime::TimeZone::UTC::BEGIN@10
11110µs13µsDateTime::TimeZone::UTC::::BEGIN@6DateTime::TimeZone::UTC::BEGIN@6
1117µs7µsDateTime::TimeZone::UTC::::BEGIN@9DateTime::TimeZone::UTC::BEGIN@9
0000s0sDateTime::TimeZone::UTC::::categoryDateTime::TimeZone::UTC::category
0000s0sDateTime::TimeZone::UTC::::is_dst_for_datetimeDateTime::TimeZone::UTC::is_dst_for_datetime
0000s0sDateTime::TimeZone::UTC::::is_utcDateTime::TimeZone::UTC::is_utc
0000s0sDateTime::TimeZone::UTC::::newDateTime::TimeZone::UTC::new
0000s0sDateTime::TimeZone::UTC::::offset_for_datetimeDateTime::TimeZone::UTC::offset_for_datetime
0000s0sDateTime::TimeZone::UTC::::offset_for_local_datetimeDateTime::TimeZone::UTC::offset_for_local_datetime
0000s0sDateTime::TimeZone::UTC::::short_name_for_datetimeDateTime::TimeZone::UTC::short_name_for_datetime
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package DateTime::TimeZone::UTC;
2
# spent 12µs within DateTime::TimeZone::UTC::BEGIN@2 which was called: # once (12µs+0s) by DateTime::TimeZone::OffsetOnly::BEGIN@12 at line 4
BEGIN {
317µs $DateTime::TimeZone::UTC::VERSION = '1.31';
4127µs112µs}
# spent 12µs making 1 call to DateTime::TimeZone::UTC::BEGIN@2
5
6332µs216µs
# spent 13µs (10+3) within DateTime::TimeZone::UTC::BEGIN@6 which was called: # once (10µs+3µs) by DateTime::TimeZone::OffsetOnly::BEGIN@12 at line 6
use strict;
# spent 13µs making 1 call to DateTime::TimeZone::UTC::BEGIN@6 # spent 3µs making 1 call to strict::import
7333µs234µs
# spent 22µs (10+12) within DateTime::TimeZone::UTC::BEGIN@7 which was called: # once (10µs+12µs) by DateTime::TimeZone::OffsetOnly::BEGIN@12 at line 7
use warnings;
# spent 22µs making 1 call to DateTime::TimeZone::UTC::BEGIN@7 # spent 12µs making 1 call to warnings::import
8
9334µs17µs
# spent 7µs within DateTime::TimeZone::UTC::BEGIN@9 which was called: # once (7µs+0s) by DateTime::TimeZone::OffsetOnly::BEGIN@12 at line 9
use DateTime::TimeZone;
# spent 7µs making 1 call to DateTime::TimeZone::UTC::BEGIN@9
103176µs239µs
# spent 39µs (10+29) within DateTime::TimeZone::UTC::BEGIN@10 which was called: # once (10µs+29µs) by DateTime::TimeZone::OffsetOnly::BEGIN@12 at line 10
use parent 'DateTime::TimeZone';
# spent 39µs making 1 call to DateTime::TimeZone::UTC::BEGIN@10 # spent 29µs making 1 call to parent::import, recursion: max depth 1, sum of overlapping time 29µs
11
12sub new {
13 my $class = shift;
14
15 return bless { name => 'UTC' }, $class;
16}
17
18sub is_dst_for_datetime {0}
19
20sub offset_for_datetime {0}
21sub offset_for_local_datetime {0}
22
23sub short_name_for_datetime {'UTC'}
24
25sub category {undef}
26
27sub is_utc {1}
28
2913µs1;
30
31# ABSTRACT: The UTC time zone
32
- -
35=pod
36
- -
76__END__