-
Notifications
You must be signed in to change notification settings - Fork 0
/
TAGS
3044 lines (2788 loc) · 90.2 KB
/
TAGS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
pkgs/tcl2lua/tcl2lua.c,258
#define MYNAME 8,134
#define MYVERSION 9,166
static char* resultStr 11,204
static int rlen 12,235
#define TclNewLiteralStringObj(18,400
int setResultsObjCmd(21,530
int Tcl_AppInit(50,1170
static int runTCLprog(58,1397
int luaopen_tcl2lua(177,4241
pkgs/tcl2lua/Makefile,330
SONAME 1,0
SONAMEV 2,23
LIBRARY 3,47
SRC 4,74
OBJ 5,96
OS 6,137
LIB_OPTION 10,189
LIB_OPTION 12,257
override CFLAGS override CFLAGS14,321
all:all16,405
$(SONAMEV)$(SONAMEV18,444
$(SONAME)$(SONAME21,478
$(LIBRARY)$(LIBRARY24,511
install:install27,618
clean:clean33,788
neat:neat35,839
echo:echo38,860
pkgs/luafilesystem/lfs.h,220
#define chdir(9,188
#define chdir_error 10,210
#define chdir_error 12,278
#define chdir(16,336
#define getcwd(17,365
#define rmdir(18,402
#define LFS_EXPORT 19,431
#define fileno(21,488
#define LFS_EXPORT24,532
pkgs/luafilesystem/lfs.def,27
LIBRARY 1,0
VERSION 2,17
pkgs/luafilesystem/lfs.c,3492
#define _FILE_OFFSET_BITS 26,674
#define _LARGE_FILES 28,743
#define _WIN32_WINNT 34,821
#define _LARGEFILE64_SOURCE38,890
#define LFS_MAXPATHLEN 64,1315
#define LFS_MAXPATHLEN 76,1528
#define LFS_MAXPATHLEN 79,1626
#define LFS_VERSION 90,1758
#define LFS_LIBNAME 91,1786
#define luaL_optlong 96,1882
#define new_lib(102,1962
#define new_lib(104,2010
#define strerror(109,2165
#define DIR_METATABLE 112,2235
typedef struct dir_data 113,2279
int closed;114,2305
intptr_t hFile;116,2333
char pattern[pattern117,2351
DIR *dir;dir119,2387
} dir_data;121,2406
#define LOCK_METATABLE 123,2419
#define lfs_setmode(128,2495
#define STAT_STRUCT 129,2554
#define lfs_setmode(131,2595
#define STAT_STRUCT 132,2655
#define _S_IFLNK 136,2716
#define S_ISDIR(140,2763
#define S_ISREG(143,2825
#define S_ISLNK(146,2887
#define S_ISSOCK(149,2950
#define S_ISFIFO(152,3002
#define S_ISCHR(155,3053
#define S_ISBLK(158,3115
#define STAT_FUNC 161,3150
#define LSTAT_FUNC 162,3177
#define _O_TEXT 166,3220
#define _O_BINARY 167,3252
#define lfs_setmode(168,3284
#define STAT_STRUCT 169,3340
#define STAT_FUNC 170,3372
#define LSTAT_FUNC 171,3395
#define lfs_mkdir 176,3443
#define lfs_mkdir(178,3474
int lfs_win32_pusherror(184,3622
#define TICKS_PER_SECOND 195,3869
#define EPOCH_DIFFERENCE 196,3903
time_t windowsToUnixTime(197,3942
int lfs_win32_lstat(205,4149
static int pusherror(234,4940
static int pushresult(245,5182
static int change_dir(259,5421
static int get_dir(278,5883
static FILE *check_file(check_file318,6922
static int _file_lock(343,7500
typedef struct lfs_Lock 413,9294
HANDLE fd;414,9320
} lfs_Lock;415,9333
static int lfs_lock_dir(416,9345
static int lfs_unlock_dir(445,10113
typedef struct lfs_Lock 455,10357
char *ln;ln456,10383
} lfs_Lock;457,10395
static int lfs_lock_dir(458,10407
static int lfs_unlock_dir(486,11065
static int lfs_g_setmode(498,11286
static int lfs_f_setmode(520,11846
static int file_lock(532,12149
static int file_unlock(555,12712
static int make_link(577,13222
static int make_dir(619,14343
static int remove_dir(630,14535
static int dir_iter(640,14694
static int dir_close(688,15786
static int dir_iter_factory(708,16093
static int dir_create_meta(741,16803
static int lock_create_meta(768,17333
static const char *mode2string(mode2string789,17742
static int file_utime(820,18456
static void push_st_mode(838,18871
static void push_st_dev(844,19015
static void push_st_ino(850,19150
static void push_st_nlink(856,19303
static void push_st_uid(862,19444
static void push_st_gid(868,19582
static void push_st_rdev(874,19738
static void push_st_atime(880,19880
static void push_st_mtime(886,20035
static void push_st_ctime(892,20191
static void push_st_size(898,20335
static void push_st_blocks(905,20498
static void push_st_blksize(911,20658
static const char *perm2string(perm2string922,20872
static const char *perm2string(perm2string946,21312
static void push_st_perm(975,21880
typedef void (*_push_function)_push_function980,21994
struct _stat_members 982,22062
const char *name;name983,22085
_push_function push;984,22105
struct _stat_members members[members987,22132
static int _file_info_(1010,22675
static int file_info(1054,23820
static int push_link_target(1066,24133
static int link_info(1121,25508
static void set_info(1142,25987
static const struct luaL_Reg fslib[fslib1156,26482
LFS_EXPORT int luaopen_lfs(1173,26923
pkgs/luafilesystem/Makefile,359
T 1,0
SONAME 2,16
SONAMEV 3,36
LIBRARY 4,60
SRC 5,87
OBJ 6,106
OS 7,147
LIB_OPTION 10,198
LIB_OPTION 12,266
override CFLAGS override CFLAGS15,331
all:all18,380
$(SONAMEV)$(SONAMEV20,419
$(SONAME)$(SONAME23,453
$(LIBRARY)$(LIBRARY26,486
install:install29,573
$(LIB)$(LIB32,629
clean:clean35,655
neat:neat37,706
echo:echo40,727
pkgs/Makefile,39
install:install1,0
clean:clean4,36
pkgs/term/core.c,43
lua_isatty(7,90
luaopen_term_core(16,250
pkgs/term/Makefile,432
SONAME 1,0
SONAMEV 2,20
LIBRARY 3,44
SRC 4,71
OBJ 5,90
override CFLAGS override CFLAGS7,132
override CFLAGS override CFLAGS10,189
OS 13,239
LIB_OPTION=15,283
LIB_OPTION=17,349
all:all20,412
$(SONAMEV)$(SONAMEV22,451
$(SONAME)$(SONAME25,485
$(LIBRARY)$(LIBRARY28,518
install:install31,605
$(LIB)/term $(SHARE)/term:$(LIB)/term $(SHARE)/term35,732
clean:clean39,774
neat:neat41,825
echo:echo44,846
pkgs/term/term/colors.lua,273
function colormt:__tostring(30,1272
function colormt:__tostring(__tostring30,1272
function colormt:__concat(34,1329
function colormt:__concat(__concat34,1329
function colormt:__call(38,1412
function colormt:__call(__call38,1412
local function l_makecolor(44,1507
build.rtm,398
PKG_VERSION=3,35
save_old_version(25,754
make_symlink(37,1067
runMe(47,1373
BUILD_TYPE=78,1859
BUILD_TYPE=80,1906
myhost=89,2075
first=90,2099
SYSHOST=91,2119
SUDO=92,2140
MY_ARCH=95,2187
MAKE_EXTRA=107,2411
EXTRA=127,3129
SUDO=132,3242
base=142,3593
UPDATE_FN=146,3731
ADMIN_DIR=154,3966
BASE_DIR=161,4184
EXTRA_CMD=164,4228
MAKE=175,4407
.luacheckrc,290
std 1,0
files[files7,149
files[files8,213
files[files9,279
files[files10,344
files[files11,416
files[files13,614
files[files14,676
files[files15,767
files[files16,842
files[files17,905
files[files19,1133
files[files20,1204
files[files21,1276
files[files24,1579
config.ld,41
project 1,0
topics 8,194
format=9,288
tcl/tacc/apps/TERAGRID-BASIC,46
setenv TG_CLUSTER_HOME $env(28,1128
tcl/tacc/apps/gridshell/0.9.9,16
} else 30,1356
tcl/tacc/apps/mycluster/0.9.9,16
} else 30,1356
tcl/tacc/apps/gsissh/4.1,41
setenv GLOBUS_TCP_PORT_RANGE 37,1633
tcl/tacc/TACC,34
set MODULEPATH_ROOT env(49,1350
tcl/modulecmd.tcl,153
set g_debug 38,1355
set error_count 39,1401
set g_inhibit_interp 41,1459
set flag_default_mf 47,1846
set DEF_COLUMNS 70,2245
set ignoreDir(84,2711
Makefile.in,5053
srcdir 1,0
prefix 2,38
package 3,76
PATH_TO_SRC 5,149
PATH_TO_LUA 7,186
version 8,229
SITE_CONTROLLED_PREFIX 9,356
LMOD_ROOT 10,410
MY_PACKAGE 11,460
MY_PKG_PACKAGE 12,521
LMOD_CONFIG_DIR 13,582
LMOD_ROOT 16,667
MY_PACKAGE 17,709
MY_PKG_PACKAGE 18,748
CC 20,793
PATH_TO_SRC 21,827
path_to_src 22,870
TOOL_SRC 25,913
I18N_SRC 26,976
CONF_PY 28,1045
CONF_PY_PATTERN 29,1104
CURRENT_MK 30,1181
export IGNORE_DIRS export IGNORE_DIRS31,1239
REDIRECT 32,1348
LMOD_SETTARG_FULL_SUPPORT 33,1388
USE_DOT_FILES 34,1478
PREPEND_BLOCK 35,1568
COLORIZE 36,1658
SETTARG_CMD 37,1748
MODULEPATH_INIT 38,1789
LMOD_AVAIL_EXTENSIONS 39,1836
LMOD_HIDDEN_ITALIC 40,1884
LMOD_OVERRIDE_LANG 41,1929
LMOD_ALLOW_ROOT_USE 42,1979
LMOD_USE_DOT_CONFIG_ONLY 43,2030
SITE_MSG_FILE 44,2085
SITE_NAME 45,2130
SUPPORT_KSH 46,2171
SYSHOST 47,2214
DYNAMIC_SPIDER_CACHE 48,2253
SILENCE_SHELL_DEBUGGING 49,2305
SYS_LD_LIB_PATH 50,2360
SYS_LD_PRELOAD 51,2407
SYS_LUA_PATH 52,2453
SYS_LUA_CPATH 53,2497
CASE_INDEPENDENT_SORTING 54,2542
ZSH_SITE_FUNCTIONS_DIRS 55,2598
ZSH_FPATH 56,2653
SPIDER_CACHE_DESCRIPT_FN 57,2694
ANCIENT 58,2750
ALLOW_TCL_MFILES 59,2789
MPATH_AVAIL 60,2837
EXTENDED_DEFAULT 61,2880
TMOD_PATH_RULE 62,2928
TMOD_FIND_FIRST 63,2974
CACHED_LOADS 64,3021
EXACT_MATCH 65,3065
DUPLICATE_PATHS 66,3108
DISABLE_NAME_AUTOSWAP 67,3155
SHORT_TIME 68,3208
PIN_VERSIONS 69,3250
AUTO_SWAP 70,3294
SPIDER_CACHE_DIRS 71,3335
LEGACY_ORDERING 72,3384
EXPORT_MODULE 73,3431
BASENAME 74,3476
UPDATE_VERSION 75,3516
PS 76,3579
READLINK 77,3613
EXPR 78,3653
PATH_TO_HASHSUM 79,3689
PATH_TO_LUAC 80,3736
PATH_TO_PAGER 81,3780
PATH_TO_TCLSH 82,3825
PATH_TO_LS 83,3870
MODULEPATH_ROOT 84,3912
VERSION_SRC 85,3959
SETTARG_VSRC 86,4014
LUA_INCLUDE 87,4073
UPDATE_SYSTEM_FN 88,4116
GIT_PROG 89,4164
PKG 90,4207
PKGV 91,4254
LIB 92,4297
LIBEXEC 93,4344
SHELLS 94,4395
TOOLS 95,4445
I18N 96,4494
SETTARG 97,4548
INIT 98,4599
INIT_KSH_FUNCS 99,4647
FISH_TAB 100,4705
MESSAGEDIR 101,4773
LMOD_MF 102,4827
MAN_PAGES 103,4887
LMOD_MF_SOURCE 104,4945
SETTARG_SOURCE 105,5019
DATE_cmd 106,5107
UNAME_S 107,5168
MODE 108,5215
SED 111,5277
SED 113,5301
MODE_X 116,5326
MODE_R 117,5392
LUA_INCLUDE 121,5485
LUA_INCLUDE 123,5508
GIT_VERSION 126,5572
DIRLIST 130,5744
STANDALONE_PRGM 135,6159
STANDALONE_PRGM 143,6813
SHELL_INIT 144,6889
SHELL_INIT 147,7126
LMODRC_INIT 148,7202
ZSH_FUNCS 151,7277
ZSH_FUNCS 152,7318
FISH_FUNCS 154,7398
FISH_FUNCS 155,7442
KSH_FUNCS 157,7524
KSH_FUNCS 158,7589
STARTUP 160,7675
STARTUP 161,7754
MSGFNs 163,7828
MAIN_DIR 165,7897
CONTRIB_DIRS 168,8041
CONTRIB 181,8783
lua_code 182,8864
VDATE 184,9014
ComputeHashSum 186,9081
spiderCacheSupportCMD 187,9146
export L_PATH export L_PATH188,9230
export L_CPATH export L_CPATH189,9272
HAVE_LUA_TERM 191,9316
PKGS 193,9390
HAVE_LUAFILESYSTEM 195,9411
PKGS 197,9495
PKG_LFS 198,9517
FAST_TCL_INTERP 200,9540
TCL_INCLUDE 201,9587
TCL_LIBS 202,9623
PKGS 204,9686
PKG_T2L 205,9715
.PHONY:.PHONY208,9743
all:all210,9772
uninstall:uninstall213,9790
pre-install:pre-install217,9912
lmod_install_targets:lmod_install_targets219,9958
install:install223,10206
echo:echo238,11151
man_pages:man_pages241,11219
LUA_PATH=243,11330
$(DIRLIST)$(DIRLIST247,11563
__installMe:__installMe250,11605
generate_doc:generate_doc335,17946
shell_init:shell_init338,17969
lmodrc_init:lmodrc_init341,18083
messageFns:messageFns344,18201
i18n:i18n347,18317
startup:startup350,18423
other_tools:other_tools353,18533
spiderCacheSupport:spiderCacheSupport356,18674
src/computeHashSum:src/computeHashSum363,19072
tcl2lua:tcl2lua367,19217
$(MAKE) -C $(srcdir)/pkgs/tcl2lua LUA_INC=$(MAKE) -C $(srcdir)/pkgs/tcl2lua LUA_INC369,19296
LIB=371,19443
SHARE=372,19520
lfs:lfs376,19686
$(MAKE) -C $(srcdir)/pkgs/luafilesystem LUA_INC=$(MAKE) -C $(srcdir)/pkgs/luafilesystem LUA_INC378,19761
LIB=379,19838
MODE_R=380,19915
pkgs:pkgs383,20080
$(MAKE) -C $(srcdir)/pkgs LUA_INC=$(MAKE) -C $(srcdir)/pkgs LUA_INC385,20156
LIB=386,20233
MODE_R=387,20310
zsh_tab_funcs:zsh_tab_funcs391,20476
ksh_funcs:ksh_funcs406,21381
fish_tab_funcs:fish_tab_funcs409,21503
makefile:makefile412,21593
config.status:config.status415,21662
trailing_blanks_removed:trailing_blanks_removed418,21705
dist:dist421,21850
ml_dist:ml_dist441,23271
_ml_dist:_ml_dist444,23310
test:test453,23756
tags:tags456,23794
build_tags:build_tags459,23831
busted:busted523,27462
luachk:luachk530,27817
libexec:libexec534,27976
Inst_Tools:Inst_Tools537,28089
Inst_Shells:Inst_Shells540,28202
Inst_Settarg:Inst_Settarg543,28328
Inst_Lmod_MF:Inst_Lmod_MF547,28452
clean:clean550,28575
clobber:clobber556,28819
distclean:distclean558,28835
world_update:world_update561,28885
gittag:gittag587,30827
proj_mgmt/luaModuleAvailable,19
function main(1,0
proj_mgmt/updateVersion,101
function optionTbl(18,374
function main(22,422
function options(83,1766
function isFile(123,2787
proj_mgmt/DATE_cmd.sh,29
arg=4,36
my_cmd=10,151
proj_mgmt/ignore_dirs_converter,256
function string:trim(41,1850
function string:trim(trim41,1850
function string:split(53,2177
function string:split(split53,2177
local function l_getter(56,2276
local function l_splitter(60,2438
function wrapper(70,2677
function main(76,2872
proj_mgmt/getLFSVersion,51
function string.string3,34
function main(16,427
proj_mgmt/joinBase64Results,370
local function l_argsPack(64,2447
local function l_grab(83,3043
local function l_grabCsh(89,3200
local function l_grabFish(97,3346
function fixB64(109,3558
function sectionEnd(152,4676
function joinArrays(177,5331
function joinB64_fish(187,5503
function joinB64_bash(214,6134
function joinB64_csh(249,7045
function lmod_stack(276,7670
function main(306,8500
proj_mgmt/convert_mode.sh,103
KIND=4,36
uid=8,89
UID_MIN=12,178
xx=18,268
UID_MIN=20,370
umask=24,437
proj_mgmt/epoch.in.lua,54
function build_epoch(89,3206
function main(112,3795
ML_README.txt,184
module load baz goo;13,312
Unless you know what you are doing,79,1763
alias provided above on a system where Lmod is installed. Therefore,80,1833
README_lua_modulefiles.txt,19
whatis(52,1780
configure.ac,1178
FOLLOW_READLINK 23,294
AC_SUBST(46,691
AC_MSG_RESULT(615,24628
AC_MSG_RESULT(631,25142
FAST_TCL_INTERP=654,25907
OS=658,25972
DIR=660,26023
TCL_INCLUDE=665,26206
AC_PATH_PROG(672,26314
TCL_INCLUDE=677,26533
AC_MSG_ERROR(692,26980
mode=724,27932
AC_PATH_PROG(737,28217
AC_PATH_PROG(746,28385
AC_PATH_PROGS(755,28583
AC_PATH_PROGS(764,28783
AC_PATH_PROGS(773,29017
AC_PATH_PROG(782,29183
PATH_TO_HASHSUM=787,29427
AC_PATH_PROG(796,29652
AC_PATH_PROGS(804,29882
PATH_TO_LUA=823,30394
mismatch=829,30592
mismatch=832,30696
AC_PATH_PROG(848,31056
AC_PATH_PROG(859,31341
lmodV=870,31770
LUA_PATH=888,32269
missingModules=910,33167
AC_SUBST(927,33503
missingModules=935,33738
lfsV=942,33842
AC_SUBST(947,34026
missingModules=956,34248
AC_SUBST(963,34368
PATH_TO_LUA_DIR=974,34505
LUA_INCLUDE=979,34574
AC_PATH_PROG(983,34656
PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=986,34765
LUA_INCLUDE=988,34854
LUA_INCLUDE=998,35161
AC_SUBST(1019,35547
resultA=1025,35685
result=1039,35936
ZSH_FPATH=1063,36410
sh_src/print_os.sh.in,55
result=6,95
result=18,353
result=24,469
bugReport/bug_report_template.sh,24
export MODULEPATH=7,66
tools/inherits.lua,116
function inheritsFrom(38,1646
function new_class:create(49,2022
function new_class:create(create49,2022
tools/declare.lua,85
function declare(38,1669
function isDefined(46,1894
function isNotDefined(50,1960
tools/pairsByKeys.lua,29
function pairsByKeys 18,714
tools/serializeTbl.lua,180
local function l_quoteValue(68,2587
local function l_nsformat(80,2870
local function wrap_name(112,3886
local function outputTblHelper(129,4397
function serializeTbl(235,7261
tools/string_utils.lua,755
function string.escape(44,1901
function string.escape(escape44,1901
function string.split(59,2362
function string.split(split59,2362
local function l_getter(62,2467
local function l_splitter(66,2633
function string.trim(72,2763
function string.trim(trim72,2763
function string.caseIndependent(85,3141
function string.caseIndependent(caseIndependent85,3141
function string.multiEscaped(106,3808
function string.multiEscaped(multiEscaped106,3808
function string.doubleQuoteString(119,4234
function string.doubleQuoteString(doubleQuoteString119,4234
function string.atSymbolEscaped(132,4587
function string.atSymbolEscaped(atSymbolEscaped132,4587
function string.fillWords(144,5004
function string.fillWords(fillWords144,5004
tools/Cosmic.lua,654
function M.singleton(54,2164
function M.singleton(singleton54,2164
function M.init(68,2375
function M.init(init68,2375
function M.reportChangesFromDefault(121,3724
function M.reportChangesFromDefault(reportChangesFromDefault121,3724
function M.assign(142,4190
function M.assign(assign142,4190
function M.value(152,4371
function M.value(value152,4371
function M.default(157,4493
function M.default(default157,4493
function M.changed(161,4561
function M.changed(changed161,4561
function M.get_key(166,4681
function M.get_key(get_key166,4681
function M.set_key(170,4733
function M.set_key(set_key170,4733
function l_new(174,4791
tools/i18n/init.lua,1175
local function dotSplit(21,511
local function isPluralTable(30,688
local function isPresent(34,783
local function assertPresent(38,862
local function assertPresentOrPlural(45,1126
local function assertPresentOrTable(52,1443
local function assertFunctionOrNil(59,1749
local function defaultPluralizeFunction(66,2047
local function pluralize(70,2159
local function treatNode(78,2379
local function recursiveLoad(87,2595
local function localizedTranslate(101,2996
function i18n.set(115,3271
function i18n.set(set115,3271
function i18n.translate(132,3604
function i18n.translate(translate132,3604
function i18n.setLocale(147,3968
function i18n.setLocale(setLocale147,3968
function i18n.setFallbackLocale(154,4256
function i18n.setFallbackLocale(setFallbackLocale154,4256
function i18n.getFallbackLocale(159,4426
function i18n.getFallbackLocale(getFallbackLocale159,4426
function i18n.getLocale(163,4489
function i18n.getLocale(getLocale163,4489
function i18n.reset(167,4536
function i18n.reset(reset167,4536
function i18n.load(174,4665
function i18n.load(load174,4665
function i18n.loadFile(178,4722
function i18n.loadFile(loadFile178,4722
tools/i18n/interpolate.lua,195
local function interpolateValue(4,122
function (previous,(previous6,216
local function interpolateField(16,415
function (previous,(previous18,529
local function interpolate(27,727
tools/i18n/variants.lua,365
local function reverse(3,21
local function concat(9,159
function variants.ancestry(16,293
function variants.ancestry(ancestry16,293
function variants.isParent(26,548
function variants.isParent(isParent26,548
function variants.root(30,646
function variants.root(root30,646
function variants.fallbacks(34,714
function variants.fallbacks(fallbacks34,714
tools/i18n/plural.lua,444
local function assertPresentString(5,67
local function assertNumber(12,378
local function words(20,720
local function isInteger(29,888
local function between(33,949
local function inside(37,1033
function plural.get(261,6911
function plural.get(get261,6911
function plural.setDefaultFunction(270,7136
function plural.setDefaultFunction(setDefaultFunction270,7136
function plural.reset(274,7201
function plural.reset(reset274,7201
tools/haveTermSupport.lua,67
function haveTermSupport(44,1846
function connected2Term(53,1985
tools/fileOps.lua,549
local function l_argsPack(45,1815
function findInPath(54,2215
function find_exec_path(91,3194
function isDir(126,4069
function isFile(145,4569
function isExec(156,4880
function dirname(165,5185
function extname(180,5566
function removeExt(197,5953
function barefilename(214,6362
function splitFileName(231,6794
function pathJoin(251,7324
function mkdir_recursive(293,8358
function abspath 321,9001
function path_regularize(368,10167
local function l_walk_dir(435,11560
local function l_walker(456,12158
function dir_walk(464,12338
tools/base64.lua,242
local function lsh(17,307
local function rsh(22,393
local function bit(27,497
local function lor(32,594
function M.encode64(49,1545
function M.encode64(encode6449,1545
function M.decode64(76,3032
function M.decode64(decode6476,3032
tools/deepcopy.lua,24
function deepcopy(3,19
tools/Optiks.lua,1391
local function l_argsPack(33,1446
function Optiks_Error(42,1780
function Optiks_Exit(52,1983
local function l_prt(81,2671
local function l_prtend(85,2723
function M.new(92,2916
function M.new(new92,2916
function M.add_option(150,4297
function M.add_option(add_option150,4297
function M._getValue(186,5491
function M._getValue(_getValue186,5491
function M.store(212,6299
function M.store(store212,6299
function M.store_true(225,6810
function M.store_true(store_true225,6810
function M.append(238,7328
function M.append(append238,7328
function M.store_false(255,7918
function M.store_false(store_false255,7918
function M.count(268,8433
function M.count(count268,8433
function M.display_store(278,8733
function M.display_store(display_store278,8733
function M.display_flag(298,9249
function M.display_flag(display_flag298,9249
function M.display_count(311,9603
function M.display_count(display_count311,9603
function M.setDefaults(319,9870
function M.setDefaults(setDefaults319,9870
function M.parseOpt(334,10412
function M.parseOpt(parseOpt334,10412
function M.buildHelpMsg(347,10863
function M.buildHelpMsg(buildHelpMsg347,10863
function M.printHelp(370,11474
function M.printHelp(printHelp370,11474
function M.parseEnvArg(380,11759
function M.parseEnvArg(parseEnvArg380,11759
function M.parse(435,13111
function M.parse(parse435,13111
tools/replaceStr.lua,125
local function l_replaceStrValue(30,1315
function(prev,(prev32,1396
local function l_replaceStr(42,1640
tools/BeautifulTbl.lua,199
function M.new(89,3873
function M.new(new89,3873
function M._build_tbl(120,4857
function M._build_tbl(_build_tbl120,4857
function M.build_tbl(184,6533
function M.build_tbl(build_tbl184,6533
tools/Optiks_Option.lua,263
function M.optionNames(65,2309
function M.optionNames(optionNames65,2309
function M.bless(83,2750
function M.bless(bless83,2750
function M.setDefault(120,3792
function M.setDefault(setDefault120,3792
function M.new(135,4362
function M.new(new135,4362
tools/TermWidth.lua,64
local function l_askSystem(49,1883
function TermWidth(74,2477
tools/json.lua,592
function json.encode 67,2804
function json.encode encode67,2804
function json.decode(123,4445
function json.decode(decode123,4445
function null(153,5519
function decode_scanArray(168,6247
function decode_scanComment(195,7365
function decode_scanConstant(208,8088
function decode_scanNumber(228,8955
function decode_scanObject(249,9883
function decode_scanString(303,12185
function decode_scanWhitespace(356,14612
function json_private.encodeString(381,15348
function json_private.encodeString(encodeString381,15348
function isArray(394,16028
function isEncodable(421,17305
tools/strict.lua,30
local function l_what 18,496
tools/lmod_system_execute.lua,38
function lmod_system_execute(42,1751
tools/MF_Lua.lua,498
function MF_Lmod.setenv(54,2234
function MF_Lmod.setenv(setenv54,2234
function MF_Lmod.prepend_path(64,2548
function MF_Lmod.prepend_path(prepend_path64,2548
function MF_Lmod.append_path(74,2873
function MF_Lmod.append_path(append_path74,2873
function MF_Lmod.alias(78,3008
function MF_Lmod.alias(alias78,3008
function MF_Lmod.shell_function(82,3135
function MF_Lmod.shell_function(shell_function82,3135
function MF_Lmod.complete(86,3285
function MF_Lmod.complete(complete86,3285
tools/capture.lua,26
function capture(46,2022
tools/Banner.lua,291
local function l_new(51,1998
function M.singleton(64,2252
function M.singleton(singleton64,2252
function M.width(77,2561
function M.width(width77,2561
function M.border(85,2864
function M.border(border85,2864
function M.bannerStr(102,3442
function M.bannerStr(bannerStr102,3442
tools/ColumnTable.lua,850
local function l_sizeMe(66,2587
function M.new(84,3040
function M.new(new84,3040
function M._clearEmptyColumns2D(129,4170
function M._clearEmptyColumns2D(_clearEmptyColumns2D129,4170
function M._entry_width1(171,5127
function M._entry_width1(_entry_width1171,5127
function M._entry_width2(201,6022
function M._entry_width2(_entry_width2201,6022
function M._columnSum1(254,7699
function M._columnSum1(_columnSum1254,7699
function M._columnSum2(274,8360
function M._columnSum2(_columnSum2274,8360
function M._display1(315,9564
function M._display1(_display1315,9564
function M._display2(330,10062
function M._display2(_display2330,10062
function M._number_of_columns_rows(368,11077
function M._number_of_columns_rows(_number_of_columns_rows368,11077
function M.build_tbl(480,14661
function M.build_tbl(build_tbl480,14661
tools/MF_Base.lua,871
function M.name(56,2255
function M.name(name56,2255
function M.build(65,2508
function M.build(build65,2508
local function l_safe_eval(79,2859
function M.process(101,3539
function M.process(process101,3539
local function l_extractAliases(131,4557
function M.processAliases(147,5044
function M.processAliases(processAliases147,5044
local function l_extractFuncs(168,5760
function M.processFuncs(185,6263
function M.processFuncs(processFuncs185,6263
local function l_extractComplete(207,6976
function M.processComplete(231,7735
function M.processComplete(processComplete231,7735
function l_indexPath(248,8259
function l_splice(303,9275
function M.processVars(315,9436
function M.processVars(processVars315,9436
function M.complete(359,10768
function M.complete(complete359,10768
function M.header(362,10823
function M.header(header362,10823
tools/MF_TCL.lua,557
function MF_TCL.setenv(59,2444
function MF_TCL.setenv(setenv59,2444
function MF_TCL.prepend_path(68,2716
function MF_TCL.prepend_path(prepend_path68,2716
function MF_TCL.append_path(78,3000
function MF_TCL.append_path(append_path78,3000
function MF_TCL.alias(82,3094
function MF_TCL.alias(alias82,3094
function MF_TCL.shell_function(86,3180
function MF_TCL.shell_function(shell_function86,3180
function MF_TCL.complete(90,3279
function MF_TCL.complete(complete90,3279
function MF_TCL.header(95,3400
function MF_TCL.header(header95,3400
tools/Dbg.lua,1865
local function l_rPrint(104,3081
local function l_argsPack(121,3690
local function l_changeIndentLevel(127,3879
local function l_new(132,4007
function M.dbg(153,4545
function M.dbg(dbg153,4545
function M.set_prefix(164,4900
function M.set_prefix(set_prefix164,4900
function M.activateDebug(175,5319
function M.activateDebug(activateDebug175,5319
function M.indentLevel(212,6568
function M.indentLevel(indentLevel212,6568
function M.active(218,6723
function M.active(active218,6723
function M.currentLevel(224,6869
function M.currentLevel(currentLevel224,6869
function M.deactivateWarning(230,7033
function M.deactivateWarning(deactivateWarning230,7033
function M.activateWarning(236,7195
function M.activateWarning(activateWarning236,7195
function M._quiet(242,7355
function M._quiet(_quiet242,7355
local function l_extractVPL(247,7486
local function l_startExtractVPL(252,7568
function M._start(260,7783
function M._start(_start260,7783
function M._zeroIndent(276,8134
function M._zeroIndent(_zeroIndent276,8134
function M._indent(282,8289
function M._indent(_indent282,8289
function M._fini(288,8447
function M._fini(_fini288,8447
function M._warning(310,9069
function M._warning(_warning310,9069
function M._error(321,9367
function M._error(_error321,9367
function M.errorExit(334,9659
function M.errorExit(errorExit334,9659
function M.warningCalled(341,9846
function M.warningCalled(warningCalled341,9846
function M._print(349,10032
function M._print(_print349,10032
function M._textA(384,10905
function M._textA(_textA384,10905
function M._printA(405,11357
function M._printA(_printA405,11357
function M._print2D(424,11756
function M._print2D(_print2D424,11756
function M.flush(441,12153
function M.flush(flush441,12153
function M._printT(445,12198
function M._printT(_printT445,12198
Hermes.db,18
ProjectData 3,52