← Index
NYTProf Performance Profile   « line view »
For svc/members/upsert
  Run on Tue Jan 13 11:50:22 2015
Reported on Tue Jan 13 12:09:48 2015

Filename/usr/share/perl5/Date/Manip/Lang/index.pm
StatementsExecuted 10 statements in 152µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11111µs22µsDate::Manip::Lang::index::::BEGIN@24Date::Manip::Lang::index::BEGIN@24
1117µs11µ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-2014 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
2217µsrequire 5.010000;
23
24222µs232µs
# spent 22µs (11+11) within Date::Manip::Lang::index::BEGIN@24 which was called: # once (11µs+11µs) by Date::Manip::Date::BEGIN@26 at line 24
use strict;
# spent 22µs making 1 call to Date::Manip::Lang::index::BEGIN@24 # spent 11µs making 1 call to strict::import
25299µs215µs
# spent 11µs (7+4) within Date::Manip::Lang::index::BEGIN@25 which was called: # once (7µs+4µs) by Date::Manip::Date::BEGIN@26 at line 25
use warnings;
# spent 11µs making 1 call to Date::Manip::Lang::index::BEGIN@25 # spent 4µs making 1 call to warnings::import
26
271100nsour($VERSION);
281300ns$VERSION='6.47';
29
301200nsour(%Lang);
31
32# A list of languages, and their module name
33
34116µ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
9716µs1;