forked from psynaptic/vim-drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrupal6.tags
3148 lines (3148 loc) · 344 KB
/
drupal6.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
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR Darren Hiebert /[email protected]/
!_TAG_PROGRAM_NAME Exuberant Ctags //
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
!_TAG_PROGRAM_VERSION 5.8 //
BLOCK_CACHE_GLOBAL $DRUPAL_ROOT/modules/block/block.module /^define('BLOCK_CACHE_GLOBAL', 0x0008);$/;" d
BLOCK_CACHE_PER_PAGE $DRUPAL_ROOT/modules/block/block.module /^define('BLOCK_CACHE_PER_PAGE', 0x0004);$/;" d
BLOCK_CACHE_PER_ROLE $DRUPAL_ROOT/modules/block/block.module /^define('BLOCK_CACHE_PER_ROLE', 0x0001);$/;" d
BLOCK_CACHE_PER_USER $DRUPAL_ROOT/modules/block/block.module /^define('BLOCK_CACHE_PER_USER', 0x0002);$/;" d
BLOCK_NO_CACHE $DRUPAL_ROOT/modules/block/block.module /^define('BLOCK_NO_CACHE', -1);$/;" d
BLOCK_REGION_NONE $DRUPAL_ROOT/modules/block/block.module /^define('BLOCK_REGION_NONE', -1);$/;" d
CACHE_AGGRESSIVE $DRUPAL_ROOT/includes/bootstrap.inc /^define('CACHE_AGGRESSIVE', 2);$/;" d
CACHE_DISABLED $DRUPAL_ROOT/includes/bootstrap.inc /^define('CACHE_DISABLED', 0);$/;" d
CACHE_NORMAL $DRUPAL_ROOT/includes/bootstrap.inc /^define('CACHE_NORMAL', 1);$/;" d
CACHE_PERMANENT $DRUPAL_ROOT/includes/bootstrap.inc /^define('CACHE_PERMANENT', 0);$/;" d
CACHE_TEMPORARY $DRUPAL_ROOT/includes/bootstrap.inc /^define('CACHE_TEMPORARY', -1);$/;" d
COMMENT_ANONYMOUS_MAYNOT_CONTACT $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_ANONYMOUS_MAYNOT_CONTACT', 0);$/;" d
COMMENT_ANONYMOUS_MAY_CONTACT $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_ANONYMOUS_MAY_CONTACT', 1);$/;" d
COMMENT_ANONYMOUS_MUST_CONTACT $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_ANONYMOUS_MUST_CONTACT', 2);$/;" d
COMMENT_CONTROLS_ABOVE $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_CONTROLS_ABOVE', 0);$/;" d
COMMENT_CONTROLS_ABOVE_BELOW $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_CONTROLS_ABOVE_BELOW', 2);$/;" d
COMMENT_CONTROLS_BELOW $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_CONTROLS_BELOW', 1);$/;" d
COMMENT_CONTROLS_HIDDEN $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_CONTROLS_HIDDEN', 3);$/;" d
COMMENT_FORM_BELOW $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_FORM_BELOW', 1);$/;" d
COMMENT_FORM_SEPARATE_PAGE $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_FORM_SEPARATE_PAGE', 0);$/;" d
COMMENT_MODE_FLAT_COLLAPSED $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_MODE_FLAT_COLLAPSED', 1);$/;" d
COMMENT_MODE_FLAT_EXPANDED $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_MODE_FLAT_EXPANDED', 2);$/;" d
COMMENT_MODE_THREADED_COLLAPSED $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_MODE_THREADED_COLLAPSED', 3);$/;" d
COMMENT_MODE_THREADED_EXPANDED $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_MODE_THREADED_EXPANDED', 4);$/;" d
COMMENT_NODE_DISABLED $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_NODE_DISABLED', 0);$/;" d
COMMENT_NODE_READ_ONLY $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_NODE_READ_ONLY', 1);$/;" d
COMMENT_NODE_READ_WRITE $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_NODE_READ_WRITE', 2);$/;" d
COMMENT_NOT_PUBLISHED $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_NOT_PUBLISHED', 1);$/;" d
COMMENT_ORDER_NEWEST_FIRST $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_ORDER_NEWEST_FIRST', 1);$/;" d
COMMENT_ORDER_OLDEST_FIRST $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_ORDER_OLDEST_FIRST', 2);$/;" d
COMMENT_PREVIEW_OPTIONAL $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_PREVIEW_OPTIONAL', 0);$/;" d
COMMENT_PREVIEW_REQUIRED $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_PREVIEW_REQUIRED', 1);$/;" d
COMMENT_PUBLISHED $DRUPAL_ROOT/modules/comment/comment.module /^define('COMMENT_PUBLISHED', 0);$/;" d
DB_ERROR $DRUPAL_ROOT/includes/database.inc /^define('DB_ERROR', 'a515ac9c2796ca0e23adbe92c68fc9fc');$/;" d
DB_QUERY_REGEXP $DRUPAL_ROOT/includes/database.inc /^define('DB_QUERY_REGEXP', '\/(%d|%s|%%|%f|%b|%n)\/');$/;" d
DEFAULT_SYSLOG_FACILITY $DRUPAL_ROOT/modules/syslog/syslog.module /^ define('DEFAULT_SYSLOG_FACILITY', LOG_LOCAL0);$/;" d
DEFAULT_SYSLOG_FACILITY $DRUPAL_ROOT/modules/syslog/syslog.module /^ define('DEFAULT_SYSLOG_FACILITY', LOG_USER);$/;" d
DRUPAL_ANONYMOUS_RID $DRUPAL_ROOT/includes/bootstrap.inc /^define('DRUPAL_ANONYMOUS_RID', 1);$/;" d
DRUPAL_AUTHENTICATED_RID $DRUPAL_ROOT/includes/bootstrap.inc /^define('DRUPAL_AUTHENTICATED_RID', 2);$/;" d
DRUPAL_BOOTSTRAP_ACCESS $DRUPAL_ROOT/includes/bootstrap.inc /^define('DRUPAL_BOOTSTRAP_ACCESS', 3);$/;" d
DRUPAL_BOOTSTRAP_CONFIGURATION $DRUPAL_ROOT/includes/bootstrap.inc /^define('DRUPAL_BOOTSTRAP_CONFIGURATION', 0);$/;" d
DRUPAL_BOOTSTRAP_DATABASE $DRUPAL_ROOT/includes/bootstrap.inc /^define('DRUPAL_BOOTSTRAP_DATABASE', 2);$/;" d
DRUPAL_BOOTSTRAP_EARLY_PAGE_CACHE $DRUPAL_ROOT/includes/bootstrap.inc /^define('DRUPAL_BOOTSTRAP_EARLY_PAGE_CACHE', 1);$/;" d
DRUPAL_BOOTSTRAP_FULL $DRUPAL_ROOT/includes/bootstrap.inc /^define('DRUPAL_BOOTSTRAP_FULL', 8);$/;" d
DRUPAL_BOOTSTRAP_LANGUAGE $DRUPAL_ROOT/includes/bootstrap.inc /^define('DRUPAL_BOOTSTRAP_LANGUAGE', 6);$/;" d
DRUPAL_BOOTSTRAP_LATE_PAGE_CACHE $DRUPAL_ROOT/includes/bootstrap.inc /^define('DRUPAL_BOOTSTRAP_LATE_PAGE_CACHE', 5);$/;" d
DRUPAL_BOOTSTRAP_PATH $DRUPAL_ROOT/includes/bootstrap.inc /^define('DRUPAL_BOOTSTRAP_PATH', 7);$/;" d
DRUPAL_BOOTSTRAP_SESSION $DRUPAL_ROOT/includes/bootstrap.inc /^define('DRUPAL_BOOTSTRAP_SESSION', 4);$/;" d
DRUPAL_CORE_COMPATIBILITY $DRUPAL_ROOT/modules/system/system.module /^define('DRUPAL_CORE_COMPATIBILITY', '6.x');$/;" d
DRUPAL_MAXIMUM_TEMP_FILE_AGE $DRUPAL_ROOT/modules/system/system.module /^define('DRUPAL_MAXIMUM_TEMP_FILE_AGE', 21600);$/;" d
DRUPAL_MINIMUM_MYSQL $DRUPAL_ROOT/modules/system/system.module /^define('DRUPAL_MINIMUM_MYSQL', '4.1.1');$/;" d
DRUPAL_MINIMUM_PGSQL $DRUPAL_ROOT/modules/system/system.module /^define('DRUPAL_MINIMUM_PGSQL', '7.4');$/;" d
DRUPAL_MINIMUM_PHP $DRUPAL_ROOT/modules/system/system.module /^define('DRUPAL_MINIMUM_PHP', '4.3.5');$/;" d
DRUPAL_MINIMUM_PHP_MEMORY_LIMIT $DRUPAL_ROOT/modules/system/system.module /^define('DRUPAL_MINIMUM_PHP_MEMORY_LIMIT', '16M');$/;" d
Drupal.ACDB $DRUPAL_ROOT/misc/autocomplete.js /^};$/;" c
Drupal.ACDB.cancel $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.ACDB.prototype.cancel = function() {$/;" m
Drupal.ACDB.search $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.ACDB.prototype.search = function (searchString) {$/;" m
Drupal.ahah $DRUPAL_ROOT/misc/ahah.js /^};$/;" c
Drupal.ahah.beforeSubmit $DRUPAL_ROOT/misc/ahah.js /^Drupal.ahah.prototype.beforeSubmit = function (form_values, element, options) {$/;" m
Drupal.ahah.error $DRUPAL_ROOT/misc/ahah.js /^Drupal.ahah.prototype.error = function (response, uri) {$/;" m
Drupal.ahah.options.url $DRUPAL_ROOT/misc/ahah.js /^ var options = {$/;" p
Drupal.ahah.success $DRUPAL_ROOT/misc/ahah.js /^Drupal.ahah.prototype.success = function (response, status) {$/;" m
Drupal.attachBehaviors $DRUPAL_ROOT/misc/drupal.js /^Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;$/;" f
Drupal.autocompleteSubmit $DRUPAL_ROOT/misc/autocomplete.js /^};$/;" f
Drupal.behaviors.ahah $DRUPAL_ROOT/misc/ahah.js /^$/;" f
Drupal.behaviors.autocomplete $DRUPAL_ROOT/misc/autocomplete.js /^$/;" f
Drupal.behaviors.batch $DRUPAL_ROOT/misc/batch.js /^$/;" f
Drupal.behaviors.blockDrag $DRUPAL_ROOT/modules/block/block.js /^$/;" f
Drupal.behaviors.blockDrag.checkEmptyRegions $DRUPAL_ROOT/modules/block/block.js /^ var checkEmptyRegions = function(table, rowObject) {$/;" f
Drupal.behaviors.cleanURLsSettingsCheck $DRUPAL_ROOT/modules/system/system.js /^$/;" f
Drupal.behaviors.collapse $DRUPAL_ROOT/misc/collapse.js /^};$/;" f
Drupal.behaviors.color $DRUPAL_ROOT/modules/color/color.js /^$/;" f
Drupal.behaviors.color.callback $DRUPAL_ROOT/modules/color/color.js /^ function callback(input, color, propagate, colorscheme) {$/;" f
Drupal.behaviors.color.focus $DRUPAL_ROOT/modules/color/color.js /^ function focus() {$/;" f
Drupal.behaviors.color.preview $DRUPAL_ROOT/modules/color/color.js /^ function preview() {$/;" f
Drupal.behaviors.color.resetScheme $DRUPAL_ROOT/modules/color/color.js /^ function resetScheme() {$/;" f
Drupal.behaviors.color.shift_color $DRUPAL_ROOT/modules/color/color.js /^ function shift_color(given, ref1, ref2) {$/;" f
Drupal.behaviors.comment $DRUPAL_ROOT/modules/comment/comment.js /^$/;" f
Drupal.behaviors.copyFieldValue $DRUPAL_ROOT/modules/system/system.js /^};$/;" f
Drupal.behaviors.dateTime $DRUPAL_ROOT/modules/system/system.js /^};$/;" f
Drupal.behaviors.multiselectSelector $DRUPAL_ROOT/misc/form.js /^$/;" f
Drupal.behaviors.openid $DRUPAL_ROOT/modules/openid/openid.js /^$/;" f
Drupal.behaviors.password $DRUPAL_ROOT/modules/user/user.js /^$/;" f
Drupal.behaviors.profileDrag $DRUPAL_ROOT/modules/profile/profile.js /^$/;" f
Drupal.behaviors.tableDrag $DRUPAL_ROOT/misc/tabledrag.js /^$/;" f
Drupal.behaviors.tableHeader $DRUPAL_ROOT/misc/tableheader.js /^};$/;" f
Drupal.behaviors.tableHeader.resize $DRUPAL_ROOT/misc/tableheader.js /^ var resize = function () {$/;" f
Drupal.behaviors.tableHeader.tracker $DRUPAL_ROOT/misc/tableheader.js /^ function tracker(e) {$/;" f
Drupal.behaviors.tableSelect $DRUPAL_ROOT/misc/tableselect.js /^$/;" f
Drupal.behaviors.teaser $DRUPAL_ROOT/misc/teaser.js /^$/;" f
Drupal.behaviors.termDrag $DRUPAL_ROOT/modules/taxonomy/taxonomy.js /^$/;" f
Drupal.behaviors.textarea $DRUPAL_ROOT/misc/textarea.js /^$/;" f
Drupal.behaviors.userSettings $DRUPAL_ROOT/modules/user/user.js /^};$/;" f
Drupal.checkPlain $DRUPAL_ROOT/misc/drupal.js /^};$/;" f
Drupal.checkPlain.replace." $DRUPAL_ROOT/misc/drupal.js /^ var replace = { '&': '&', '"': '"', '<': '<', '>': '>' };$/;" p
Drupal.checkPlain.replace.& $DRUPAL_ROOT/misc/drupal.js /^ var replace = { '&': '&', '"': '"', '<': '<', '>': '>' };$/;" p
Drupal.checkPlain.replace.< $DRUPAL_ROOT/misc/drupal.js /^ var replace = { '&': '&', '"': '"', '<': '<', '>': '>' };$/;" p
Drupal.checkPlain.replace.> $DRUPAL_ROOT/misc/drupal.js /^ var replace = { '&': '&', '"': '"', '<': '<', '>': '>' };$/;" p
Drupal.cleanURLsInstallCheck $DRUPAL_ROOT/modules/system/system.js /^};$/;" f
Drupal.collapseScrollIntoView $DRUPAL_ROOT/misc/collapse.js /^};$/;" f
Drupal.comment.getCookie $DRUPAL_ROOT/modules/comment/comment.js /^Drupal.comment = {};$/;" f
Drupal.evaluatePasswordStrength $DRUPAL_ROOT/modules/user/user.js /^};$/;" f
Drupal.formatPlural $DRUPAL_ROOT/misc/drupal.js /^};$/;" f
Drupal.freezeHeight $DRUPAL_ROOT/misc/drupal.js /^};$/;" f
Drupal.jsAC $DRUPAL_ROOT/misc/autocomplete.js /^};$/;" c
Drupal.jsAC.found $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.jsAC.prototype.found = function (matches) {$/;" m
Drupal.jsAC.hidePopup $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.jsAC.prototype.hidePopup = function (keycode) {$/;" m
Drupal.jsAC.highlight $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.jsAC.prototype.highlight = function (node) {$/;" m
Drupal.jsAC.onkeydown $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.jsAC.prototype.onkeydown = function (input, e) {$/;" m
Drupal.jsAC.onkeyup $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.jsAC.prototype.onkeyup = function (input, e) {$/;" m
Drupal.jsAC.populatePopup $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.jsAC.prototype.populatePopup = function () {$/;" m
Drupal.jsAC.select $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.jsAC.prototype.select = function (node) {$/;" m
Drupal.jsAC.selectDown $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.jsAC.prototype.selectDown = function () {$/;" m
Drupal.jsAC.selectUp $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.jsAC.prototype.selectUp = function () {$/;" m
Drupal.jsAC.setStatus $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.jsAC.prototype.setStatus = function (status) {$/;" m
Drupal.jsAC.unhighlight $DRUPAL_ROOT/misc/autocomplete.js /^Drupal.jsAC.prototype.unhighlight = function (node) {$/;" m
Drupal.parseJson $DRUPAL_ROOT/misc/drupal.js /^};$/;" f
Drupal.progressBar $DRUPAL_ROOT/misc/progress.js /^$/;" c
Drupal.progressBar.displayError $DRUPAL_ROOT/misc/progress.js /^Drupal.progressBar.prototype.displayError = function (string) {$/;" m
Drupal.progressBar.sendPing $DRUPAL_ROOT/misc/progress.js /^Drupal.progressBar.prototype.sendPing = function () {$/;" m
Drupal.progressBar.setProgress $DRUPAL_ROOT/misc/progress.js /^Drupal.progressBar.prototype.setProgress = function (percentage, message) {$/;" m
Drupal.progressBar.startMonitoring $DRUPAL_ROOT/misc/progress.js /^Drupal.progressBar.prototype.startMonitoring = function (uri, delay) {$/;" m
Drupal.progressBar.stopMonitoring $DRUPAL_ROOT/misc/progress.js /^Drupal.progressBar.prototype.stopMonitoring = function () {$/;" m
Drupal.setDefaultTimezone $DRUPAL_ROOT/modules/user/user.js /^};$/;" f
Drupal.t $DRUPAL_ROOT/misc/drupal.js /^};$/;" f
Drupal.tableDrag $DRUPAL_ROOT/misc/tabledrag.js /^};$/;" c
Drupal.tableDrag.checkScroll $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.checkScroll = function(cursorY) {$/;" m
Drupal.tableDrag.copyDragClasses $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.copyDragClasses = function(sourceRow, targetRow, group) {$/;" m
Drupal.tableDrag.dragRow $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.dragRow = function(event, self) {$/;" m
Drupal.tableDrag.dropRow $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.dropRow = function(event, self) {$/;" m
Drupal.tableDrag.findDropTargetRow $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.findDropTargetRow = function(x, y) {$/;" m
Drupal.tableDrag.getMouseOffset $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.getMouseOffset = function(target, event) {$/;" m
Drupal.tableDrag.getPosition $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.getPosition = function(element){$/;" m
Drupal.tableDrag.hideColumns $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.hideColumns = function(){$/;" m
Drupal.tableDrag.makeDraggable $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.makeDraggable = function(item) {$/;" m
Drupal.tableDrag.mouseCoords $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.mouseCoords = function(event){$/;" m
Drupal.tableDrag.onDrag $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.onDrag = function() {$/;" m
Drupal.tableDrag.onDrop $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.onDrop = function() {$/;" m
Drupal.tableDrag.restripeTable $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.restripeTable = function() {$/;" m
Drupal.tableDrag.row $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.row = function(tableRow, method, indentEnabled, maxDepth, addClasses) {$/;" m
Drupal.tableDrag.row $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.row.prototype.findChildren = function(addClasses) {$/;" m
Drupal.tableDrag.row $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.row.prototype.findSiblings = function(rowSettings) {$/;" m
Drupal.tableDrag.row $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.row.prototype.indent = function(indentDiff) {$/;" m
Drupal.tableDrag.row $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.row.prototype.isValidSwap = function(row) {$/;" m
Drupal.tableDrag.row $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.row.prototype.markChanged = function() {$/;" m
Drupal.tableDrag.row $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.row.prototype.onIndent = function() {$/;" m
Drupal.tableDrag.row $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.row.prototype.onSwap = function(swappedRow) {$/;" m
Drupal.tableDrag.row $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.row.prototype.swap = function(position, row) {$/;" m
Drupal.tableDrag.row $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.row.prototype.validIndentInterval = function (prevRow, nextRow) {$/;" m
Drupal.tableDrag.rowSettings $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.rowSettings = function(group, row) {$/;" m
Drupal.tableDrag.scrollSettings.amount $DRUPAL_ROOT/misc/tabledrag.js /^ this.scrollSettings = { amount: 4, interval: 50, trigger: 70 };$/;" p
Drupal.tableDrag.scrollSettings.interval $DRUPAL_ROOT/misc/tabledrag.js /^ this.scrollSettings = { amount: 4, interval: 50, trigger: 70 };$/;" p
Drupal.tableDrag.scrollSettings.trigger $DRUPAL_ROOT/misc/tabledrag.js /^ this.scrollSettings = { amount: 4, interval: 50, trigger: 70 };$/;" p
Drupal.tableDrag.setScroll $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.setScroll = function(scrollAmount) {$/;" m
Drupal.tableDrag.updateField $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.updateField = function(changedRow, group) {$/;" m
Drupal.tableDrag.updateFields $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.tableDrag.prototype.updateFields = function(changedRow) {$/;" m
Drupal.tableHeaderDoScroll $DRUPAL_ROOT/misc/tableheader.js /^$/;" f
Drupal.tableHeaderOnScroll $DRUPAL_ROOT/misc/tableheader.js /^ }$/;" f
Drupal.tableSelect $DRUPAL_ROOT/misc/tableselect.js /^};$/;" f
Drupal.tableSelect.strings.selectAll $DRUPAL_ROOT/misc/tableselect.js /^ var strings = { 'selectAll': Drupal.t('Select all rows in this table'), 'selectNone': Drupal.t('Deselect all rows in this table') };$/;" p
Drupal.tableSelect.updateSelectAll $DRUPAL_ROOT/misc/tableselect.js /^ var updateSelectAll = function(state) {$/;" f
Drupal.tableSelectRange $DRUPAL_ROOT/misc/tableselect.js /^};$/;" f
Drupal.theme $DRUPAL_ROOT/misc/drupal.js /^};$/;" f
Drupal.theme $DRUPAL_ROOT/misc/tabledrag.js /^};$/;" c
Drupal.theme.tableDragChangedMarker $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.theme.prototype.tableDragChangedMarker = function () {$/;" m
Drupal.theme.tableDragChangedWarning $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.theme.prototype.tableDragChangedWarning = function () {$/;" m
Drupal.theme.tableDragChangedWarning $DRUPAL_ROOT/modules/block/block.js /^ };$/;" f
Drupal.theme.tableDragIndentation $DRUPAL_ROOT/misc/tabledrag.js /^Drupal.theme.prototype.tableDragIndentation = function () {$/;" m
Drupal.toggleFieldset $DRUPAL_ROOT/misc/collapse.js /^$/;" f
Drupal.unfreezeHeight $DRUPAL_ROOT/misc/drupal.js /^};$/;" f
EMAIL_MAX_LENGTH $DRUPAL_ROOT/modules/user/user.module /^define('EMAIL_MAX_LENGTH', 64);$/;" d
E_DEPRECATED $DRUPAL_ROOT/includes/common.inc /^ define('E_DEPRECATED', 8192);$/;" d
FILE_CREATE_DIRECTORY $DRUPAL_ROOT/includes/file.inc /^define('FILE_CREATE_DIRECTORY', 1);$/;" d
FILE_DOWNLOADS_PRIVATE $DRUPAL_ROOT/includes/file.inc /^define('FILE_DOWNLOADS_PRIVATE', 2);$/;" d
FILE_DOWNLOADS_PUBLIC $DRUPAL_ROOT/includes/file.inc /^define('FILE_DOWNLOADS_PUBLIC', 1);$/;" d
FILE_EXECUTABLE $DRUPAL_ROOT/includes/install.inc /^define('FILE_EXECUTABLE', 8);$/;" d
FILE_EXIST $DRUPAL_ROOT/includes/install.inc /^define('FILE_EXIST', 1);$/;" d
FILE_EXISTS_ERROR $DRUPAL_ROOT/includes/file.inc /^define('FILE_EXISTS_ERROR', 2);$/;" d
FILE_EXISTS_RENAME $DRUPAL_ROOT/includes/file.inc /^define('FILE_EXISTS_RENAME', 0);$/;" d
FILE_EXISTS_REPLACE $DRUPAL_ROOT/includes/file.inc /^define('FILE_EXISTS_REPLACE', 1);$/;" d
FILE_MODIFY_PERMISSIONS $DRUPAL_ROOT/includes/file.inc /^define('FILE_MODIFY_PERMISSIONS', 2);$/;" d
FILE_NOT_EXECUTABLE $DRUPAL_ROOT/includes/install.inc /^define('FILE_NOT_EXECUTABLE', 128);$/;" d
FILE_NOT_EXIST $DRUPAL_ROOT/includes/install.inc /^define('FILE_NOT_EXIST', 16);$/;" d
FILE_NOT_READABLE $DRUPAL_ROOT/includes/install.inc /^define('FILE_NOT_READABLE', 32);$/;" d
FILE_NOT_WRITABLE $DRUPAL_ROOT/includes/install.inc /^define('FILE_NOT_WRITABLE', 64);$/;" d
FILE_READABLE $DRUPAL_ROOT/includes/install.inc /^define('FILE_READABLE', 2);$/;" d
FILE_STATUS_PERMANENT $DRUPAL_ROOT/includes/file.inc /^define('FILE_STATUS_PERMANENT', 1);$/;" d
FILE_STATUS_TEMPORARY $DRUPAL_ROOT/includes/file.inc /^define('FILE_STATUS_TEMPORARY', 0);$/;" d
FILE_WRITABLE $DRUPAL_ROOT/includes/install.inc /^define('FILE_WRITABLE', 4);$/;" d
FILTER_FORMAT_DEFAULT $DRUPAL_ROOT/modules/filter/filter.module /^define('FILTER_FORMAT_DEFAULT', 0);$/;" d
FILTER_HTML_ESCAPE $DRUPAL_ROOT/modules/filter/filter.module /^define('FILTER_HTML_ESCAPE', 2);$/;" d
FILTER_HTML_STRIP $DRUPAL_ROOT/modules/filter/filter.module /^define('FILTER_HTML_STRIP', 1);$/;" d
LANGUAGE_LTR $DRUPAL_ROOT/includes/bootstrap.inc /^define('LANGUAGE_LTR', 0);$/;" d
LANGUAGE_NEGOTIATION_DOMAIN $DRUPAL_ROOT/includes/bootstrap.inc /^define('LANGUAGE_NEGOTIATION_DOMAIN', 3);$/;" d
LANGUAGE_NEGOTIATION_NONE $DRUPAL_ROOT/includes/bootstrap.inc /^define('LANGUAGE_NEGOTIATION_NONE', 0);$/;" d
LANGUAGE_NEGOTIATION_PATH $DRUPAL_ROOT/includes/bootstrap.inc /^define('LANGUAGE_NEGOTIATION_PATH', 2);$/;" d
LANGUAGE_NEGOTIATION_PATH_DEFAULT $DRUPAL_ROOT/includes/bootstrap.inc /^define('LANGUAGE_NEGOTIATION_PATH_DEFAULT', 1);$/;" d
LANGUAGE_RTL $DRUPAL_ROOT/includes/bootstrap.inc /^define('LANGUAGE_RTL', 1);$/;" d
LOCALE_IMPORT_KEEP $DRUPAL_ROOT/includes/locale.inc /^define('LOCALE_IMPORT_KEEP', 1);$/;" d
LOCALE_IMPORT_OVERWRITE $DRUPAL_ROOT/includes/locale.inc /^define('LOCALE_IMPORT_OVERWRITE', 0);$/;" d
LOCALE_JS_STRING $DRUPAL_ROOT/includes/locale.inc /^define('LOCALE_JS_STRING', '(?:(?:\\'(?:\\\\\\\\\\'|[^\\'])*\\'|"(?:\\\\\\\\"|[^"])*")(?:\\s*\\+\\s*)?)+');$/;" d
MAINTENANCE_MODE $DRUPAL_ROOT/install.php /^define('MAINTENANCE_MODE', 'install');$/;" d
MAINTENANCE_MODE $DRUPAL_ROOT/update.php /^define('MAINTENANCE_MODE', 'update');$/;" d
MARK_NEW $DRUPAL_ROOT/includes/theme.inc /^define('MARK_NEW', 1);$/;" d
MARK_READ $DRUPAL_ROOT/includes/theme.inc /^define('MARK_READ', 0);$/;" d
MARK_UPDATED $DRUPAL_ROOT/includes/theme.inc /^define('MARK_UPDATED', 2);$/;" d
MENU_ACCESS_DENIED $DRUPAL_ROOT/includes/menu.inc /^define('MENU_ACCESS_DENIED', 3);$/;" d
MENU_CALLBACK $DRUPAL_ROOT/includes/menu.inc /^define('MENU_CALLBACK', MENU_VISIBLE_IN_BREADCRUMB);$/;" d
MENU_CREATED_BY_ADMIN $DRUPAL_ROOT/includes/menu.inc /^define('MENU_CREATED_BY_ADMIN', 0x0040);$/;" d
MENU_DEFAULT_LOCAL_TASK $DRUPAL_ROOT/includes/menu.inc /^define('MENU_DEFAULT_LOCAL_TASK', MENU_IS_LOCAL_TASK | MENU_LINKS_TO_PARENT);$/;" d
MENU_FOUND $DRUPAL_ROOT/includes/menu.inc /^define('MENU_FOUND', 1);$/;" d
MENU_IS_LOCAL_TASK $DRUPAL_ROOT/includes/menu.inc /^define('MENU_IS_LOCAL_TASK', 0x0080);$/;" d
MENU_IS_ROOT $DRUPAL_ROOT/includes/menu.inc /^define('MENU_IS_ROOT', 0x0001);$/;" d
MENU_LINKS_TO_PARENT $DRUPAL_ROOT/includes/menu.inc /^define('MENU_LINKS_TO_PARENT', 0x0008);$/;" d
MENU_LOCAL_TASK $DRUPAL_ROOT/includes/menu.inc /^define('MENU_LOCAL_TASK', MENU_IS_LOCAL_TASK);$/;" d
MENU_MAX_DEPTH $DRUPAL_ROOT/includes/menu.inc /^define('MENU_MAX_DEPTH', 9);$/;" d
MENU_MAX_MENU_NAME_LENGTH_UI $DRUPAL_ROOT/modules/menu/menu.module /^define('MENU_MAX_MENU_NAME_LENGTH_UI', 27);$/;" d
MENU_MAX_PARTS $DRUPAL_ROOT/includes/menu.inc /^define('MENU_MAX_PARTS', 7);$/;" d
MENU_MODIFIED_BY_ADMIN $DRUPAL_ROOT/includes/menu.inc /^define('MENU_MODIFIED_BY_ADMIN', 0x0020);$/;" d
MENU_NORMAL_ITEM $DRUPAL_ROOT/includes/menu.inc /^define('MENU_NORMAL_ITEM', MENU_VISIBLE_IN_TREE | MENU_VISIBLE_IN_BREADCRUMB);$/;" d
MENU_NOT_FOUND $DRUPAL_ROOT/includes/menu.inc /^define('MENU_NOT_FOUND', 2);$/;" d
MENU_SITE_OFFLINE $DRUPAL_ROOT/includes/menu.inc /^define('MENU_SITE_OFFLINE', 4);$/;" d
MENU_SUGGESTED_ITEM $DRUPAL_ROOT/includes/menu.inc /^define('MENU_SUGGESTED_ITEM', MENU_VISIBLE_IN_BREADCRUMB | 0x0010);$/;" d
MENU_VISIBLE_IN_BREADCRUMB $DRUPAL_ROOT/includes/menu.inc /^define('MENU_VISIBLE_IN_BREADCRUMB', 0x0004);$/;" d
MENU_VISIBLE_IN_TREE $DRUPAL_ROOT/includes/menu.inc /^define('MENU_VISIBLE_IN_TREE', 0x0002);$/;" d
NODE_BUILD_NORMAL $DRUPAL_ROOT/modules/node/node.module /^define('NODE_BUILD_NORMAL', 0);$/;" d
NODE_BUILD_PREVIEW $DRUPAL_ROOT/modules/node/node.module /^define('NODE_BUILD_PREVIEW', 1);$/;" d
NODE_BUILD_PRINT $DRUPAL_ROOT/modules/node/node.module /^define('NODE_BUILD_PRINT', 5);$/;" d
NODE_BUILD_RSS $DRUPAL_ROOT/modules/node/node.module /^define('NODE_BUILD_RSS', 4);$/;" d
NODE_BUILD_SEARCH_INDEX $DRUPAL_ROOT/modules/node/node.module /^define('NODE_BUILD_SEARCH_INDEX', 2);$/;" d
NODE_BUILD_SEARCH_RESULT $DRUPAL_ROOT/modules/node/node.module /^define('NODE_BUILD_SEARCH_RESULT', 3);$/;" d
NODE_NEW_LIMIT $DRUPAL_ROOT/modules/node/node.module /^define('NODE_NEW_LIMIT', time() - 30 * 24 * 60 * 60);$/;" d
OPENID_DH_DEFAULT_GEN $DRUPAL_ROOT/modules/openid/openid.inc /^define('OPENID_DH_DEFAULT_GEN', '2');$/;" d
OPENID_DH_DEFAULT_MOD $DRUPAL_ROOT/modules/openid/openid.inc /^define('OPENID_DH_DEFAULT_MOD', '155172898181473697471232257763715539915724801'.$/;" d
OPENID_NS_1_0 $DRUPAL_ROOT/modules/openid/openid.inc /^define('OPENID_NS_1_0', 'http:\/\/openid.net\/signon\/1.0');$/;" d
OPENID_NS_1_1 $DRUPAL_ROOT/modules/openid/openid.inc /^define('OPENID_NS_1_1', 'http:\/\/openid.net\/signon\/1.1');$/;" d
OPENID_NS_2_0 $DRUPAL_ROOT/modules/openid/openid.inc /^define('OPENID_NS_2_0', 'http:\/\/specs.openid.net\/auth\/2.0');$/;" d
OPENID_RAND_SOURCE $DRUPAL_ROOT/modules/openid/openid.inc /^define('OPENID_RAND_SOURCE', '\/dev\/urandom');$/;" d
OPENID_SHA1_BLOCKSIZE $DRUPAL_ROOT/modules/openid/openid.inc /^define('OPENID_SHA1_BLOCKSIZE', 64);$/;" d
PREG_CLASS_CJK $DRUPAL_ROOT/modules/search/search.module /^define('PREG_CLASS_CJK', '\\x{3041}-\\x{30ff}\\x{31f0}-\\x{31ff}\\x{3400}-\\x{4db5}'.$/;" d
PREG_CLASS_NUMBERS $DRUPAL_ROOT/modules/search/search.module /^define('PREG_CLASS_NUMBERS',$/;" d
PREG_CLASS_PUNCTUATION $DRUPAL_ROOT/modules/search/search.module /^define('PREG_CLASS_PUNCTUATION',$/;" d
PREG_CLASS_SEARCH_EXCLUDE $DRUPAL_ROOT/modules/search/search.module /^define('PREG_CLASS_SEARCH_EXCLUDE',$/;" d
PROFILE_HIDDEN $DRUPAL_ROOT/modules/profile/profile.module /^define('PROFILE_HIDDEN', 4);$/;" d
PROFILE_PRIVATE $DRUPAL_ROOT/modules/profile/profile.module /^define('PROFILE_PRIVATE', 1);$/;" d
PROFILE_PUBLIC $DRUPAL_ROOT/modules/profile/profile.module /^define('PROFILE_PUBLIC', 2);$/;" d
PROFILE_PUBLIC_LISTINGS $DRUPAL_ROOT/modules/profile/profile.module /^define('PROFILE_PUBLIC_LISTINGS', 3);$/;" d
REQUIREMENT_ERROR $DRUPAL_ROOT/includes/install.inc /^define('REQUIREMENT_ERROR', 2);$/;" d
REQUIREMENT_INFO $DRUPAL_ROOT/includes/install.inc /^define('REQUIREMENT_INFO', -1);$/;" d
REQUIREMENT_OK $DRUPAL_ROOT/includes/install.inc /^define('REQUIREMENT_OK', 0);$/;" d
REQUIREMENT_WARNING $DRUPAL_ROOT/includes/install.inc /^define('REQUIREMENT_WARNING', 1);$/;" d
SAVED_DELETED $DRUPAL_ROOT/includes/common.inc /^define('SAVED_DELETED', 3);$/;" d
SAVED_NEW $DRUPAL_ROOT/includes/common.inc /^define('SAVED_NEW', 1);$/;" d
SAVED_UPDATED $DRUPAL_ROOT/includes/common.inc /^define('SAVED_UPDATED', 2);$/;" d
SCHEMA_INSTALLED $DRUPAL_ROOT/includes/install.inc /^define('SCHEMA_INSTALLED', 0);$/;" d
SCHEMA_UNINSTALLED $DRUPAL_ROOT/includes/install.inc /^define('SCHEMA_UNINSTALLED', -1);$/;" d
TRANSLATION_ENABLED $DRUPAL_ROOT/modules/translation/translation.module /^define('TRANSLATION_ENABLED', 2);$/;" d
Time $DRUPAL_ROOT/includes/common.inc /^ * class Time {$/;" c
UNICODE_ERROR $DRUPAL_ROOT/includes/unicode.inc /^define('UNICODE_ERROR', -1);$/;" d
UNICODE_MULTIBYTE $DRUPAL_ROOT/includes/unicode.inc /^define('UNICODE_MULTIBYTE', 1);$/;" d
UNICODE_SINGLEBYTE $DRUPAL_ROOT/includes/unicode.inc /^define('UNICODE_SINGLEBYTE', 0);$/;" d
UPDATE_CURRENT $DRUPAL_ROOT/modules/update/update.module /^define('UPDATE_CURRENT', 5);$/;" d
UPDATE_DEFAULT_URL $DRUPAL_ROOT/modules/update/update.module /^define('UPDATE_DEFAULT_URL', 'http:\/\/updates.drupal.org\/release-history');$/;" d
UPDATE_MAX_FETCH_ATTEMPTS $DRUPAL_ROOT/modules/update/update.module /^define('UPDATE_MAX_FETCH_ATTEMPTS', 2);$/;" d
UPDATE_NOT_CHECKED $DRUPAL_ROOT/modules/update/update.module /^define('UPDATE_NOT_CHECKED', -1);$/;" d
UPDATE_NOT_CURRENT $DRUPAL_ROOT/modules/update/update.module /^define('UPDATE_NOT_CURRENT', 4);$/;" d
UPDATE_NOT_FETCHED $DRUPAL_ROOT/modules/update/update.module /^define('UPDATE_NOT_FETCHED', -3);$/;" d
UPDATE_NOT_SECURE $DRUPAL_ROOT/modules/update/update.module /^define('UPDATE_NOT_SECURE', 1);$/;" d
UPDATE_NOT_SUPPORTED $DRUPAL_ROOT/modules/update/update.module /^define('UPDATE_NOT_SUPPORTED', 3);$/;" d
UPDATE_REVOKED $DRUPAL_ROOT/modules/update/update.module /^define('UPDATE_REVOKED', 2);$/;" d
UPDATE_UNKNOWN $DRUPAL_ROOT/modules/update/update.module /^define('UPDATE_UNKNOWN', -2);$/;" d
USERNAME_MAX_LENGTH $DRUPAL_ROOT/modules/user/user.module /^define('USERNAME_MAX_LENGTH', 60);$/;" d
VERSION $DRUPAL_ROOT/modules/system/system.module /^define('VERSION', '6.22');$/;" d
WATCHDOG_ALERT $DRUPAL_ROOT/includes/bootstrap.inc /^define('WATCHDOG_ALERT', 1);$/;" d
WATCHDOG_CRITICAL $DRUPAL_ROOT/includes/bootstrap.inc /^define('WATCHDOG_CRITICAL', 2);$/;" d
WATCHDOG_DEBUG $DRUPAL_ROOT/includes/bootstrap.inc /^define('WATCHDOG_DEBUG', 7);$/;" d
WATCHDOG_EMERG $DRUPAL_ROOT/includes/bootstrap.inc /^define('WATCHDOG_EMERG', 0);$/;" d
WATCHDOG_ERROR $DRUPAL_ROOT/includes/bootstrap.inc /^define('WATCHDOG_ERROR', 3);$/;" d
WATCHDOG_INFO $DRUPAL_ROOT/includes/bootstrap.inc /^define('WATCHDOG_INFO', 6);$/;" d
WATCHDOG_NOTICE $DRUPAL_ROOT/includes/bootstrap.inc /^define('WATCHDOG_NOTICE', 5);$/;" d
WATCHDOG_WARNING $DRUPAL_ROOT/includes/bootstrap.inc /^define('WATCHDOG_WARNING', 4);$/;" d
_aggregator_category_title $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function _aggregator_category_title($category) {$/;" f
_aggregator_has_categories $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function _aggregator_has_categories() {$/;" f
_aggregator_items $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function _aggregator_items($count) {$/;" f
_aggregator_page_list $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc /^function _aggregator_page_list($items, $op, $feed_source = '') {$/;" f
_batch_current_set $DRUPAL_ROOT/includes/batch.inc /^function &_batch_current_set() {$/;" f
_batch_do $DRUPAL_ROOT/includes/batch.inc /^function _batch_do() {$/;" f
_batch_finished $DRUPAL_ROOT/includes/batch.inc /^function _batch_finished() {$/;" f
_batch_next_set $DRUPAL_ROOT/includes/batch.inc /^function _batch_next_set() {$/;" f
_batch_page $DRUPAL_ROOT/includes/batch.inc /^function _batch_page() {$/;" f
_batch_process $DRUPAL_ROOT/includes/batch.inc /^function _batch_process() {$/;" f
_batch_progress_page_js $DRUPAL_ROOT/includes/batch.inc /^function _batch_progress_page_js() {$/;" f
_batch_progress_page_nojs $DRUPAL_ROOT/includes/batch.inc /^function _batch_progress_page_nojs() {$/;" f
_batch_shutdown $DRUPAL_ROOT/includes/batch.inc /^function _batch_shutdown() {$/;" f
_batch_start $DRUPAL_ROOT/includes/batch.inc /^function _batch_start() {$/;" f
_block_compare $DRUPAL_ROOT/modules/block/block.admin.inc /^function _block_compare($a, $b) {$/;" f
_block_get_cache_id $DRUPAL_ROOT/modules/block/block.module /^function _block_get_cache_id($block) {$/;" f
_block_rehash $DRUPAL_ROOT/modules/block/block.module /^function _block_rehash($theme = NULL) {$/;" f
_block_themes_access $DRUPAL_ROOT/modules/block/block.module /^function _block_themes_access($theme) {$/;" f
_blog_post_exists $DRUPAL_ROOT/modules/blog/blog.module /^function _blog_post_exists($account) {$/;" f
_blogapi_get_node_types $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function _blogapi_get_node_types() {$/;" f
_blogapi_get_post $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function _blogapi_get_post($node, $bodies = TRUE) {$/;" f
_blogapi_mt_extra $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function _blogapi_mt_extra(&$node, $struct) {$/;" f
_blogapi_space_used $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function _blogapi_space_used($uid) {$/;" f
_blogapi_validate_blogid $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function _blogapi_validate_blogid($blogid) {$/;" f
_book_add_form_elements $DRUPAL_ROOT/modules/book/book.module /^function _book_add_form_elements(&$form, $node) {$/;" f
_book_admin_table $DRUPAL_ROOT/modules/book/book.admin.inc /^function _book_admin_table($node, &$form) {$/;" f
_book_admin_table_tree $DRUPAL_ROOT/modules/book/book.admin.inc /^function _book_admin_table_tree($tree, &$form) {$/;" f
_book_flatten_menu $DRUPAL_ROOT/modules/book/book.module /^function _book_flatten_menu($tree, &$flat) {$/;" f
_book_install_type_create $DRUPAL_ROOT/modules/book/book.install /^function _book_install_type_create() {$/;" f
_book_link_defaults $DRUPAL_ROOT/modules/book/book.module /^function _book_link_defaults($nid) {$/;" f
_book_outline_access $DRUPAL_ROOT/modules/book/book.module /^function _book_outline_access($node) {$/;" f
_book_outline_remove_access $DRUPAL_ROOT/modules/book/book.module /^function _book_outline_remove_access($node) {$/;" f
_book_parent_depth_limit $DRUPAL_ROOT/modules/book/book.module /^function _book_parent_depth_limit($book_link) {$/;" f
_book_parent_select $DRUPAL_ROOT/modules/book/book.module /^function _book_parent_select($book_link) {$/;" f
_book_toc_recurse $DRUPAL_ROOT/modules/book/book.module /^function _book_toc_recurse($tree, $indent, &$toc, $exclude, $depth_limit) {$/;" f
_book_update_outline $DRUPAL_ROOT/modules/book/book.module /^function _book_update_outline(&$node) {$/;" f
_color_blend $DRUPAL_ROOT/modules/color/color.module /^function _color_blend($img, $hex1, $hex2, $alpha) {$/;" f
_color_gd $DRUPAL_ROOT/modules/color/color.module /^function _color_gd($img, $hex) {$/;" f
_color_hsl2rgb $DRUPAL_ROOT/modules/color/color.module /^function _color_hsl2rgb($hsl) {$/;" f
_color_hue2rgb $DRUPAL_ROOT/modules/color/color.module /^function _color_hue2rgb($m1, $m2, $h) {$/;" f
_color_pack $DRUPAL_ROOT/modules/color/color.module /^function _color_pack($rgb, $normalize = false) {$/;" f
_color_page_alter $DRUPAL_ROOT/modules/color/color.module /^function _color_page_alter(&$vars) {$/;" f
_color_render_images $DRUPAL_ROOT/modules/color/color.module /^function _color_render_images($theme, &$info, &$paths, $palette) {$/;" f
_color_rewrite_stylesheet $DRUPAL_ROOT/modules/color/color.module /^function _color_rewrite_stylesheet($theme, &$info, &$paths, $palette, $style) {$/;" f
_color_rgb2hsl $DRUPAL_ROOT/modules/color/color.module /^function _color_rgb2hsl($rgb) {$/;" f
_color_save_stylesheet $DRUPAL_ROOT/modules/color/color.module /^function _color_save_stylesheet($file, $style, &$paths) {$/;" f
_color_shift $DRUPAL_ROOT/modules/color/color.module /^function _color_shift($given, $ref1, $ref2, $target) {$/;" f
_color_unpack $DRUPAL_ROOT/modules/color/color.module /^function _color_unpack($hex, $normalize = false) {$/;" f
_comment_delete_thread $DRUPAL_ROOT/modules/comment/comment.admin.inc /^function _comment_delete_thread($comment) {$/;" f
_comment_form_submit $DRUPAL_ROOT/modules/comment/comment.module /^function _comment_form_submit(&$comment_values) {$/;" f
_comment_get_display_setting $DRUPAL_ROOT/modules/comment/comment.module /^function _comment_get_display_setting($setting, $node) {$/;" f
_comment_get_modes $DRUPAL_ROOT/modules/comment/comment.module /^function _comment_get_modes() {$/;" f
_comment_get_orders $DRUPAL_ROOT/modules/comment/comment.module /^function _comment_get_orders() {$/;" f
_comment_load $DRUPAL_ROOT/modules/comment/comment.module /^function _comment_load($cid) {$/;" f
_comment_per_page $DRUPAL_ROOT/modules/comment/comment.module /^function _comment_per_page() {$/;" f
_comment_update_node_statistics $DRUPAL_ROOT/modules/comment/comment.module /^function _comment_update_node_statistics($nid) {$/;" f
_contact_user_tab_access $DRUPAL_ROOT/modules/contact/contact.module /^function _contact_user_tab_access($account) {$/;" f
_db_create_field_sql $DRUPAL_ROOT/includes/database.mysql-common.inc /^function _db_create_field_sql($name, $spec) {$/;" f
_db_create_field_sql $DRUPAL_ROOT/includes/database.pgsql.inc /^function _db_create_field_sql($name, $spec) {$/;" f
_db_create_index_sql $DRUPAL_ROOT/includes/database.pgsql.inc /^function _db_create_index_sql($table, $name, $fields) {$/;" f
_db_create_key_sql $DRUPAL_ROOT/includes/database.mysql-common.inc /^function _db_create_key_sql($fields) {$/;" f
_db_create_key_sql $DRUPAL_ROOT/includes/database.pgsql.inc /^function _db_create_key_sql($fields) {$/;" f
_db_create_keys $DRUPAL_ROOT/includes/database.pgsql.inc /^function _db_create_keys(&$ret, $table, $new_keys) {$/;" f
_db_create_keys_sql $DRUPAL_ROOT/includes/database.mysql-common.inc /^function _db_create_keys_sql($spec) {$/;" f
_db_error_page $DRUPAL_ROOT/includes/database.inc /^function _db_error_page($error = '') {$/;" f
_db_process_field $DRUPAL_ROOT/includes/database.mysql-common.inc /^function _db_process_field($field) {$/;" f
_db_process_field $DRUPAL_ROOT/includes/database.pgsql.inc /^function _db_process_field($field) {$/;" f
_db_query $DRUPAL_ROOT/includes/database.mysql.inc /^function _db_query($query, $debug = 0) {$/;" f
_db_query $DRUPAL_ROOT/includes/database.mysqli.inc /^function _db_query($query, $debug = 0) {$/;" f
_db_query $DRUPAL_ROOT/includes/database.pgsql.inc /^function _db_query($query, $debug = 0) {$/;" f
_db_query_callback $DRUPAL_ROOT/includes/database.inc /^function _db_query_callback($match, $init = FALSE) {$/;" f
_db_rewrite_sql $DRUPAL_ROOT/includes/database.inc /^function _db_rewrite_sql($query = '', $primary_table = 'n', $primary_field = 'nid', $args = array()) {$/;" f
_dblog_format_message $DRUPAL_ROOT/modules/dblog/dblog.admin.inc /^function _dblog_format_message($dblog) {$/;" f
_dblog_get_message_types $DRUPAL_ROOT/modules/dblog/dblog.module /^function _dblog_get_message_types() {$/;" f
_decode_entities $DRUPAL_ROOT/includes/unicode.inc /^function _decode_entities($prefix, $codepoint, $original, &$html_entities, &$exclude) {$/;" f
_drupal_bootstrap $DRUPAL_ROOT/includes/bootstrap.inc /^function _drupal_bootstrap($phase) {$/;" f
_drupal_bootstrap_full $DRUPAL_ROOT/includes/common.inc /^function _drupal_bootstrap_full() {$/;" f
_drupal_build_css_path $DRUPAL_ROOT/includes/common.inc /^function _drupal_build_css_path($matches, $base = NULL) {$/;" f
_drupal_flush_css_js $DRUPAL_ROOT/includes/common.inc /^function _drupal_flush_css_js() {$/;" f
_drupal_html_to_mail_urls $DRUPAL_ROOT/includes/mail.inc /^function _drupal_html_to_mail_urls($match = NULL, $reset = FALSE) {$/;" f
_drupal_html_to_text_clean $DRUPAL_ROOT/includes/mail.inc /^function _drupal_html_to_text_clean($indent) {$/;" f
_drupal_html_to_text_pad $DRUPAL_ROOT/includes/mail.inc /^function _drupal_html_to_text_pad($text, $pad, $prefix = '') {$/;" f
_drupal_initialize_schema $DRUPAL_ROOT/includes/common.inc /^function _drupal_initialize_schema($module, &$schema) {$/;" f
_drupal_install_module $DRUPAL_ROOT/includes/install.inc /^function _drupal_install_module($module) {$/;" f
_drupal_load_stylesheet $DRUPAL_ROOT/includes/common.inc /^function _drupal_load_stylesheet($matches) {$/;" f
_drupal_maintenance_theme $DRUPAL_ROOT/includes/theme.maintenance.inc /^function _drupal_maintenance_theme() {$/;" f
_drupal_wrap_mail_line $DRUPAL_ROOT/includes/mail.inc /^function _drupal_wrap_mail_line(&$line, $key, $values) {$/;" f
_element_info $DRUPAL_ROOT/includes/form.inc /^function _element_info($type, $refresh = NULL) {$/;" f
_filter_autop $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_autop($text) {$/;" f
_filter_html $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_html($text, $format) {$/;" f
_filter_html_settings $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_html_settings($format) {$/;" f
_filter_htmlcorrector $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_htmlcorrector($text) {$/;" f
_filter_list_cmp $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_list_cmp($a, $b) {$/;" f
_filter_tips $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_tips($format, $long = FALSE) {$/;" f
_filter_url $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_url($text, $format) {$/;" f
_filter_url_parse_full_links $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_url_parse_full_links($match) {$/;" f
_filter_url_parse_partial_links $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_url_parse_partial_links($match) {$/;" f
_filter_url_settings $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_url_settings($format) {$/;" f
_filter_url_trim $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_url_trim($text, $length = NULL) {$/;" f
_filter_xss_attributes $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_xss_attributes($attr) {$/;" f
_filter_xss_split $DRUPAL_ROOT/modules/filter/filter.module /^function _filter_xss_split($m, $store = FALSE) {$/;" f
_fix_gpc_magic $DRUPAL_ROOT/includes/common.inc /^function _fix_gpc_magic(&$item) {$/;" f
_fix_gpc_magic_files $DRUPAL_ROOT/includes/common.inc /^function _fix_gpc_magic_files(&$item, $key) {$/;" f
_form_builder_handle_input_element $DRUPAL_ROOT/includes/form.inc /^function _form_builder_handle_input_element($form_id, &$form, &$form_state, $complete_form) {$/;" f
_form_builder_ie_cleanup $DRUPAL_ROOT/includes/form.inc /^function _form_builder_ie_cleanup($form, &$form_state) {$/;" f
_form_button_was_clicked $DRUPAL_ROOT/includes/form.inc /^function _form_button_was_clicked($form) {$/;" f
_form_set_class $DRUPAL_ROOT/includes/form.inc /^function _form_set_class(&$element, $class = array()) {$/;" f
_form_set_value $DRUPAL_ROOT/includes/form.inc /^function _form_set_value(&$form_values, $form_item, $parents, $value) {$/;" f
_form_validate $DRUPAL_ROOT/includes/form.inc /^function _form_validate($elements, &$form_state, $form_id = NULL) {$/;" f
_forum_get_topic_order $DRUPAL_ROOT/modules/forum/forum.module /^function _forum_get_topic_order($sortby) {$/;" f
_forum_get_topic_order_sql $DRUPAL_ROOT/modules/forum/forum.module /^function _forum_get_topic_order_sql($sortby) {$/;" f
_forum_new $DRUPAL_ROOT/modules/forum/forum.module /^function _forum_new($tid) {$/;" f
_forum_parent_select $DRUPAL_ROOT/modules/forum/forum.admin.inc /^function _forum_parent_select($tid, $title, $child_type) {$/;" f
_forum_topics_unread $DRUPAL_ROOT/modules/forum/forum.module /^function _forum_topics_unread($term, $uid) {$/;" f
_forum_user_last_visit $DRUPAL_ROOT/modules/forum/forum.module /^function _forum_user_last_visit($nid) {$/;" f
_init_theme $DRUPAL_ROOT/includes/theme.inc /^function _init_theme($theme, $base_theme = array(), $registry_callback = '_theme_load_registry') {$/;" f
_install_locale_initial_batch_finished $DRUPAL_ROOT/install.php /^function _install_locale_initial_batch_finished($success, $results) {$/;" f
_install_locale_remaining_batch_finished $DRUPAL_ROOT/install.php /^function _install_locale_remaining_batch_finished($success, $results) {$/;" f
_install_module_batch $DRUPAL_ROOT/install.php /^function _install_module_batch($module, $module_name, &$context) {$/;" f
_install_profile_batch_finished $DRUPAL_ROOT/install.php /^function _install_profile_batch_finished($success, $results) {$/;" f
_install_settings_form_validate $DRUPAL_ROOT/install.php /^function _install_settings_form_validate($db_prefix, $db_type, $db_user, $db_pass, $db_host, $db_port, $db_path, $settings_file, &$form_state, $form = NULL) {$/;" f
_locale_batch_build $DRUPAL_ROOT/includes/locale.inc /^function _locale_batch_build($files, $finished = NULL, $components = array()) {$/;" f
_locale_batch_import $DRUPAL_ROOT/includes/locale.inc /^function _locale_batch_import($filepath, &$context) {$/;" f
_locale_batch_language_finished $DRUPAL_ROOT/includes/locale.inc /^function _locale_batch_language_finished($success, $results) {$/;" f
_locale_batch_system_finished $DRUPAL_ROOT/includes/locale.inc /^function _locale_batch_system_finished($success, $results) {$/;" f
_locale_export_get_strings $DRUPAL_ROOT/includes/locale.inc /^function _locale_export_get_strings($language = NULL, $group = 'default') {$/;" f
_locale_export_po $DRUPAL_ROOT/includes/locale.inc /^function _locale_export_po($language = NULL, $output = NULL) {$/;" f
_locale_export_po_generate $DRUPAL_ROOT/includes/locale.inc /^function _locale_export_po_generate($language = NULL, $strings = array(), $header = NULL) {$/;" f
_locale_export_remove_plural $DRUPAL_ROOT/includes/locale.inc /^function _locale_export_remove_plural($entry) {$/;" f
_locale_export_string $DRUPAL_ROOT/includes/locale.inc /^function _locale_export_string($str) {$/;" f
_locale_export_wrap $DRUPAL_ROOT/includes/locale.inc /^function _locale_export_wrap($str, $len) {$/;" f
_locale_get_predefined_list $DRUPAL_ROOT/includes/locale.inc /^function _locale_get_predefined_list() {$/;" f
_locale_import_append_plural $DRUPAL_ROOT/includes/locale.inc /^function _locale_import_append_plural($entry, $key) {$/;" f
_locale_import_message $DRUPAL_ROOT/includes/locale.inc /^function _locale_import_message($message, $file, $lineno = NULL) {$/;" f
_locale_import_one_string $DRUPAL_ROOT/includes/locale.inc /^function _locale_import_one_string($op, $value = NULL, $mode = NULL, $lang = NULL, $file = NULL, $group = 'default') {$/;" f
_locale_import_one_string_db $DRUPAL_ROOT/includes/locale.inc /^function _locale_import_one_string_db(&$report, $langcode, $source, $translation, $textgroup, $location, $mode, $plid = NULL, $plural = NULL) {$/;" f
_locale_import_parse_arithmetic $DRUPAL_ROOT/includes/locale.inc /^function _locale_import_parse_arithmetic($string) {$/;" f
_locale_import_parse_header $DRUPAL_ROOT/includes/locale.inc /^function _locale_import_parse_header($header) {$/;" f
_locale_import_parse_plural_forms $DRUPAL_ROOT/includes/locale.inc /^function _locale_import_parse_plural_forms($pluralforms, $filename) {$/;" f
_locale_import_parse_quoted $DRUPAL_ROOT/includes/locale.inc /^function _locale_import_parse_quoted($string) {$/;" f
_locale_import_po $DRUPAL_ROOT/includes/locale.inc /^function _locale_import_po($file, $langcode, $mode, $group = NULL) {$/;" f
_locale_import_read_po $DRUPAL_ROOT/includes/locale.inc /^function _locale_import_read_po($op, $file, $mode = NULL, $lang = NULL, $group = 'default') {$/;" f
_locale_import_shorten_comments $DRUPAL_ROOT/includes/locale.inc /^function _locale_import_shorten_comments($comment) {$/;" f
_locale_import_tokenize_formula $DRUPAL_ROOT/includes/locale.inc /^function _locale_import_tokenize_formula($formula) {$/;" f
_locale_invalidate_js $DRUPAL_ROOT/includes/locale.inc /^function _locale_invalidate_js($langcode = NULL) {$/;" f
_locale_languages_common_controls $DRUPAL_ROOT/includes/locale.inc /^function _locale_languages_common_controls(&$form, $language = NULL) {$/;" f
_locale_parse_js_file $DRUPAL_ROOT/includes/locale.inc /^function _locale_parse_js_file($filepath) {$/;" f
_locale_prepare_predefined_list $DRUPAL_ROOT/includes/locale.inc /^function _locale_prepare_predefined_list() {$/;" f
_locale_rebuild_js $DRUPAL_ROOT/includes/locale.inc /^function _locale_rebuild_js($langcode = NULL) {$/;" f
_locale_translate_language_list $DRUPAL_ROOT/includes/locale.inc /^function _locale_translate_language_list($translation, $limit_language) {$/;" f
_locale_translate_seek $DRUPAL_ROOT/includes/locale.inc /^function _locale_translate_seek() {$/;" f
_locale_translate_seek_query $DRUPAL_ROOT/includes/locale.inc /^function _locale_translate_seek_query() {$/;" f
_lock_id $DRUPAL_ROOT/includes/lock.inc /^function _lock_id() {$/;" f
_menu_check_access $DRUPAL_ROOT/includes/menu.inc /^function _menu_check_access(&$item, $map) {$/;" f
_menu_clear_page_cache $DRUPAL_ROOT/includes/menu.inc /^function _menu_clear_page_cache() {$/;" f
_menu_delete_item $DRUPAL_ROOT/includes/menu.inc /^function _menu_delete_item($item, $force = FALSE) {$/;" f
_menu_find_router_path $DRUPAL_ROOT/includes/menu.inc /^function _menu_find_router_path($link_path) {$/;" f
_menu_item_localize $DRUPAL_ROOT/includes/menu.inc /^function _menu_item_localize(&$item, $map, $link_translate = FALSE) {$/;" f
_menu_link_build $DRUPAL_ROOT/includes/menu.inc /^function _menu_link_build($item) {$/;" f
_menu_link_map_translate $DRUPAL_ROOT/includes/menu.inc /^function _menu_link_map_translate(&$map, $to_arg_functions) {$/;" f
_menu_link_move_children $DRUPAL_ROOT/includes/menu.inc /^function _menu_link_move_children($item, $existing_item) {$/;" f
_menu_link_parents_set $DRUPAL_ROOT/includes/menu.inc /^function _menu_link_parents_set(&$item, $parent) {$/;" f
_menu_link_translate $DRUPAL_ROOT/includes/menu.inc /^function _menu_link_translate(&$item) {$/;" f
_menu_load_objects $DRUPAL_ROOT/includes/menu.inc /^function _menu_load_objects(&$item, &$map) {$/;" f
_menu_navigation_links_rebuild $DRUPAL_ROOT/includes/menu.inc /^function _menu_navigation_links_rebuild($menu) {$/;" f
_menu_overview_tree_form $DRUPAL_ROOT/modules/menu/menu.admin.inc /^function _menu_overview_tree_form($tree) {$/;" f
_menu_parent_depth_limit $DRUPAL_ROOT/modules/menu/menu.module /^function _menu_parent_depth_limit($item) {$/;" f
_menu_parents_recurse $DRUPAL_ROOT/modules/menu/menu.module /^function _menu_parents_recurse($tree, $menu_name, $indent, &$options, $exclude, $depth_limit) {$/;" f
_menu_router_build $DRUPAL_ROOT/includes/menu.inc /^function _menu_router_build($callbacks) {$/;" f
_menu_router_cache $DRUPAL_ROOT/includes/menu.inc /^function _menu_router_cache($new_menu = NULL) {$/;" f
_menu_set_expanded_menus $DRUPAL_ROOT/includes/menu.inc /^function _menu_set_expanded_menus() {$/;" f
_menu_site_is_offline $DRUPAL_ROOT/includes/menu.inc /^function _menu_site_is_offline() {$/;" f
_menu_translate $DRUPAL_ROOT/includes/menu.inc /^function _menu_translate(&$router_item, $map, $to_arg = FALSE) {$/;" f
_menu_tree_check_access $DRUPAL_ROOT/includes/menu.inc /^function _menu_tree_check_access(&$tree) {$/;" f
_menu_tree_check_access $DRUPAL_ROOT/modules/system/system.admin.inc /^ \/\/ Prepare for sorting as in function _menu_tree_check_access().$/;" f
_menu_tree_check_access $DRUPAL_ROOT/modules/system/system.module /^ \/\/ Prepare for sorting as in function _menu_tree_check_access().$/;" f
_menu_tree_cid $DRUPAL_ROOT/includes/menu.inc /^function _menu_tree_cid($menu_name, $data) {$/;" f
_menu_tree_data $DRUPAL_ROOT/includes/menu.inc /^function _menu_tree_data($result, $parents, $depth, $previous_element = '') {$/;" f
_menu_update_parental_status $DRUPAL_ROOT/includes/menu.inc /^function _menu_update_parental_status($item, $exclude = FALSE) {$/;" f
_mime_header_decode $DRUPAL_ROOT/includes/unicode.inc /^function _mime_header_decode($matches) {$/;" f
_module_build_dependencies $DRUPAL_ROOT/includes/module.inc /^function _module_build_dependencies($files) {$/;" f
_node_access_join_sql $DRUPAL_ROOT/modules/node/node.module /^function _node_access_join_sql($node_alias = 'n', $node_access_alias = 'na') {$/;" f
_node_access_rebuild_batch_finished $DRUPAL_ROOT/modules/node/node.module /^function _node_access_rebuild_batch_finished($success, $results, $operations) {$/;" f
_node_access_rebuild_batch_operation $DRUPAL_ROOT/modules/node/node.module /^function _node_access_rebuild_batch_operation(&$context) {$/;" f
_node_access_where_sql $DRUPAL_ROOT/modules/node/node.module /^function _node_access_where_sql($op = 'view', $node_access_alias = 'na', $account = NULL) {$/;" f
_node_add_access $DRUPAL_ROOT/modules/node/node.module /^function _node_add_access() {$/;" f
_node_index_node $DRUPAL_ROOT/modules/node/node.module /^function _node_index_node($node) {$/;" f
_node_mass_update_batch_finished $DRUPAL_ROOT/modules/node/node.admin.inc /^function _node_mass_update_batch_finished($success, $results, $operations) {$/;" f
_node_mass_update_batch_process $DRUPAL_ROOT/modules/node/node.admin.inc /^function _node_mass_update_batch_process($nodes, $updates, &$context) {$/;" f
_node_mass_update_helper $DRUPAL_ROOT/modules/node/node.admin.inc /^function _node_mass_update_helper($nid, $updates) {$/;" f
_node_revision_access $DRUPAL_ROOT/modules/node/node.module /^function _node_revision_access($node, $op = 'view') {$/;" f
_node_save_revision $DRUPAL_ROOT/modules/node/node.module /^function _node_save_revision(&$node, $uid, $update = NULL) {$/;" f
_node_type_set_defaults $DRUPAL_ROOT/modules/node/node.module /^function _node_type_set_defaults($info) {$/;" f
_node_types_build $DRUPAL_ROOT/modules/node/node.module /^function _node_types_build() {$/;" f
_openid_create_message $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_create_message($data) {$/;" f
_openid_dh_base64_to_long $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_dh_base64_to_long($str) {$/;" f
_openid_dh_binary_to_long $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_dh_binary_to_long($str) {$/;" f
_openid_dh_long_to_base64 $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_dh_long_to_base64($str) {$/;" f
_openid_dh_long_to_binary $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_dh_long_to_binary($long) {$/;" f
_openid_dh_rand $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_dh_rand($stop) {$/;" f
_openid_dh_xorsecret $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_dh_xorsecret($shared, $secret) {$/;" f
_openid_encode_message $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_encode_message($message) {$/;" f
_openid_get_bytes $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_get_bytes($num_bytes) {$/;" f
_openid_get_params $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_get_params($str) {$/;" f
_openid_hmac $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_hmac($key, $text) {$/;" f
_openid_is_xri $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_is_xri($identifier) {$/;" f
_openid_link_href $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_link_href($rel, $html) {$/;" f
_openid_meta_httpequiv $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_meta_httpequiv($equiv, $html) {$/;" f
_openid_nonce $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_nonce() {$/;" f
_openid_normalize $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_normalize($identifier) {$/;" f
_openid_normalize_url $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_normalize_url($url) {$/;" f
_openid_normalize_xri $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_normalize_xri($xri) {$/;" f
_openid_parse_message $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_parse_message($message) {$/;" f
_openid_response $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_response($str = NULL) {$/;" f
_openid_sha1 $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_sha1($text) {$/;" f
_openid_signature $DRUPAL_ROOT/modules/openid/openid.inc /^function _openid_signature($association, $message_array, $keys_to_sign) {$/;" f
_ping_notify $DRUPAL_ROOT/modules/ping/ping.module /^function _ping_notify($name, $url) {$/;" f
_poll_choice_form $DRUPAL_ROOT/modules/poll/poll.module /^function _poll_choice_form($delta, $value = '', $votes = 0) {$/;" f
_poll_menu_access $DRUPAL_ROOT/modules/poll/poll.module /^function _poll_menu_access($node, $perm, $inspect_allowvotes) {$/;" f
_process_comment $DRUPAL_ROOT/includes/common.inc /^function _process_comment($matches) {$/;" f
_profile_field_serialize $DRUPAL_ROOT/modules/profile/profile.module /^function _profile_field_serialize($type = NULL) {$/;" f
_profile_field_types $DRUPAL_ROOT/modules/profile/profile.module /^function _profile_field_types($type = NULL) {$/;" f
_profile_form_explanation $DRUPAL_ROOT/modules/profile/profile.module /^function _profile_form_explanation($field) {$/;" f
_profile_get_fields $DRUPAL_ROOT/modules/profile/profile.module /^function _profile_get_fields($category, $register = FALSE) {$/;" f
_profile_update_user_fields $DRUPAL_ROOT/modules/profile/profile.module /^function _profile_update_user_fields($fields, $account) {$/;" f
_search_excerpt_replace $DRUPAL_ROOT/modules/search/search.module /^function _search_excerpt_replace(&$text) {$/;" f
_search_index_truncate $DRUPAL_ROOT/modules/search/search.module /^function _search_index_truncate(&$text) {$/;" f
_search_menu $DRUPAL_ROOT/modules/search/search.module /^function _search_menu($name) {$/;" f
_search_parse_query $DRUPAL_ROOT/modules/search/search.module /^function _search_parse_query(&$word, &$scores, $not = FALSE) {$/;" f
_statistics_format_item $DRUPAL_ROOT/modules/statistics/statistics.module /^function _statistics_format_item($title, $path) {$/;" f
_statistics_link $DRUPAL_ROOT/modules/statistics/statistics.module /^function _statistics_link($path, $width = 35) {$/;" f
_system_is_incompatible $DRUPAL_ROOT/modules/system/system.admin.inc /^function _system_is_incompatible(&$incompatible, $files, $file) {$/;" f
_system_sort_requirements $DRUPAL_ROOT/modules/system/system.module /^function _system_sort_requirements($a, $b) {$/;" f
_system_sql $DRUPAL_ROOT/modules/system/system.admin.inc /^function _system_sql($data, $keys) {$/;" f
_system_theme_data $DRUPAL_ROOT/modules/system/system.module /^function _system_theme_data() {$/;" f
_system_themes_access $DRUPAL_ROOT/modules/system/system.module /^function _system_themes_access($theme) {$/;" f
_system_zonelist $DRUPAL_ROOT/modules/system/system.module /^function _system_zonelist() {$/;" f
_taxonomy_get_tid_from_term $DRUPAL_ROOT/modules/taxonomy/taxonomy.module /^function _taxonomy_get_tid_from_term($term) {$/;" f
_taxonomy_term_children $DRUPAL_ROOT/modules/taxonomy/taxonomy.module /^function _taxonomy_term_children($tid) {$/;" f
_taxonomy_term_select $DRUPAL_ROOT/modules/taxonomy/taxonomy.module /^function _taxonomy_term_select($title, $name, $value, $vocabulary_id, $description, $multiple, $blank, $exclude = array()) {$/;" f
_theme_build_registry $DRUPAL_ROOT/includes/theme.inc /^function _theme_build_registry($theme, $base_theme, $theme_engine) {$/;" f
_theme_load_offline_registry $DRUPAL_ROOT/includes/theme.maintenance.inc /^function _theme_load_offline_registry($theme, $base_theme = NULL, $theme_engine = NULL) {$/;" f
_theme_load_registry $DRUPAL_ROOT/includes/theme.inc /^function _theme_load_registry($theme, $base_theme = NULL, $theme_engine = NULL) {$/;" f
_theme_process_registry $DRUPAL_ROOT/includes/theme.inc /^function _theme_process_registry(&$cache, $name, $type, $theme, $path) {$/;" f
_theme_save_registry $DRUPAL_ROOT/includes/theme.inc /^function _theme_save_registry($theme, $registry) {$/;" f
_theme_set_registry $DRUPAL_ROOT/includes/theme.inc /^function _theme_set_registry($registry) {$/;" f
_theme_table_cell $DRUPAL_ROOT/includes/theme.inc /^function _theme_table_cell($cell, $header = FALSE) {$/;" f
_tracker_myrecent_access $DRUPAL_ROOT/modules/tracker/tracker.module /^function _tracker_myrecent_access($account) {$/;" f
_tracker_user_access $DRUPAL_ROOT/modules/tracker/tracker.module /^function _tracker_user_access($account) {$/;" f
_translation_tab_access $DRUPAL_ROOT/modules/translation/translation.module /^function _translation_tab_access($node) {$/;" f
_trigger_get_hook_actions $DRUPAL_ROOT/modules/trigger/trigger.admin.inc /^function _trigger_get_hook_actions($hook, $op, $type = NULL) {$/;" f
_trigger_get_hook_aids $DRUPAL_ROOT/modules/trigger/trigger.module /^function _trigger_get_hook_aids($hook, $op = '') {$/;" f
_trigger_normalize_comment_context $DRUPAL_ROOT/modules/trigger/trigger.module /^function _trigger_normalize_comment_context($type, $comment) {$/;" f
_trigger_normalize_node_context $DRUPAL_ROOT/modules/trigger/trigger.module /^function _trigger_normalize_node_context($type, $node) {$/;" f
_trigger_normalize_user_context $DRUPAL_ROOT/modules/trigger/trigger.module /^function _trigger_normalize_user_context($type, $account) {$/;" f
_unicode_caseflip $DRUPAL_ROOT/includes/unicode.inc /^function _unicode_caseflip($matches) {$/;" f
_unicode_check $DRUPAL_ROOT/includes/unicode.inc /^function _unicode_check() {$/;" f
_update_build_fetch_url $DRUPAL_ROOT/modules/update/update.fetch.inc /^function _update_build_fetch_url($project, $site_key = '') {$/;" f
_update_cache_clear $DRUPAL_ROOT/modules/update/update.module /^function _update_cache_clear($cid = NULL) {$/;" f
_update_cache_get $DRUPAL_ROOT/modules/update/update.module /^function _update_cache_get($cid) {$/;" f
_update_cache_set $DRUPAL_ROOT/modules/update/update.module /^function _update_cache_set($cid, $data, $expire) {$/;" f
_update_cron_notify $DRUPAL_ROOT/modules/update/update.fetch.inc /^function _update_cron_notify() {$/;" f
_update_get_fetch_url_base $DRUPAL_ROOT/modules/update/update.fetch.inc /^function _update_get_fetch_url_base($project) {$/;" f
_update_message_text $DRUPAL_ROOT/modules/update/update.module /^function _update_message_text($msg_type, $msg_reason, $report_link = FALSE, $language = NULL) {$/;" f
_update_no_data $DRUPAL_ROOT/modules/update/update.module /^function _update_no_data() {$/;" f
_update_process_info_list $DRUPAL_ROOT/modules/update/update.compare.inc /^function _update_process_info_list(&$projects, $list, $project_type) {$/;" f
_update_project_status_sort $DRUPAL_ROOT/modules/update/update.module /^function _update_project_status_sort($a, $b) {$/;" f
_update_refresh $DRUPAL_ROOT/modules/update/update.fetch.inc /^function _update_refresh() {$/;" f
_update_remove_update_status_variables $DRUPAL_ROOT/modules/update/update.install /^function _update_remove_update_status_variables() {$/;" f
_update_requirement_check $DRUPAL_ROOT/modules/update/update.module /^function _update_requirement_check($project, $type) {$/;" f
_upload_file_limits $DRUPAL_ROOT/modules/upload/upload.module /^function _upload_file_limits($user) {$/;" f
_upload_form $DRUPAL_ROOT/modules/upload/upload.module /^function _upload_form($node) {$/;" f
_user_categories $DRUPAL_ROOT/modules/user/user.module /^function _user_categories($account) {$/;" f
_user_edit_submit $DRUPAL_ROOT/modules/user/user.module /^function _user_edit_submit($uid, &$edit) {$/;" f
_user_edit_validate $DRUPAL_ROOT/modules/user/user.module /^function _user_edit_validate($uid, &$edit) {$/;" f
_user_forms $DRUPAL_ROOT/modules/user/user.module /^function _user_forms(&$edit, $account, $category, $hook = 'form') {$/;" f
_user_mail_notify $DRUPAL_ROOT/modules/user/user.module /^function _user_mail_notify($op, $account, $language = NULL) {$/;" f
_user_mail_text $DRUPAL_ROOT/modules/user/user.module /^function _user_mail_text($key, $language = NULL, $variables = array()) {$/;" f
_user_password_dynamic_validation $DRUPAL_ROOT/modules/user/user.module /^function _user_password_dynamic_validation() {$/;" f
_user_sort $DRUPAL_ROOT/modules/user/user.module /^function _user_sort($a, $b) {$/;" f
_xmlrpc $DRUPAL_ROOT/includes/xmlrpc.inc /^function _xmlrpc() {$/;" f
_xrds_cdata $DRUPAL_ROOT/modules/openid/xrds.inc /^function _xrds_cdata(&$parser, $data) {$/;" f
_xrds_element_end $DRUPAL_ROOT/modules/openid/xrds.inc /^function _xrds_element_end(&$parser, $name) {$/;" f
_xrds_element_start $DRUPAL_ROOT/modules/openid/xrds.inc /^function _xrds_element_start(&$parser, $name, $attribs) {$/;" f
_xrds_strip_namespace $DRUPAL_ROOT/modules/openid/xrds.inc /^function _xrds_strip_namespace($name) {$/;" f
acquires $DRUPAL_ROOT/includes/lock.inc /^ * If a function acquires a lock it should always release it when the$/;" f
actions.inc $DRUPAL_ROOT/includes/actions.inc 1;" F
actions_actions_map $DRUPAL_ROOT/includes/actions.inc /^function actions_actions_map($actions) {$/;" f
actions_delete $DRUPAL_ROOT/includes/actions.inc /^function actions_delete($aid) {$/;" f
actions_do $DRUPAL_ROOT/includes/actions.inc /^function actions_do($action_ids, &$object, $context = NULL, $a1 = NULL, $a2 = NULL) {$/;" f
actions_function_lookup $DRUPAL_ROOT/includes/actions.inc /^function actions_function_lookup($hash) {$/;" f
actions_get_all_actions $DRUPAL_ROOT/includes/actions.inc /^function actions_get_all_actions() {$/;" f
actions_list $DRUPAL_ROOT/includes/actions.inc /^function actions_list($reset = FALSE) {$/;" f
actions_load $DRUPAL_ROOT/includes/actions.inc /^function actions_load($aid) {$/;" f
actions_save $DRUPAL_ROOT/includes/actions.inc /^function actions_save($function, $type, $params, $desc, $aid = NULL) {$/;" f
actions_synchronize $DRUPAL_ROOT/includes/actions.inc /^function actions_synchronize($actions_in_code = array(), $delete_orphans = FALSE) {$/;" f
adds $DRUPAL_ROOT/includes/file.inc /^ * Specifically, this function adds an underscore to all extensions that are$/;" f
after $DRUPAL_ROOT/includes/form.inc /^ * function after all other button-detection is complete to check$/;" f
aggregator-feed-source.tpl.php $DRUPAL_ROOT/modules/aggregator/aggregator-feed-source.tpl.php 1;" F
aggregator-item.tpl.php $DRUPAL_ROOT/modules/aggregator/aggregator-item.tpl.php 1;" F
aggregator-summary-item.tpl.php $DRUPAL_ROOT/modules/aggregator/aggregator-summary-item.tpl.php 1;" F
aggregator-summary-items.tpl.php $DRUPAL_ROOT/modules/aggregator/aggregator-summary-items.tpl.php 1;" F
aggregator-wrapper.tpl.php $DRUPAL_ROOT/modules/aggregator/aggregator-wrapper.tpl.php 1;" F
aggregator.admin.inc $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc 1;" F
aggregator.install $DRUPAL_ROOT/modules/aggregator/aggregator.install 1;" F
aggregator.module $DRUPAL_ROOT/modules/aggregator/aggregator.module 1;" F
aggregator.pages.inc $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc 1;" F
aggregator_admin_overview $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc /^function aggregator_admin_overview() {$/;" f
aggregator_admin_refresh_feed $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc /^function aggregator_admin_refresh_feed($feed) {$/;" f
aggregator_admin_remove_feed $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc /^function aggregator_admin_remove_feed($form_state, $feed) {$/;" f
aggregator_admin_remove_feed_submit $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc /^function aggregator_admin_remove_feed_submit($form, &$form_state) {$/;" f
aggregator_admin_settings $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc /^function aggregator_admin_settings() {$/;" f
aggregator_block $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_block($op = 'list', $delta = 0, $edit = array()) {$/;" f
aggregator_categorize_items $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc /^function aggregator_categorize_items($items, $feed_source = '') {$/;" f
aggregator_categorize_items_submit $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc /^function aggregator_categorize_items_submit($form, &$form_state) {$/;" f
aggregator_categorize_items_validate $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc /^function aggregator_categorize_items_validate($form, &$form_state) {$/;" f
aggregator_category_load $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_category_load($cid) {$/;" f
aggregator_cron $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_cron() {$/;" f
aggregator_element_data $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_element_data($parser, $data) {$/;" f
aggregator_element_end $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_element_end($parser, $name) {$/;" f
aggregator_element_start $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_element_start($parser, $name, $attributes) {$/;" f
aggregator_feed_items_load $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc /^function aggregator_feed_items_load($sql) {$/;" f
aggregator_feed_load $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_feed_load($fid) {$/;" f
aggregator_filter_xss $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_filter_xss($value) {$/;" f
aggregator_form_category $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc /^function aggregator_form_category(&$form_state, $edit = array('title' => '', 'description' => '', 'cid' => NULL)) {$/;" f
aggregator_form_category_submit $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc /^function aggregator_form_category_submit($form, &$form_state) {$/;" f
aggregator_form_category_validate $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc /^function aggregator_form_category_validate($form, &$form_state) {$/;" f
aggregator_form_feed $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc /^function aggregator_form_feed(&$form_state, $edit = array('refresh' => 900, 'title' => '', 'url' => '', 'fid' => NULL)) {$/;" f
aggregator_form_feed_submit $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc /^function aggregator_form_feed_submit($form, &$form_state) {$/;" f
aggregator_form_feed_validate $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc /^function aggregator_form_feed_validate($form, &$form_state) {$/;" f
aggregator_help $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_help($path, $arg) {$/;" f
aggregator_init $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_init() {$/;" f
aggregator_install $DRUPAL_ROOT/modules/aggregator/aggregator.install /^function aggregator_install() {$/;" f
aggregator_menu $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_menu() {$/;" f
aggregator_page_categories $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc /^function aggregator_page_categories() {$/;" f
aggregator_page_category $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc /^function aggregator_page_category($arg1, $arg2 = NULL) {$/;" f
aggregator_page_last $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc /^function aggregator_page_last() {$/;" f
aggregator_page_opml $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc /^function aggregator_page_opml($cid = NULL) {$/;" f
aggregator_page_rss $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc /^function aggregator_page_rss() {$/;" f
aggregator_page_source $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc /^function aggregator_page_source($arg1, $arg2 = NULL) {$/;" f
aggregator_page_sources $DRUPAL_ROOT/modules/aggregator/aggregator.pages.inc /^function aggregator_page_sources() {$/;" f
aggregator_parse_feed $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_parse_feed(&$data, $feed) {$/;" f
aggregator_parse_w3cdtf $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_parse_w3cdtf($date_str) {$/;" f
aggregator_perm $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_perm() {$/;" f
aggregator_refresh $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_refresh($feed) {$/;" f
aggregator_remove $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_remove($feed) {$/;" f
aggregator_save_category $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_save_category($edit) {$/;" f
aggregator_save_feed $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_save_feed($edit) {$/;" f
aggregator_save_item $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_save_item($edit) {$/;" f
aggregator_schema $DRUPAL_ROOT/modules/aggregator/aggregator.install /^function aggregator_schema() {$/;" f
aggregator_theme $DRUPAL_ROOT/modules/aggregator/aggregator.module /^function aggregator_theme() {$/;" f
aggregator_uninstall $DRUPAL_ROOT/modules/aggregator/aggregator.install /^function aggregator_uninstall() {$/;" f
aggregator_view $DRUPAL_ROOT/modules/aggregator/aggregator.admin.inc /^function aggregator_view() {$/;" f
ahah.js $DRUPAL_ROOT/misc/ahah.js 1;" F
allows $DRUPAL_ROOT/includes/form.inc /^ * This function allows you to supply values for form elements and submit a$/;" f
allows $DRUPAL_ROOT/includes/session.inc /^ * This function allows the caller to temporarily disable writing of session data,$/;" f
allows $DRUPAL_ROOT/modules/system/system.admin.inc /^ * Form builder; This function allows selection of the theme to show in administration sections.$/;" f
also $DRUPAL_ROOT/modules/update/update.module /^ * In addition to checking the cache lifetime, this function also ensures that$/;" f
and $DRUPAL_ROOT/includes/actions.inc /^ * hook_action_info(). The actions returned by this function and the actions$/;" f
and $DRUPAL_ROOT/includes/install.inc /^ * Calls the install function and updates the system table for a given list of$/;" f
and $DRUPAL_ROOT/includes/install.inc /^ * Calls the uninstall function and updates the system table for a given module.$/;" f
and $DRUPAL_ROOT/includes/theme.inc /^ \/\/ if function and file are left out, default to standard naming$/;" f
and $DRUPAL_ROOT/includes/theme.inc /^ \/\/ default render function and extension.$/;" f
and $DRUPAL_ROOT/modules/locale/locale.module /^ 'description' => 'Translate the built in interface and optionally other text.',$/;" i
and $DRUPAL_ROOT/modules/translation/translation.module /^ $output .= '<p>'. t('Use the <a href="@blocks">language switcher block<\/a> provided by locale module to allow users to select a language. If available, both the site interface and site content are presented in the language selected.', array('@blocks' => url('admin\/build\/block'))) .'<\/p>';$/;" i
are $DRUPAL_ROOT/modules/update/update.compare.inc /^ * The results of this function are expensive to compute, especially on sites$/;" f
arg $DRUPAL_ROOT/includes/path.inc /^function arg($index = NULL, $path = NULL) {$/;" f
arguments $DRUPAL_ROOT/includes/form.inc /^ \/\/ We store the original function arguments, rather than the final $arg$/;" f
as $DRUPAL_ROOT/modules/update/update.report.inc /^ \/\/ recommending, give it the same CSS class as if it was recommended,$/;" c
at $DRUPAL_ROOT/modules/taxonomy/taxonomy.admin.inc /^ $description .= '<p>'. t("You may re-enable the drag and drop interface at any time by reducing multiple parents to a single parent for the terms in this vocabulary.") .'<\/p>';$/;" i
attribute $DRUPAL_ROOT/includes/form.inc /^ * Sets a form element's class attribute.$/;" c
attribute $DRUPAL_ROOT/includes/tablesort.inc /^ * Adds a class attribute to all cells in the currently active column.$/;" c
attribute $DRUPAL_ROOT/themes/garland/template.php /^ * Sets the body-tag class attribute.$/;" c
attributes $DRUPAL_ROOT/includes/theme.inc /^ \/\/ Some links are actually not links, but we wrap these in <span> for adding title and class attributes$/;" c
autocomplete.js $DRUPAL_ROOT/misc/autocomplete.js 1;" F
automatically $DRUPAL_ROOT/includes/database.pgsql.inc /^ * This function automatically commits a transaction.$/;" f
automatically $DRUPAL_ROOT/includes/database.pgsql.inc /^ * This function automatically starts a transaction.$/;" f
available $DRUPAL_ROOT/modules/book/book.module /^ $output .= '<p>'. t("Users with the <em>administer book outlines<\/em> permission can add a post of any content type to a book, by selecting the appropriate book while editing the post or by using the interface available on the post's <em>outline<\/em> tab.") .'<\/p>';$/;" i
base_path $DRUPAL_ROOT/includes/common.inc /^function base_path() {$/;" f
batch.inc $DRUPAL_ROOT/includes/batch.inc 1;" F
batch.js $DRUPAL_ROOT/misc/batch.js 1;" F
batch_get $DRUPAL_ROOT/includes/form.inc /^function &batch_get() {$/;" f
batch_process $DRUPAL_ROOT/includes/form.inc /^function batch_process($redirect = NULL, $url = NULL) {$/;" f
batch_set $DRUPAL_ROOT/includes/form.inc /^function batch_set($batch_definition) {$/;" f
batch_test_finished $DRUPAL_ROOT/includes/form.inc /^ * function batch_test_finished($success, $results, $operations) {$/;" f
bcpowmod $DRUPAL_ROOT/modules/openid/openid.inc /^ function bcpowmod($base, $exp, $mod) {$/;" f
block-admin-display-form.tpl.php $DRUPAL_ROOT/modules/block/block-admin-display-form.tpl.php 1;" F
block.admin.inc $DRUPAL_ROOT/modules/block/block.admin.inc 1;" F
block.install $DRUPAL_ROOT/modules/block/block.install 1;" F
block.js $DRUPAL_ROOT/modules/block/block.js 1;" F
block.module $DRUPAL_ROOT/modules/block/block.module 1;" F
block.tpl.php $DRUPAL_ROOT/modules/system/block.tpl.php 1;" F
block.tpl.php $DRUPAL_ROOT/themes/bluemarine/block.tpl.php 1;" F
block.tpl.php $DRUPAL_ROOT/themes/garland/block.tpl.php 1;" F
block.tpl.php $DRUPAL_ROOT/themes/pushbutton/block.tpl.php 1;" F
block_add_block_form $DRUPAL_ROOT/modules/block/block.admin.inc /^function block_add_block_form(&$form_state) {$/;" f
block_add_block_form_submit $DRUPAL_ROOT/modules/block/block.admin.inc /^function block_add_block_form_submit($form, &$form_state) {$/;" f
block_add_block_form_validate $DRUPAL_ROOT/modules/block/block.admin.inc /^function block_add_block_form_validate($form, &$form_state) {$/;" f
block_admin_configure $DRUPAL_ROOT/modules/block/block.admin.inc /^function block_admin_configure(&$form_state, $module = NULL, $delta = 0) {$/;" f
block_admin_configure_submit $DRUPAL_ROOT/modules/block/block.admin.inc /^function block_admin_configure_submit($form, &$form_state) {$/;" f
block_admin_configure_validate $DRUPAL_ROOT/modules/block/block.admin.inc /^function block_admin_configure_validate($form, &$form_state) {$/;" f
block_admin_display $DRUPAL_ROOT/modules/block/block.admin.inc /^function block_admin_display($theme = NULL) {$/;" f
block_admin_display_form $DRUPAL_ROOT/modules/block/block.admin.inc /^function block_admin_display_form(&$form_state, $blocks, $theme = NULL) {$/;" f
block_admin_display_form_submit $DRUPAL_ROOT/modules/block/block.admin.inc /^function block_admin_display_form_submit($form, &$form_state) {$/;" f
block_block $DRUPAL_ROOT/modules/block/block.module /^function block_block($op = 'list', $delta = 0, $edit = array()) {$/;" f
block_box_delete $DRUPAL_ROOT/modules/block/block.admin.inc /^function block_box_delete(&$form_state, $bid = 0) {$/;" f
block_box_delete_submit $DRUPAL_ROOT/modules/block/block.admin.inc /^function block_box_delete_submit($form, &$form_state) {$/;" f
block_box_form $DRUPAL_ROOT/modules/block/block.module /^function block_box_form($edit = array()) {$/;" f
block_box_get $DRUPAL_ROOT/modules/block/block.module /^function block_box_get($bid) {$/;" f
block_box_save $DRUPAL_ROOT/modules/block/block.module /^function block_box_save($edit, $delta) {$/;" f
block_flush_caches $DRUPAL_ROOT/modules/block/block.module /^function block_flush_caches() {$/;" f
block_help $DRUPAL_ROOT/modules/block/block.module /^function block_help($path, $arg) {$/;" f
block_list $DRUPAL_ROOT/modules/block/block.module /^function block_list($region) {$/;" f
block_menu $DRUPAL_ROOT/modules/block/block.module /^function block_menu() {$/;" f
block_perm $DRUPAL_ROOT/modules/block/block.module /^function block_perm() {$/;" f
block_schema $DRUPAL_ROOT/modules/block/block.install /^function block_schema() {$/;" f
block_theme $DRUPAL_ROOT/modules/block/block.module /^function block_theme() {$/;" f
block_user $DRUPAL_ROOT/modules/block/block.module /^function block_user($type, $edit, &$account, $category = NULL) {$/;" f
blog.module $DRUPAL_ROOT/modules/blog/blog.module 1;" F
blog.pages.inc $DRUPAL_ROOT/modules/blog/blog.pages.inc 1;" F
blog_access $DRUPAL_ROOT/modules/blog/blog.module /^function blog_access($op, $node, $account) {$/;" f
blog_block $DRUPAL_ROOT/modules/blog/blog.module /^function blog_block($op = 'list', $delta = 0) {$/;" f
blog_feed_last $DRUPAL_ROOT/modules/blog/blog.pages.inc /^function blog_feed_last() {$/;" f
blog_feed_user $DRUPAL_ROOT/modules/blog/blog.pages.inc /^function blog_feed_user($account) {$/;" f
blog_form $DRUPAL_ROOT/modules/blog/blog.module /^function blog_form(&$node) {$/;" f
blog_help $DRUPAL_ROOT/modules/blog/blog.module /^function blog_help($path, $arg) {$/;" f
blog_link $DRUPAL_ROOT/modules/blog/blog.module /^function blog_link($type, $node = NULL, $teaser = FALSE) {$/;" f
blog_menu $DRUPAL_ROOT/modules/blog/blog.module /^function blog_menu() {$/;" f
blog_node_info $DRUPAL_ROOT/modules/blog/blog.module /^function blog_node_info() {$/;" f
blog_page_last $DRUPAL_ROOT/modules/blog/blog.pages.inc /^function blog_page_last() {$/;" f
blog_page_user $DRUPAL_ROOT/modules/blog/blog.pages.inc /^function blog_page_user($account) {$/;" f
blog_page_user_access $DRUPAL_ROOT/modules/blog/blog.module /^function blog_page_user_access($account) {$/;" f
blog_perm $DRUPAL_ROOT/modules/blog/blog.module /^function blog_perm() {$/;" f
blog_user $DRUPAL_ROOT/modules/blog/blog.module /^function blog_user($type, &$edit, &$user) {$/;" f
blog_view $DRUPAL_ROOT/modules/blog/blog.module /^function blog_view($node, $teaser = FALSE, $page = FALSE) {$/;" f
blogapi.install $DRUPAL_ROOT/modules/blogapi/blogapi.install 1;" F
blogapi.module $DRUPAL_ROOT/modules/blogapi/blogapi.module 1;" F
blogapi_admin_settings $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_admin_settings() {$/;" f
blogapi_blogger_delete_post $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_blogger_delete_post($appkey, $postid, $username, $password, $publish) {$/;" f
blogapi_blogger_edit_post $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_blogger_edit_post($appkey, $postid, $username, $password, $content, $publish) {$/;" f
blogapi_blogger_get_post $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_blogger_get_post($appkey, $postid, $username, $password) {$/;" f
blogapi_blogger_get_recent_posts $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_blogger_get_recent_posts($appkey, $blogid, $username, $password, $number_of_posts, $bodies = TRUE) {$/;" f
blogapi_blogger_get_user_info $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_blogger_get_user_info($appkey, $username, $password) {$/;" f
blogapi_blogger_get_users_blogs $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_blogger_get_users_blogs($appid, $username, $password) {$/;" f
blogapi_blogger_new_post $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_blogger_new_post($appkey, $blogid, $username, $password, $content, $publish) {$/;" f
blogapi_blogger_title $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_blogger_title(&$contents) {$/;" f
blogapi_error $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_error($message) {$/;" f
blogapi_help $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_help($path, $arg) {$/;" f
blogapi_init $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_init() {$/;" f
blogapi_install $DRUPAL_ROOT/modules/blogapi/blogapi.install /^function blogapi_install() {$/;" f
blogapi_menu $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_menu() {$/;" f
blogapi_metaweblog_edit_post $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_metaweblog_edit_post($postid, $username, $password, $content, $publish) {$/;" f
blogapi_metaweblog_get_category_list $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_metaweblog_get_category_list($blogid, $username, $password) {$/;" f
blogapi_metaweblog_get_post $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_metaweblog_get_post($postid, $username, $password) {$/;" f
blogapi_metaweblog_get_recent_posts $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_metaweblog_get_recent_posts($blogid, $username, $password, $number_of_posts) {$/;" f
blogapi_metaweblog_new_media_object $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_metaweblog_new_media_object($blogid, $username, $password, $file) {$/;" f
blogapi_metaweblog_new_post $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_metaweblog_new_post($blogid, $username, $password, $content, $publish) {$/;" f
blogapi_mt_get_category_list $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_mt_get_category_list($blogid, $username, $password) {$/;" f
blogapi_mt_get_post_categories $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_mt_get_post_categories($postid, $username, $password) {$/;" f
blogapi_mt_get_recent_post_titles $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_mt_get_recent_post_titles($blogid, $username, $password, $number_of_posts) {$/;" f
blogapi_mt_publish_post $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_mt_publish_post($postid, $username, $password) {$/;" f
blogapi_mt_set_post_categories $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_mt_set_post_categories($postid, $username, $password, $categories) {$/;" f
blogapi_mt_supported_text_filters $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_mt_supported_text_filters() {$/;" f
blogapi_mt_validate_terms $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_mt_validate_terms($node) {$/;" f
blogapi_perm $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_perm() {$/;" f
blogapi_rsd $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_rsd() {$/;" f
blogapi_schema $DRUPAL_ROOT/modules/blogapi/blogapi.install /^function blogapi_schema() {$/;" f
blogapi_status_error_check $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_status_error_check($node, $original_status) {$/;" f
blogapi_uninstall $DRUPAL_ROOT/modules/blogapi/blogapi.install /^function blogapi_uninstall() {$/;" f
blogapi_update_6000 $DRUPAL_ROOT/modules/blogapi/blogapi.install /^function blogapi_update_6000() {$/;" f
blogapi_update_6001 $DRUPAL_ROOT/modules/blogapi/blogapi.install /^function blogapi_update_6001() {$/;" f
blogapi_validate_user $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_validate_user($username, $password) {$/;" f
blogapi_xmlrpc $DRUPAL_ROOT/modules/blogapi/blogapi.module /^function blogapi_xmlrpc() {$/;" f
book-all-books-block.tpl.php $DRUPAL_ROOT/modules/book/book-all-books-block.tpl.php 1;" F
book-export-html.tpl.php $DRUPAL_ROOT/modules/book/book-export-html.tpl.php 1;" F
book-navigation.tpl.php $DRUPAL_ROOT/modules/book/book-navigation.tpl.php 1;" F
book-node-export-html.tpl.php $DRUPAL_ROOT/modules/book/book-node-export-html.tpl.php 1;" F
book.admin.inc $DRUPAL_ROOT/modules/book/book.admin.inc 1;" F
book.install $DRUPAL_ROOT/modules/book/book.install 1;" F
book.module $DRUPAL_ROOT/modules/book/book.module 1;" F
book.pages.inc $DRUPAL_ROOT/modules/book/book.pages.inc 1;" F
book_admin_edit $DRUPAL_ROOT/modules/book/book.admin.inc /^function book_admin_edit($form_state, $node) {$/;" f
book_admin_edit_submit $DRUPAL_ROOT/modules/book/book.admin.inc /^function book_admin_edit_submit($form, &$form_state) {$/;" f
book_admin_edit_validate $DRUPAL_ROOT/modules/book/book.admin.inc /^function book_admin_edit_validate($form, &$form_state) {$/;" f
book_admin_overview $DRUPAL_ROOT/modules/book/book.admin.inc /^function book_admin_overview() {$/;" f
book_admin_settings $DRUPAL_ROOT/modules/book/book.admin.inc /^function book_admin_settings() {$/;" f
book_admin_settings_validate $DRUPAL_ROOT/modules/book/book.admin.inc /^function book_admin_settings_validate($form, &$form_state) {$/;" f
book_block $DRUPAL_ROOT/modules/book/book.module /^function book_block($op = 'list', $delta = 0, $edit = array()) {$/;" f
book_build_active_trail $DRUPAL_ROOT/modules/book/book.module /^function book_build_active_trail($book_link) {$/;" f
book_children $DRUPAL_ROOT/modules/book/book.module /^function book_children($book_link) {$/;" f
book_export $DRUPAL_ROOT/modules/book/book.pages.inc /^function book_export($type, $nid) {$/;" f
book_export_html $DRUPAL_ROOT/modules/book/book.pages.inc /^ * the function book_export_html().$/;" f
book_export_html $DRUPAL_ROOT/modules/book/book.pages.inc /^function book_export_html($nid) {$/;" f
book_export_traverse $DRUPAL_ROOT/modules/book/book.module /^function book_export_traverse($tree, $visit_func) {$/;" f
book_form_alter $DRUPAL_ROOT/modules/book/book.module /^function book_form_alter(&$form, $form_state, $form_id) {$/;" f
book_form_node_delete_confirm_alter $DRUPAL_ROOT/modules/book/book.module /^function book_form_node_delete_confirm_alter(&$form, $form_state) {$/;" f
book_form_update $DRUPAL_ROOT/modules/book/book.pages.inc /^function book_form_update() {$/;" f
book_get_books $DRUPAL_ROOT/modules/book/book.module /^function book_get_books() {$/;" f
book_get_flat_menu $DRUPAL_ROOT/modules/book/book.module /^function book_get_flat_menu($book_link) {$/;" f
book_help $DRUPAL_ROOT/modules/book/book.module /^function book_help($path, $arg) {$/;" f
book_init $DRUPAL_ROOT/modules/book/book.module /^function book_init() {$/;" f
book_install $DRUPAL_ROOT/modules/book/book.install /^function book_install() {$/;" f
book_link $DRUPAL_ROOT/modules/book/book.module /^function book_link($type, $node = NULL, $teaser = FALSE) {$/;" f
book_link_load $DRUPAL_ROOT/modules/book/book.module /^function book_link_load($mlid) {$/;" f
book_menu $DRUPAL_ROOT/modules/book/book.module /^function book_menu() {$/;" f
book_menu_name $DRUPAL_ROOT/modules/book/book.module /^function book_menu_name($bid) {$/;" f
book_menu_subtree_data $DRUPAL_ROOT/modules/book/book.module /^function book_menu_subtree_data($item) {$/;" f
book_next $DRUPAL_ROOT/modules/book/book.module /^function book_next($book_link) {$/;" f
book_node_export $DRUPAL_ROOT/modules/book/book.module /^function book_node_export($node, $children = '') {$/;" f
book_node_type $DRUPAL_ROOT/modules/book/book.module /^function book_node_type($op, $type) {$/;" f
book_nodeapi $DRUPAL_ROOT/modules/book/book.module /^function book_nodeapi(&$node, $op, $teaser, $page) {$/;" f
book_outline $DRUPAL_ROOT/modules/book/book.pages.inc /^function book_outline($node) {$/;" f
book_outline_form $DRUPAL_ROOT/modules/book/book.pages.inc /^function book_outline_form(&$form_state, $node) {$/;" f
book_outline_form_submit $DRUPAL_ROOT/modules/book/book.pages.inc /^function book_outline_form_submit($form, &$form_state) {$/;" f
book_perm $DRUPAL_ROOT/modules/book/book.module /^function book_perm() {$/;" f
book_prev $DRUPAL_ROOT/modules/book/book.module /^function book_prev($book_link) {$/;" f
book_remove_button_submit $DRUPAL_ROOT/modules/book/book.pages.inc /^function book_remove_button_submit($form, &$form_state) {$/;" f
book_remove_form $DRUPAL_ROOT/modules/book/book.pages.inc /^function book_remove_form(&$form_state, $node) {$/;" f
book_remove_form_submit $DRUPAL_ROOT/modules/book/book.pages.inc /^function book_remove_form_submit($form, &$form_state) {$/;" f
book_render $DRUPAL_ROOT/modules/book/book.pages.inc /^function book_render() {$/;" f
book_schema $DRUPAL_ROOT/modules/book/book.install /^function book_schema() {$/;" f
book_theme $DRUPAL_ROOT/modules/book/book.module /^function book_theme() {$/;" f
book_toc $DRUPAL_ROOT/modules/book/book.module /^function book_toc($bid, $exclude = array(), $depth_limit) {$/;" f
book_type_is_allowed $DRUPAL_ROOT/modules/book/book.module /^function book_type_is_allowed($type) {$/;" f
book_uninstall $DRUPAL_ROOT/modules/book/book.install /^function book_uninstall() {$/;" f
book_update_6000 $DRUPAL_ROOT/modules/book/book.install /^function book_update_6000() {$/;" f
book_update_bid $DRUPAL_ROOT/modules/book/book.module /^function book_update_bid($book_link) {$/;" f
bootstrap.inc $DRUPAL_ROOT/includes/bootstrap.inc 1;" F
bootstrap_hooks $DRUPAL_ROOT/includes/bootstrap.inc /^function bootstrap_hooks() {$/;" f
bootstrap_invoke_all $DRUPAL_ROOT/includes/bootstrap.inc /^function bootstrap_invoke_all($hook) {$/;" f
box.tpl.php $DRUPAL_ROOT/modules/system/box.tpl.php 1;" F
box.tpl.php $DRUPAL_ROOT/themes/bluemarine/box.tpl.php 1;" F
box.tpl.php $DRUPAL_ROOT/themes/pushbutton/box.tpl.php 1;" F
but $DRUPAL_ROOT/includes/database.inc /^ * This is usually an identity function but if a key\/index uses a column prefix$/;" f
by $DRUPAL_ROOT/includes/xmlrpcs.inc /^ \/\/ Has this method been mapped to a Drupal function by us or by modules?$/;" f
cache-install.inc $DRUPAL_ROOT/includes/cache-install.inc 1;" F
cache.inc $DRUPAL_ROOT/includes/cache.inc 1;" F
cache_clear_all $DRUPAL_ROOT/includes/cache-install.inc /^function cache_clear_all($cid = NULL, $table = NULL, $wildcard = FALSE) {$/;" f
cache_clear_all $DRUPAL_ROOT/includes/cache.inc /^function cache_clear_all($cid = NULL, $table = NULL, $wildcard = FALSE) {$/;" f
cache_get $DRUPAL_ROOT/includes/cache-install.inc /^function cache_get($key, $table = 'cache') {$/;" f
cache_get $DRUPAL_ROOT/includes/cache.inc /^function cache_get($cid, $table = 'cache') {$/;" f
cache_set $DRUPAL_ROOT/includes/cache-install.inc /^function cache_set($cid, $data, $table = 'cache', $expire = CACHE_PERMANENT, $headers = NULL) {$/;" f
cache_set $DRUPAL_ROOT/includes/cache.inc /^function cache_set($cid, $data, $table = 'cache', $expire = CACHE_PERMANENT, $headers = NULL) {$/;" f
call $DRUPAL_ROOT/includes/actions.inc /^ * using the function call $function($object, $context, $a1, $a2)$/;" f
call $DRUPAL_ROOT/includes/batch.inc /^ \/\/ Build the 'context' array, execute the function call,$/;" f
call $DRUPAL_ROOT/includes/bootstrap.inc /^ \/\/ function call, since check_plain() may be called hundreds of times during$/;" f
callback $DRUPAL_ROOT/modules/book/book.module /^ * A function callback to be called upon visiting a node in the tree.$/;" f
calls $DRUPAL_ROOT/includes/form.inc /^ * - 'operations': Array of function calls to be performed.$/;" f
can $DRUPAL_ROOT/includes/bootstrap.inc /^ \/\/ another so PHP's header() function can deal with duplicate$/;" f
can $DRUPAL_ROOT/includes/common.inc /^ * 'medium' and 'large' date formats. This function can handle these formats,$/;" f
can $DRUPAL_ROOT/includes/common.inc /^ * This function can be called as long the headers aren't sent.$/;" f
can $DRUPAL_ROOT/includes/common.inc /^ * This function can be used to retrieve a schema specification in$/;" f
can $DRUPAL_ROOT/includes/database.inc /^ * If it is necessary to use external databases in a project, this function can$/;" f
can $DRUPAL_ROOT/includes/theme.inc /^ * Additionally, the theme() function can take an array of theme$/;" f
can $DRUPAL_ROOT/update.php /^ * An update function can force the current and all later updates for this$/;" f
cannot $DRUPAL_ROOT/includes/common.inc /^ * - Rows with the 'tabledrag-leaf' class cannot have child rows.$/;" c
cannot $DRUPAL_ROOT/includes/common.inc /^ * - Rows with the 'tabledrag-root' class cannot be nested under a parent row.$/;" c
chameleon.theme $DRUPAL_ROOT/themes/chameleon/chameleon.theme 1;" F
chameleon_comment $DRUPAL_ROOT/themes/chameleon/chameleon.theme /^function chameleon_comment($comment, $node, $links = array()) {$/;" f
chameleon_help $DRUPAL_ROOT/themes/chameleon/chameleon.theme /^function chameleon_help() {$/;" f
chameleon_node $DRUPAL_ROOT/themes/chameleon/chameleon.theme /^function chameleon_node($node, $teaser = 0, $page = 0) {$/;" f
chameleon_page $DRUPAL_ROOT/themes/chameleon/chameleon.theme /^function chameleon_page($content, $show_blocks = TRUE, $show_messages = TRUE) {$/;" f
chameleon_theme $DRUPAL_ROOT/themes/chameleon/chameleon.theme /^function chameleon_theme($existing, $type, $theme, $path) {$/;" f
check_file $DRUPAL_ROOT/includes/common.inc /^function check_file($filename) {$/;" f
check_markup $DRUPAL_ROOT/modules/filter/filter.module /^function check_markup($text, $format = FILTER_FORMAT_DEFAULT, $check = TRUE) {$/;" f
check_plain $DRUPAL_ROOT/includes/bootstrap.inc /^function check_plain($text) {$/;" f
check_url $DRUPAL_ROOT/includes/common.inc /^function check_url($uri) {$/;" f
checks $DRUPAL_ROOT/modules/locale/locale.module /^ * This function checks all JavaScript files currently added via drupal_add_js()$/;" f
clears $DRUPAL_ROOT/includes/form.inc /^ * This function clears $_POST and passes the empty $_POST to the form_builder.$/;" f
code $DRUPAL_ROOT/includes/database.inc /^ * Wrapper for database interface code.$/;" i
code $DRUPAL_ROOT/includes/database.mysql.inc /^ * Database interface code for MySQL database servers.$/;" i
code $DRUPAL_ROOT/includes/database.mysqli.inc /^ * Database interface code for MySQL database servers using the mysqli client libraries. mysqli is included in PHP 5 by default and allows developers to use the advanced features of MySQL 4.1.x, 5.0.x and beyond.$/;" i
code $DRUPAL_ROOT/includes/database.pgsql.inc /^ * Database interface code for PostgreSQL database servers.$/;" i
code-clean.sh $DRUPAL_ROOT/scripts/code-clean.sh 1;" F
code-style.pl $DRUPAL_ROOT/scripts/code-style.pl 1;" F
collapse.js $DRUPAL_ROOT/misc/collapse.js 1;" F
color.inc $DRUPAL_ROOT/themes/garland/color/color.inc 1;" F
color.inc $DRUPAL_ROOT/themes/garland/minnelli/color/color.inc 1;" F
color.install $DRUPAL_ROOT/modules/color/color.install 1;" F
color.js $DRUPAL_ROOT/modules/color/color.js 1;" F
color.module $DRUPAL_ROOT/modules/color/color.module 1;" F
color_form_alter $DRUPAL_ROOT/modules/color/color.module /^function color_form_alter(&$form, $form_state, $form_id) {$/;" f
color_get_info $DRUPAL_ROOT/modules/color/color.module /^function color_get_info($theme) {$/;" f
color_get_palette $DRUPAL_ROOT/modules/color/color.module /^function color_get_palette($theme, $default = false) {$/;" f
color_help $DRUPAL_ROOT/modules/color/color.module /^function color_help($path, $arg) {$/;" f
color_requirements $DRUPAL_ROOT/modules/color/color.install /^function color_requirements($phase) {$/;" f
color_scheme_form $DRUPAL_ROOT/modules/color/color.module /^function color_scheme_form(&$form_state, $theme) {$/;" f
color_scheme_form_submit $DRUPAL_ROOT/modules/color/color.module /^function color_scheme_form_submit($form, &$form_state) {$/;" f
color_scheme_form_validate $DRUPAL_ROOT/modules/color/color.module /^function color_scheme_form_validate($form, &$form_state) {$/;" f
color_theme $DRUPAL_ROOT/modules/color/color.module /^function color_theme() {$/;" f
color_update_6001 $DRUPAL_ROOT/modules/color/color.install /^function color_update_6001() {$/;" f
comment-folded.tpl.php $DRUPAL_ROOT/modules/comment/comment-folded.tpl.php 1;" F
comment-wrapper.tpl.php $DRUPAL_ROOT/modules/comment/comment-wrapper.tpl.php 1;" F
comment.admin.inc $DRUPAL_ROOT/modules/comment/comment.admin.inc 1;" F
comment.install $DRUPAL_ROOT/modules/comment/comment.install 1;" F
comment.js $DRUPAL_ROOT/modules/comment/comment.js 1;" F
comment.module $DRUPAL_ROOT/modules/comment/comment.module 1;" F
comment.pages.inc $DRUPAL_ROOT/modules/comment/comment.pages.inc 1;" F
comment.tpl.php $DRUPAL_ROOT/modules/comment/comment.tpl.php 1;" F
comment.tpl.php $DRUPAL_ROOT/themes/bluemarine/comment.tpl.php 1;" F
comment.tpl.php $DRUPAL_ROOT/themes/garland/comment.tpl.php 1;" F
comment.tpl.php $DRUPAL_ROOT/themes/pushbutton/comment.tpl.php 1;" F
comment_access $DRUPAL_ROOT/modules/comment/comment.module /^function comment_access($op, $comment) {$/;" f
comment_action_info $DRUPAL_ROOT/modules/comment/comment.module /^function comment_action_info() {$/;" f
comment_admin $DRUPAL_ROOT/modules/comment/comment.admin.inc /^function comment_admin($type = 'new') {$/;" f
comment_admin_overview $DRUPAL_ROOT/modules/comment/comment.admin.inc /^function comment_admin_overview($type = 'new', $arg) {$/;" f
comment_admin_overview_submit $DRUPAL_ROOT/modules/comment/comment.admin.inc /^function comment_admin_overview_submit($form, &$form_state) {$/;" f
comment_admin_overview_validate $DRUPAL_ROOT/modules/comment/comment.admin.inc /^function comment_admin_overview_validate($form, &$form_state) {$/;" f
comment_block $DRUPAL_ROOT/modules/comment/comment.module /^function comment_block($op = 'list', $delta = 0) {$/;" f
comment_confirm_delete $DRUPAL_ROOT/modules/comment/comment.admin.inc /^function comment_confirm_delete(&$form_state, $comment) {$/;" f
comment_confirm_delete_submit $DRUPAL_ROOT/modules/comment/comment.admin.inc /^function comment_confirm_delete_submit($form, &$form_state) {$/;" f
comment_controls $DRUPAL_ROOT/modules/comment/comment.module /^function comment_controls(&$form_state, $mode = COMMENT_MODE_THREADED_EXPANDED, $order = COMMENT_ORDER_NEWEST_FIRST, $comments_per_page = 50) {$/;" f
comment_controls_submit $DRUPAL_ROOT/modules/comment/comment.module /^function comment_controls_submit($form, &$form_state) {$/;" f
comment_delete $DRUPAL_ROOT/modules/comment/comment.admin.inc /^function comment_delete($cid = NULL) {$/;" f
comment_edit $DRUPAL_ROOT/modules/comment/comment.pages.inc /^function comment_edit($cid) {$/;" f
comment_enable $DRUPAL_ROOT/modules/comment/comment.install /^function comment_enable() {$/;" f
comment_form $DRUPAL_ROOT/modules/comment/comment.module /^function comment_form(&$form_state, $edit, $title = NULL) {$/;" f
comment_form_add_preview $DRUPAL_ROOT/modules/comment/comment.module /^function comment_form_add_preview($form, &$form_state) {$/;" f
comment_form_alter $DRUPAL_ROOT/modules/comment/comment.module /^function comment_form_alter(&$form, $form_state, $form_id) {$/;" f
comment_form_box $DRUPAL_ROOT/modules/comment/comment.module /^function comment_form_box($edit, $title = NULL) {$/;" f
comment_form_submit $DRUPAL_ROOT/modules/comment/comment.module /^function comment_form_submit($form, &$form_state) {$/;" f
comment_form_validate $DRUPAL_ROOT/modules/comment/comment.module /^function comment_form_validate($form, &$form_state) {$/;" f
comment_get_recent $DRUPAL_ROOT/modules/comment/comment.module /^function comment_get_recent($number = 10) {$/;" f
comment_help $DRUPAL_ROOT/modules/comment/comment.module /^function comment_help($path, $arg) {$/;" f
comment_hook_info $DRUPAL_ROOT/modules/comment/comment.module /^function comment_hook_info() {$/;" f
comment_invoke_comment $DRUPAL_ROOT/modules/comment/comment.module /^function comment_invoke_comment(&$comment, $op) {$/;" f
comment_link $DRUPAL_ROOT/modules/comment/comment.module /^function comment_link($type, $node = NULL, $teaser = FALSE) {$/;" f
comment_links $DRUPAL_ROOT/modules/comment/comment.module /^function comment_links($comment, $return = 1) {$/;" f
comment_menu $DRUPAL_ROOT/modules/comment/comment.module /^function comment_menu() {$/;" f
comment_multiple_delete_confirm $DRUPAL_ROOT/modules/comment/comment.admin.inc /^function comment_multiple_delete_confirm(&$form_state) {$/;" f
comment_multiple_delete_confirm_submit $DRUPAL_ROOT/modules/comment/comment.admin.inc /^function comment_multiple_delete_confirm_submit($form, &$form_state) {$/;" f
comment_new_page_count $DRUPAL_ROOT/modules/comment/comment.module /^function comment_new_page_count($num_comments, $new_replies, $node) {$/;" f
comment_node_type $DRUPAL_ROOT/modules/comment/comment.module /^function comment_node_type($op, $info) {$/;" f
comment_node_url $DRUPAL_ROOT/modules/comment/comment.module /^function comment_node_url() {$/;" f
comment_nodeapi $DRUPAL_ROOT/modules/comment/comment.module /^function comment_nodeapi(&$node, $op, $arg = 0) {$/;" f
comment_num_all $DRUPAL_ROOT/modules/comment/comment.module /^function comment_num_all($nid) {$/;" f
comment_num_new $DRUPAL_ROOT/modules/comment/comment.module /^function comment_num_new($nid, $timestamp = 0) {$/;" f
comment_num_replies $DRUPAL_ROOT/modules/comment/comment.module /^function comment_num_replies($pid) {$/;" f
comment_operations $DRUPAL_ROOT/modules/comment/comment.module /^function comment_operations($action = NULL) {$/;" f
comment_perm $DRUPAL_ROOT/modules/comment/comment.module /^function comment_perm() {$/;" f
comment_publish_action $DRUPAL_ROOT/modules/comment/comment.module /^function comment_publish_action($comment, $context = array()) {$/;" f
comment_render $DRUPAL_ROOT/modules/comment/comment.module /^function comment_render($node, $cid = 0) {$/;" f
comment_reply $DRUPAL_ROOT/modules/comment/comment.pages.inc /^function comment_reply($node, $pid = NULL) {$/;" f
comment_save $DRUPAL_ROOT/modules/comment/comment.module /^function comment_save($edit) {$/;" f
comment_schema $DRUPAL_ROOT/modules/comment/comment.install /^function comment_schema() {$/;" f
comment_theme $DRUPAL_ROOT/modules/comment/comment.module /^function comment_theme() {$/;" f
comment_unpublish_action $DRUPAL_ROOT/modules/comment/comment.module /^function comment_unpublish_action($comment, $context = array()) {$/;" f
comment_unpublish_by_keyword_action $DRUPAL_ROOT/modules/comment/comment.module /^function comment_unpublish_by_keyword_action($comment, $context) {$/;" f
comment_unpublish_by_keyword_action_form $DRUPAL_ROOT/modules/comment/comment.module /^function comment_unpublish_by_keyword_action_form($context) {$/;" f
comment_unpublish_by_keyword_action_submit $DRUPAL_ROOT/modules/comment/comment.module /^function comment_unpublish_by_keyword_action_submit($form, $form_state) {$/;" f
comment_update_1 $DRUPAL_ROOT/modules/comment/comment.install /^function comment_update_1() {$/;" f
comment_update_6001 $DRUPAL_ROOT/modules/comment/comment.install /^function comment_update_6001() {$/;" f
comment_update_6002 $DRUPAL_ROOT/modules/comment/comment.install /^function comment_update_6002() {$/;" f
comment_update_6003 $DRUPAL_ROOT/modules/comment/comment.install /^function comment_update_6003() {$/;" f
comment_user $DRUPAL_ROOT/modules/comment/comment.module /^function comment_user($type, $edit, &$user, $category = NULL) {$/;" f
comment_validate $DRUPAL_ROOT/modules/comment/comment.module /^function comment_validate($edit) {$/;" f
common.inc $DRUPAL_ROOT/includes/common.inc 1;" F
completely $DRUPAL_ROOT/modules/update/update.module /^ * Note: this function completely ignores the {cache_update}.headers field$/;" f
conf_init $DRUPAL_ROOT/includes/bootstrap.inc /^function conf_init() {$/;" f
conf_path $DRUPAL_ROOT/includes/bootstrap.inc /^function conf_path($require_settings = TRUE, $reset = FALSE) {$/;" f
confirm_form $DRUPAL_ROOT/modules/system/system.module /^function confirm_form($form, $question, $path, $description = NULL, $yes = NULL, $no = NULL, $name = 'confirm') {$/;" f
contact.admin.inc $DRUPAL_ROOT/modules/contact/contact.admin.inc 1;" F
contact.install $DRUPAL_ROOT/modules/contact/contact.install 1;" F
contact.module $DRUPAL_ROOT/modules/contact/contact.module 1;" F
contact.pages.inc $DRUPAL_ROOT/modules/contact/contact.pages.inc 1;" F
contact_admin_categories $DRUPAL_ROOT/modules/contact/contact.admin.inc /^function contact_admin_categories() {$/;" f
contact_admin_delete $DRUPAL_ROOT/modules/contact/contact.admin.inc /^function contact_admin_delete(&$form_state, $contact) {$/;" f
contact_admin_delete_submit $DRUPAL_ROOT/modules/contact/contact.admin.inc /^function contact_admin_delete_submit($form, &$form_state) {$/;" f
contact_admin_edit $DRUPAL_ROOT/modules/contact/contact.admin.inc /^function contact_admin_edit($form_state = array(), $op, $contact = NULL) {$/;" f
contact_admin_edit_submit $DRUPAL_ROOT/modules/contact/contact.admin.inc /^function contact_admin_edit_submit($form, &$form_state) {$/;" f
contact_admin_edit_validate $DRUPAL_ROOT/modules/contact/contact.admin.inc /^function contact_admin_edit_validate($form, &$form_state) {$/;" f
contact_admin_settings $DRUPAL_ROOT/modules/contact/contact.admin.inc /^function contact_admin_settings() {$/;" f
contact_help $DRUPAL_ROOT/modules/contact/contact.module /^function contact_help($path, $arg) {$/;" f
contact_install $DRUPAL_ROOT/modules/contact/contact.install /^function contact_install() {$/;" f
contact_load $DRUPAL_ROOT/modules/contact/contact.module /^function contact_load($cid) {$/;" f
contact_mail $DRUPAL_ROOT/modules/contact/contact.module /^function contact_mail($key, &$message, $params) {$/;" f
contact_mail_page $DRUPAL_ROOT/modules/contact/contact.pages.inc /^function contact_mail_page() {$/;" f
contact_mail_page_submit $DRUPAL_ROOT/modules/contact/contact.pages.inc /^function contact_mail_page_submit($form, &$form_state) {$/;" f
contact_mail_page_validate $DRUPAL_ROOT/modules/contact/contact.pages.inc /^function contact_mail_page_validate($form, &$form_state) {$/;" f
contact_mail_user $DRUPAL_ROOT/modules/contact/contact.pages.inc /^function contact_mail_user(&$form_state, $recipient) {$/;" f
contact_mail_user_submit $DRUPAL_ROOT/modules/contact/contact.pages.inc /^function contact_mail_user_submit($form, &$form_state) {$/;" f
contact_menu $DRUPAL_ROOT/modules/contact/contact.module /^function contact_menu() {$/;" f
contact_perm $DRUPAL_ROOT/modules/contact/contact.module /^function contact_perm() {$/;" f
contact_schema $DRUPAL_ROOT/modules/contact/contact.install /^function contact_schema() {$/;" f
contact_site_page $DRUPAL_ROOT/modules/contact/contact.pages.inc /^function contact_site_page() {$/;" f
contact_uninstall $DRUPAL_ROOT/modules/contact/contact.install /^function contact_uninstall() {$/;" f
contact_user $DRUPAL_ROOT/modules/contact/contact.module /^function contact_user($type, &$edit, &$user, $category = NULL) {$/;" f
contact_user_page $DRUPAL_ROOT/modules/contact/contact.pages.inc /^function contact_user_page($account) {$/;" f
content_types.inc $DRUPAL_ROOT/modules/node/content_types.inc 1;" F
correctly $DRUPAL_ROOT/includes/common.inc /^ * This function correctly handles aliased paths, and adds an 'active' class$/;" f
cron-curl.sh $DRUPAL_ROOT/scripts/cron-curl.sh 1;" F
cron-lynx.sh $DRUPAL_ROOT/scripts/cron-lynx.sh 1;" F
cron.php $DRUPAL_ROOT/cron.php 1;" F
data $DRUPAL_ROOT/modules/update/update.fetch.inc /^ function data($parser, $data) {$/;" f
database.inc $DRUPAL_ROOT/includes/database.inc 1;" F
database.mysql-common.inc $DRUPAL_ROOT/includes/database.mysql-common.inc 1;" F
database.mysql.inc $DRUPAL_ROOT/includes/database.mysql.inc 1;" F
database.mysqli.inc $DRUPAL_ROOT/includes/database.mysqli.inc 1;" F
database.pgsql.inc $DRUPAL_ROOT/includes/database.pgsql.inc 1;" F
date_validate $DRUPAL_ROOT/includes/form.inc /^function date_validate($form) {$/;" f
db_add_column $DRUPAL_ROOT/update.php /^function db_add_column(&$ret, $table, $column, $type, $attributes = array()) {$/;" f
db_add_field $DRUPAL_ROOT/includes/database.mysql-common.inc /^function db_add_field(&$ret, $table, $field, $spec, $keys_new = array()) {$/;" f
db_add_field $DRUPAL_ROOT/includes/database.pgsql.inc /^function db_add_field(&$ret, $table, $field, $spec, $new_keys = array()) {$/;" f
db_add_index $DRUPAL_ROOT/includes/database.mysql-common.inc /^function db_add_index(&$ret, $table, $name, $fields) {$/;" f
db_add_index $DRUPAL_ROOT/includes/database.pgsql.inc /^function db_add_index(&$ret, $table, $name, $fields) {$/;" f
db_add_primary_key $DRUPAL_ROOT/includes/database.mysql-common.inc /^function db_add_primary_key(&$ret, $table, $fields) {$/;" f
db_add_primary_key $DRUPAL_ROOT/includes/database.pgsql.inc /^function db_add_primary_key(&$ret, $table, $fields) {$/;" f
db_add_unique_key $DRUPAL_ROOT/includes/database.mysql-common.inc /^function db_add_unique_key(&$ret, $table, $name, $fields) {$/;" f
db_add_unique_key $DRUPAL_ROOT/includes/database.pgsql.inc /^function db_add_unique_key(&$ret, $table, $name, $fields) {$/;" f
db_affected_rows $DRUPAL_ROOT/includes/database.mysql.inc /^function db_affected_rows() {$/;" f
db_affected_rows $DRUPAL_ROOT/includes/database.mysqli.inc /^function db_affected_rows() {$/;" f
db_affected_rows $DRUPAL_ROOT/includes/database.pgsql.inc /^function db_affected_rows() {$/;" f
db_change_column $DRUPAL_ROOT/update.php /^function db_change_column(&$ret, $table, $column, $column_new, $type, $attributes = array()) {$/;" f