← Index
NYTProf Performance Profile   « line view »
For ../dm5dm6_ex3
  Run on Mon Feb 23 08:36:56 2015
Reported on Mon Feb 23 08:37:02 2015

Filename/home/sulbeck/local/lib/perl5/5.20.1/Date/Manip/Lang/index.pm
StatementsExecuted 10 statements in 110µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1117µs15µsDate::Manip::Lang::index::::BEGIN@24Date::Manip::Lang::index::BEGIN@24
1114µs7µsDate::Manip::Lang::index::::BEGIN@25Date::Manip::Lang::index::BEGIN@25
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Date::Manip::Lang::index;
2# Copyright (c) 2003-2015 Sullivan Beck. All rights reserved.
3# This program is free software; you can redistribute it and/or modify it
4# under the same terms as Perl itself.
5
6########################################################################
7########################################################################
8
9=pod
10
11=head1 NAME
12
13Date::Manip::Lang::index - An index of languages supported by Date::Manip
14
15=head1 SYNPOSIS
16
17This module is not intended to be used directly. Other Date::Manip
18modules will load it as needed.
19
20=cut
21
2214µsrequire 5.010000;
23
24214µs223µs
# spent 15µs (7+8) within Date::Manip::Lang::index::BEGIN@24 which was called: # once (7µs+8µs) by Date::Manip::Date::BEGIN@26 at line 24
use strict;
# spent 15µs making 1 call to Date::Manip::Lang::index::BEGIN@24 # spent 8µs making 1 call to strict::import
25278µs210µs
# spent 7µs (4+3) within Date::Manip::Lang::index::BEGIN@25 which was called: # once (4µs+3µs) by Date::Manip::Date::BEGIN@26 at line 25
use warnings;
# spent 7µs making 1 call to Date::Manip::Lang::index::BEGIN@25 # spent 3µs making 1 call to warnings::import
26
271100nsour($VERSION);
281200ns$VERSION='6.49';
29
301100nsour(%Lang);
31
32# A list of languages, and their module name
33
3419µs%Lang = qw(
35 catalan catalan
36 ca catalan
37
38 danish danish
39 da danish
40
41 dutch dutch
42 nederlands dutch
43 nl dutch
44
45 english english
46 en english
47 en_us english
48
49 finnish finnish
50 fi finnish
51 fi_fi finnish
52
53 french french
54 fr french
55 fr_fr french
56
57 german german
58 de german
59 de_de german
60
61 italian italian
62 it italian
63 it_it italian
64
65 norwegian norwegian
66 nb norwegian
67 nb_no norwegian
68
69 polish polish
70 pl polish
71 pl_pl polish
72
73 portuguese portugue
74 pt portugue
75 pt_pt portugue
76
77 romanian romanian
78 ro romanian
79 ro_ro romanian
80
81 russian russian
82 ru russian
83 ru_ru russian
84
85 spanish spanish
86 es spanish
87 es_es spanish
88
89 swedish swedish
90 sv swedish
91
92 turkish turkish
93 tr turkish
94 tr_tr turkish
95 );
96
9715µs1;