aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlu4nx2022-11-25 14:38:29 +0800
committerStefan Kangas2023-02-17 11:20:42 +0100
commit5d05ea803e9996c4c1edbe0fa0f6f5b05d2ffc87 (patch)
treebe0fad63b9df6d2dbbefd8d1e787fb00304bda3c
parent22fb5ff5126dc8bb01edaa0252829d853afb284f (diff)
downloademacs-5d05ea803e9996c4c1edbe0fa0f6f5b05d2ffc87.tar.gz
emacs-5d05ea803e9996c4c1edbe0fa0f6f5b05d2ffc87.zip
Fixed ctags local command execute vulnerability
* lib-src/etags.c: (clean_matched_file_tag): New function (do_move_file): New function (readline_internal): Add `leave_cr` parameter, if true, include the \r character * test/manual/etags/CTAGS.good_crlf: New file * test/manual/etags/CTAGS.good_update: New file * test/manual/etags/crlf: New file * test/manual/etags/Makefile: Add `ctags -u` test cases (cherry picked from commit d48bb4874bc6cd3e69c7a15fc3c91cc141025c51)
-rw-r--r--lib-src/etags.c149
-rw-r--r--test/manual/etags/CTAGS.good_crlf4484
-rw-r--r--test/manual/etags/CTAGS.good_update4483
-rw-r--r--test/manual/etags/Makefile11
-rw-r--r--test/manual/etags/crlf2
5 files changed, 9093 insertions, 36 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c
index f665f35fa60..c9c32691016 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -382,7 +382,7 @@ static void just_read_file (FILE *);
382 382
383static language *get_language_from_langname (const char *); 383static language *get_language_from_langname (const char *);
384static void readline (linebuffer *, FILE *); 384static void readline (linebuffer *, FILE *);
385static ptrdiff_t readline_internal (linebuffer *, FILE *, char const *); 385static ptrdiff_t readline_internal (linebuffer *, FILE *, char const *, const bool);
386static bool nocase_tail (const char *); 386static bool nocase_tail (const char *);
387static void get_tag (char *, char **); 387static void get_tag (char *, char **);
388static void get_lispy_tag (char *); 388static void get_lispy_tag (char *);
@@ -406,7 +406,9 @@ static void free_fdesc (fdesc *);
406static void pfnote (char *, bool, char *, ptrdiff_t, intmax_t, intmax_t); 406static void pfnote (char *, bool, char *, ptrdiff_t, intmax_t, intmax_t);
407static void invalidate_nodes (fdesc *, node **); 407static void invalidate_nodes (fdesc *, node **);
408static void put_entries (node *); 408static void put_entries (node *);
409static void clean_matched_file_tag (char const * const, char const * const);
409 410
411static void do_move_file (const char *, const char *);
410static char *concat (const char *, const char *, const char *); 412static char *concat (const char *, const char *, const char *);
411static char *skip_spaces (char *); 413static char *skip_spaces (char *);
412static char *skip_non_spaces (char *); 414static char *skip_non_spaces (char *);
@@ -1339,7 +1341,7 @@ main (int argc, char **argv)
1339 if (parsing_stdin) 1341 if (parsing_stdin)
1340 fatal ("cannot parse standard input " 1342 fatal ("cannot parse standard input "
1341 "AND read file names from it"); 1343 "AND read file names from it");
1342 while (readline_internal (&filename_lb, stdin, "-") > 0) 1344 while (readline_internal (&filename_lb, stdin, "-", false) > 0)
1343 process_file_name (filename_lb.buffer, lang); 1345 process_file_name (filename_lb.buffer, lang);
1344 } 1346 }
1345 else 1347 else
@@ -1387,9 +1389,6 @@ main (int argc, char **argv)
1387 /* From here on, we are in (CTAGS && !cxref_style) */ 1389 /* From here on, we are in (CTAGS && !cxref_style) */
1388 if (update) 1390 if (update)
1389 { 1391 {
1390 char *cmd =
1391 xmalloc (strlen (tagfile) + whatlen_max +
1392 sizeof "mv..OTAGS;grep -Fv '\t\t' OTAGS >;rm OTAGS");
1393 for (i = 0; i < current_arg; ++i) 1392 for (i = 0; i < current_arg; ++i)
1394 { 1393 {
1395 switch (argbuffer[i].arg_type) 1394 switch (argbuffer[i].arg_type)
@@ -1400,17 +1399,8 @@ main (int argc, char **argv)
1400 default: 1399 default:
1401 continue; /* the for loop */ 1400 continue; /* the for loop */
1402 } 1401 }
1403 char *z = stpcpy (cmd, "mv "); 1402 clean_matched_file_tag (tagfile, argbuffer[i].what);
1404 z = stpcpy (z, tagfile);
1405 z = stpcpy (z, " OTAGS;grep -Fv '\t");
1406 z = stpcpy (z, argbuffer[i].what);
1407 z = stpcpy (z, "\t' OTAGS >");
1408 z = stpcpy (z, tagfile);
1409 strcpy (z, ";rm OTAGS");
1410 if (system (cmd) != EXIT_SUCCESS)
1411 fatal ("failed to execute shell command");
1412 } 1403 }
1413 free (cmd);
1414 append_to_tagfile = true; 1404 append_to_tagfile = true;
1415 } 1405 }
1416 1406
@@ -1439,6 +1429,51 @@ main (int argc, char **argv)
1439 return EXIT_SUCCESS; 1429 return EXIT_SUCCESS;
1440} 1430}
1441 1431
1432/*
1433 * Equivalent to: mv tags OTAGS;grep -Fv ' filename ' OTAGS >tags;rm OTAGS
1434 */
1435static void
1436clean_matched_file_tag (const char* tagfile, const char* match_file_name)
1437{
1438 FILE *otags_f = fopen ("OTAGS", "wb");
1439 FILE *tag_f = fopen (tagfile, "rb");
1440
1441 if (otags_f == NULL)
1442 pfatal ("OTAGS");
1443
1444 if (tag_f == NULL)
1445 pfatal (tagfile);
1446
1447 int buf_len = strlen (match_file_name) + sizeof ("\t\t ") + 1;
1448 char *buf = xmalloc (buf_len);
1449 snprintf (buf, buf_len, "\t%s\t", match_file_name);
1450
1451 linebuffer line;
1452 linebuffer_init (&line);
1453 while (readline_internal (&line, tag_f, tagfile, true) > 0)
1454 {
1455 if (ferror (tag_f))
1456 pfatal (tagfile);
1457
1458 if (strstr (line.buffer, buf) == NULL)
1459 {
1460 fprintf (otags_f, "%s\n", line.buffer);
1461 if (ferror (tag_f))
1462 pfatal (tagfile);
1463 }
1464 }
1465 free (buf);
1466 free (line.buffer);
1467
1468 if (fclose (otags_f) == EOF)
1469 pfatal ("OTAGS");
1470
1471 if (fclose (tag_f) == EOF)
1472 pfatal (tagfile);
1473
1474 do_move_file ("OTAGS", tagfile);
1475 return;
1476}
1442 1477
1443/* 1478/*
1444 * Return a compressor given the file name. If EXTPTR is non-zero, 1479 * Return a compressor given the file name. If EXTPTR is non-zero,
@@ -1822,7 +1857,7 @@ find_entries (FILE *inf)
1822 1857
1823 /* Else look for sharp-bang as the first two characters. */ 1858 /* Else look for sharp-bang as the first two characters. */
1824 if (parser == NULL 1859 if (parser == NULL
1825 && readline_internal (&lb, inf, infilename) > 0 1860 && readline_internal (&lb, inf, infilename, false) > 0
1826 && lb.len >= 2 1861 && lb.len >= 2
1827 && lb.buffer[0] == '#' 1862 && lb.buffer[0] == '#'
1828 && lb.buffer[1] == '!') 1863 && lb.buffer[1] == '!')
@@ -6861,7 +6896,7 @@ analyze_regex (char *regex_arg)
6861 if (regexfp == NULL) 6896 if (regexfp == NULL)
6862 pfatal (regexfile); 6897 pfatal (regexfile);
6863 linebuffer_init (&regexbuf); 6898 linebuffer_init (&regexbuf);
6864 while (readline_internal (&regexbuf, regexfp, regexfile) > 0) 6899 while (readline_internal (&regexbuf, regexfp, regexfile, false) > 0)
6865 analyze_regex (regexbuf.buffer); 6900 analyze_regex (regexbuf.buffer);
6866 free (regexbuf.buffer); 6901 free (regexbuf.buffer);
6867 if (fclose (regexfp) != 0) 6902 if (fclose (regexfp) != 0)
@@ -7209,11 +7244,13 @@ get_lispy_tag (register char *bp)
7209 7244
7210/* 7245/*
7211 * Read a line of text from `stream' into `lbp', excluding the 7246 * Read a line of text from `stream' into `lbp', excluding the
7212 * newline or CR-NL, if any. Return the number of characters read from 7247 * newline or CR-NL (if `leave_cr` is false), if any. Return the
7213 * `stream', which is the length of the line including the newline. 7248 * number of characters read from `stream', which is the length
7249 * of the line including the newline.
7214 * 7250 *
7215 * On DOS or Windows we do not count the CR character, if any before the 7251 * On DOS or Windows, if `leave_cr` is false, we do not count the
7216 * NL, in the returned length; this mirrors the behavior of Emacs on those 7252 * CR character, if any before the NL, in the returned length;
7253 * this mirrors the behavior of Emacs on those
7217 * platforms (for text files, it translates CR-NL to NL as it reads in the 7254 * platforms (for text files, it translates CR-NL to NL as it reads in the
7218 * file). 7255 * file).
7219 * 7256 *
@@ -7221,7 +7258,7 @@ get_lispy_tag (register char *bp)
7221 * appended to `filebuf'. 7258 * appended to `filebuf'.
7222 */ 7259 */
7223static ptrdiff_t 7260static ptrdiff_t
7224readline_internal (linebuffer *lbp, FILE *stream, char const *filename) 7261readline_internal (linebuffer *lbp, FILE *stream, char const *filename, const bool leave_cr)
7225{ 7262{
7226 char *buffer = lbp->buffer; 7263 char *buffer = lbp->buffer;
7227 char *p = lbp->buffer; 7264 char *p = lbp->buffer;
@@ -7251,19 +7288,19 @@ readline_internal (linebuffer *lbp, FILE *stream, char const *filename)
7251 break; 7288 break;
7252 } 7289 }
7253 if (c == '\n') 7290 if (c == '\n')
7254 { 7291 {
7255 if (p > buffer && p[-1] == '\r') 7292 if (!leave_cr && p > buffer && p[-1] == '\r')
7256 { 7293 {
7257 p -= 1; 7294 p -= 1;
7258 chars_deleted = 2; 7295 chars_deleted = 2;
7259 } 7296 }
7260 else 7297 else
7261 { 7298 {
7262 chars_deleted = 1; 7299 chars_deleted = 1;
7263 } 7300 }
7264 *p = '\0'; 7301 *p = '\0';
7265 break; 7302 break;
7266 } 7303 }
7267 *p++ = c; 7304 *p++ = c;
7268 } 7305 }
7269 lbp->len = p - buffer; 7306 lbp->len = p - buffer;
@@ -7294,7 +7331,7 @@ static void
7294readline (linebuffer *lbp, FILE *stream) 7331readline (linebuffer *lbp, FILE *stream)
7295{ 7332{
7296 linecharno = charno; /* update global char number of line start */ 7333 linecharno = charno; /* update global char number of line start */
7297 ptrdiff_t result = readline_internal (lbp, stream, infilename); 7334 ptrdiff_t result = readline_internal (lbp, stream, infilename, false);
7298 lineno += 1; /* increment global line number */ 7335 lineno += 1; /* increment global line number */
7299 charno += result; /* increment global char number */ 7336 charno += result; /* increment global char number */
7300 7337
@@ -7652,6 +7689,46 @@ etags_mktmp (void)
7652 return templt; 7689 return templt;
7653} 7690}
7654 7691
7692static void
7693do_move_file(const char *src_file, const char *dst_file)
7694{
7695 if (rename (src_file, dst_file) == 0)
7696 return;
7697
7698 FILE *src_f = fopen (src_file, "rb");
7699 FILE *dst_f = fopen (dst_file, "wb");
7700
7701 if (src_f == NULL)
7702 pfatal (src_file);
7703
7704 if (dst_f == NULL)
7705 pfatal (dst_file);
7706
7707 int c;
7708 while ((c = fgetc (src_f)) != EOF)
7709 {
7710 if (ferror (src_f))
7711 pfatal (src_file);
7712
7713 if (ferror (dst_f))
7714 pfatal (dst_file);
7715
7716 if (fputc (c, dst_f) == EOF)
7717 pfatal ("cannot write");
7718 }
7719
7720 if (fclose (src_f) == EOF)
7721 pfatal (src_file);
7722
7723 if (fclose (dst_f) == EOF)
7724 pfatal (dst_file);
7725
7726 if (unlink (src_file) == -1)
7727 pfatal ("unlink error");
7728
7729 return;
7730}
7731
7655/* Return a newly allocated string containing the file name of FILE 7732/* Return a newly allocated string containing the file name of FILE
7656 relative to the absolute directory DIR (which should end with a slash). */ 7733 relative to the absolute directory DIR (which should end with a slash). */
7657static char * 7734static char *
diff --git a/test/manual/etags/CTAGS.good_crlf b/test/manual/etags/CTAGS.good_crlf
new file mode 100644
index 00000000000..52bd564d6ca
--- /dev/null
+++ b/test/manual/etags/CTAGS.good_crlf
@@ -0,0 +1,4484 @@
1($_,$flag,$opt,$f,$r,@temp perl-src/yagrip.pl 8
2$0x80 c-src/sysdep.h 32
3${CHECKOBJS} make-src/Makefile /^${CHECKOBJS}: CFLAGS=-g3 -DNULLFREECHECK=0$/
4$domain php-src/lce_functions.php 175
5$filename php-src/lce_functions.php 174
6$ignore_ws php-src/lce_functions.php 171
7$memassign php-src/ptest.php 9
8$memassign_space php-src/ptest.php 10
9$member php-src/ptest.php 8
10$msgid_lc php-src/lce_functions.php 113
11$msgid php-src/lce_functions.php 107
12$msgid php-src/lce_functions.php 165
13$msgstr_lc php-src/lce_functions.php 114
14$msgstr php-src/lce_functions.php 108
15$msgstr php-src/lce_functions.php 166
16$po_entries php-src/lce_functions.php 172
17$poe_num php-src/lce_functions.php 173
18$por_a php-src/lce_functions.php 500
19$prefix php-src/lce_functions.php 72
20($prog,$_,@list perl-src/yagrip.pl 39
21$state php-src/lce_functions.php 170
22($string,$flag,@string,@temp,@last perl-src/yagrip.pl 40
23$sys_comment_lc php-src/lce_functions.php 116
24$sys_comment php-src/lce_functions.php 110
25$sys_comment php-src/lce_functions.php 168
26$SYS_##syscall_na c-src/sysdep.h 31
27$test php-src/ptest.php 12
28$unk_comment_lc php-src/lce_functions.php 117
29$unk_comment php-src/lce_functions.php 111
30$unk_comment php-src/lce_functions.php 169
31$user_comment_lc php-src/lce_functions.php 115
32$user_comment php-src/lce_functions.php 109
33$user_comment php-src/lce_functions.php 167
342const forth-src/test-forth.fth /^3 4 2constant 2const$/
352val forth-src/test-forth.fth /^2const 2value 2val$/
362var forth-src/test-forth.fth /^2variable 2var$/
37a0 c-src/emacs/src/lisp.h /^ Lisp_Object (*a0) (void);$/
38a1 c-src/emacs/src/lisp.h /^ Lisp_Object (*a1) (Lisp_Object);$/
39a2 c-src/emacs/src/lisp.h /^ Lisp_Object (*a2) (Lisp_Object, Lisp_Object)/
40a3 c-src/emacs/src/lisp.h /^ Lisp_Object (*a3) (Lisp_Object, Lisp_Object,/
41a4 c-src/emacs/src/lisp.h /^ Lisp_Object (*a4) (Lisp_Object, Lisp_Object,/
42a5 c-src/emacs/src/lisp.h /^ Lisp_Object (*a5) (Lisp_Object, Lisp_Object,/
43a6 c-src/emacs/src/lisp.h /^ Lisp_Object (*a6) (Lisp_Object, Lisp_Object,/
44a7 c-src/emacs/src/lisp.h /^ Lisp_Object (*a7) (Lisp_Object, Lisp_Object,/
45a8 c-src/emacs/src/lisp.h /^ Lisp_Object (*a8) (Lisp_Object, Lisp_Object,/
46aaaaaa c-src/h.h 111
47aaa c.c 249
48aaa c.c 269
49aa c.c 269
50aa c.c 279
51abbrev_all_caps c-src/abbrev.c 58
52abbrev-expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/
53abbrevs_changed c-src/abbrev.c 56
54abbrev-symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/
55abc c-src/h.h 33
56abc c-src/h.h 37
57ABC ruby-src/test1.ru 11
58Abort_Handler_Pointer/t ada-src/2ataspri.ads /^ type Abort_Handler_Pointer is access procedure /
59abort-recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("abort-recursive-edit", Fabort_recursive_ed/
60Abort_Task/p ada-src/2ataspri.adb /^ procedure Abort_Task (T : TCB_Ptr) is$/
61Abort_Task/p ada-src/2ataspri.ads /^ procedure Abort_Task (T : TCB_Ptr);$/
62Abort_Wrapper/p ada-src/2ataspri.adb /^ procedure Abort_Wrapper$/
63\aboveenvbreak tex-src/texinfo.tex /^\\def\\aboveenvbreak{{\\advance\\aboveenvskipamount by/
64abs/f ada-src/etags-test-for.ada /^ function "abs" (Right : Complex) return Real'/
65absolute_dirname c-src/etags.c /^absolute_dirname (char *file, char *dir)$/
66absolute_filename c-src/etags.c /^absolute_filename (char *file, char *dir)$/
67abt cp-src/c.C 55
68a c.c 152
69A c.c 162
70a c.c 180
71a c.c /^a ()$/
72a c.c /^a()$/
73accent_key_syms c-src/emacs/src/keyboard.c 4625
74access_keymap_keyremap c-src/emacs/src/keyboard.c /^access_keymap_keyremap (Lisp_Object map, Lisp_Obje/
75acc_pred_info merc-src/accumulator.m /^:- pred acc_pred_info(list(mer_type)::in, list(pro/
76acc_proc_info merc-src/accumulator.m /^:- pred acc_proc_info(list(prog_var)::in, prog_var/
77accu_assoc merc-src/accumulator.m /^:- pred accu_assoc(module_info::in, vartypes::in, /
78accu_assoc merc-src/accumulator.m /^:- type accu_assoc$/
79accu_base merc-src/accumulator.m /^:- type accu_base$/
80accu_before merc-src/accumulator.m /^:- pred accu_before(module_info::in, vartypes::in,/
81accu_case merc-src/accumulator.m /^:- type accu_case$/
82accu_construct_assoc merc-src/accumulator.m /^:- pred accu_construct_assoc(module_info::in, vart/
83accu_construct merc-src/accumulator.m /^:- pred accu_construct(module_info::in, vartypes::/
84accu_create_goal merc-src/accumulator.m /^:- pred accu_create_goal(accu_goal_id::in, list(pr/
85accu_divide_base_case merc-src/accumulator.m /^:- pred accu_divide_base_case(module_info::in, var/
86accu_goal_id merc-src/accumulator.m /^:- type accu_goal_id$/
87accu_goal_list merc-src/accumulator.m /^:- func accu_goal_list(list(accu_goal_id), accu_go/
88accu_goal_store merc-src/accumulator.m /^:- type accu_goal_store == goal_store(accu_goal_id/
89accu_has_heuristic merc-src/accumulator.m /^:- pred accu_has_heuristic(module_name::in, string/
90accu_heuristic merc-src/accumulator.m /^:- pred accu_heuristic(module_name::in, string::in/
91accu_is_associative merc-src/accumulator.m /^:- pred accu_is_associative(module_info::in, pred_/
92accu_is_update merc-src/accumulator.m /^:- pred accu_is_update(module_info::in, pred_id::i/
93acc_unification merc-src/accumulator.m /^:- pred acc_unification(pair(prog_var)::in, hlds_g/
94accu_process_assoc_set merc-src/accumulator.m /^:- pred accu_process_assoc_set(module_info::in, ac/
95accu_process_update_set merc-src/accumulator.m /^:- pred accu_process_update_set(module_info::in, a/
96accu_related merc-src/accumulator.m /^:- pred accu_related(module_info::in, vartypes::in/
97accu_rename merc-src/accumulator.m /^:- func accu_rename(list(accu_goal_id), accu_subst/
98accu_sets_init merc-src/accumulator.m /^:- pred accu_sets_init(accu_sets::out) is det.$/
99accu_sets merc-src/accumulator.m /^:- type accu_sets$/
100accu_stage1_2 merc-src/accumulator.m /^:- pred accu_stage1_2(module_info::in, vartypes::i/
101accu_stage1 merc-src/accumulator.m /^:- pred accu_stage1(module_info::in, vartypes::in,/
102accu_stage2 merc-src/accumulator.m /^:- pred accu_stage2(module_info::in, proc_info::in/
103accu_stage3 merc-src/accumulator.m /^:- pred accu_stage3(accu_goal_id::in, list(prog_va/
104accu_standardize merc-src/accumulator.m /^:- pred accu_standardize(hlds_goal::in, hlds_goal:/
105accu_store merc-src/accumulator.m /^:- pred accu_store(accu_case::in, hlds_goal::in,$/
106accu_subst merc-src/accumulator.m /^:- type accu_subst == map(prog_var, prog_var).$/
107accu_substs_init merc-src/accumulator.m /^:- pred accu_substs_init(list(prog_var)::in, prog_/
108accu_substs merc-src/accumulator.m /^:- type accu_substs$/
109accu_top_level merc-src/accumulator.m /^:- pred accu_top_level(top_level::in, hlds_goal::i/
110accu_transform_proc merc-src/accumulator.m /^:- pred accu_transform_proc(pred_proc_id::in, pred/
111accu_update merc-src/accumulator.m /^:- pred accu_update(module_info::in, vartypes::in,/
112accu_warning merc-src/accumulator.m /^:- type accu_warning$/
113acc_var_subst_init merc-src/accumulator.m /^:- pred acc_var_subst_init(list(prog_var)::in,$/
114/Acircumflex ps-src/rfc1245.ps /^\/Acircumflex \/Ecircumflex \/Aacute \/Edieresis \/Egra/
115A cp-src/c.C 117
116a cp-src/c.C 132
117A cp-src/c.C 39
118A cp-src/c.C 56
119A cp-src/c.C 57
120A cp-src/c.C 73
121~A cp-src/c.C /^A::~A() {}$/
122A cp-src/c.C /^void A::A() {}$/
123A cp-src/fail.C 23
124A cp-src/fail.C 7
125a c-src/h.h 103
126a c-src/h.h 40
127action prol-src/natded.prolog /^action(KeyVals):-$/
128\activedoublequote tex-src/texinfo.tex /^\\def\\activedoublequote{{\\tt \\char '042}}$/
129active_maps c-src/emacs/src/keyboard.c /^active_maps (Lisp_Object first_event)$/
130\activeparens tex-src/texinfo.tex /^\\def\\activeparens{%$/
131actout prol-src/natded.prolog /^actout('Text',Trees):-$/
132act prol-src/natded.prolog /^act(OutForm,OutSyn,Ws):-$/
133Ada_funcs c-src/etags.c /^Ada_funcs (FILE *inf)$/
134Ada_getit c-src/etags.c /^Ada_getit (FILE *inf, const char *name_qualifier)$/
135Ada_help c-src/etags.c 475
136ADASRC make-src/Makefile /^ADASRC=etags-test-for.ada 2ataspri.adb 2ataspri.ad/
137Ada_suffixes c-src/etags.c 473
138add_active prol-src/natded.prolog /^add_active([],Cat,Goal):-$/
139addArchs objc-src/PackInsp.m /^-(void)addArchs:(const char *)string$/
140add_command_key c-src/emacs/src/keyboard.c /^add_command_key (Lisp_Object key)$/
141add_edge prol-src/natded.prolog /^add_edge(Left,Right,Cat):-$/
142add_node c-src/etags.c /^add_node (node *np, node **cur_node_p)$/
143addnoise html-src/algrthms.html /^Adding Noise to the$/
144AddNullToNmStr pas-src/common.pas /^function AddNullToNmStr; (*($/
145addPOReader php-src/lce_functions.php /^ function addPOReader($d_name, &$por)$/
146add_regex c-src/etags.c /^add_regex (char *regexp_pattern, language *lang)$/
147ADDRESS c-src/emacs/src/gmalloc.c /^#define ADDRESS(B) ((void *) (((B) - 1) * BLOCKSIZ/
148Address_To_Call_State/f ada-src/2ataspri.adb /^ function Address_To_Call_State is new$/
149Address_To_TCB_Ptr/f ada-src/2ataspri.ads /^ function Address_To_TCB_Ptr is new$/
150address y-src/cccp.y 113
151add_user_signal c-src/emacs/src/keyboard.c /^add_user_signal (int sig, const char *name)$/
152#a-defer-word forth-src/test-forth.fth /^defer #a-defer-word$/
153adjust_point_for_property c-src/emacs/src/keyboard.c /^adjust_point_for_property (ptrdiff_t last_pt, bool/
154Advanced usage tex-src/gzip.texi /^@node Advanced usage, Environment, Invoking gzip, /
155a-forth-constant! forth-src/test-forth.fth /^99 constant a-forth-constant!$/
156(a-forth-constant forth-src/test-forth.fth /^constant (a-forth-constant$/
157:a-forth-dictionary-entry forth-src/test-forth.fth /^create :a-forth-dictionary-entry$/
158a-forth-value? forth-src/test-forth.fth /^55 value a-forth-value?$/
159a-forth-word forth-src/test-forth.fth /^: a-forth-word ( a b c -- )$/
160a-forth-word forth-src/test-forth.fth /^: a-forth-word ( a b c -- a*b+c ) + * ;$/
161\afourpaper tex-src/texinfo.tex /^\\def\\afourpaper{$/
162\afterenvbreak tex-src/texinfo.tex /^\\def\\afterenvbreak{\\endgraf \\ifdim\\lastskip<\\above/
163agent cp-src/clheir.hpp 75
164algorithms html-src/algrthms.html /^Description$/
165alias c-src/emacs/src/lisp.h 688
166alignas c-src/emacs/src/lisp.h /^# define alignas(alignment) \/* empty *\/$/
167align c-src/emacs/src/gmalloc.c /^align (size_t size)$/
168aligned_alloc c-src/emacs/src/gmalloc.c 1718
169aligned_alloc c-src/emacs/src/gmalloc.c 71
170aligned_alloc c-src/emacs/src/gmalloc.c /^aligned_alloc (size_t alignment, size_t size)$/
171_aligned_blocks c-src/emacs/src/gmalloc.c 1004
172_aligned_blocks_mutex c-src/emacs/src/gmalloc.c 518
173Aligned_Cons c-src/emacs/src/lisp.h 4670
174aligned c-src/emacs/src/gmalloc.c 199
175Aligned_String c-src/emacs/src/lisp.h 4676
176alignlist c-src/emacs/src/gmalloc.c 196
177ALIGNOF_STRUCT_LISP_VECTOR c-src/emacs/src/lisp.h 1378
178alive cp-src/conway.hpp 7
179all_kboards c-src/emacs/src/keyboard.c 86
180ALLOCATED_BEFORE_DUMPING c-src/emacs/src/gmalloc.c /^#define ALLOCATED_BEFORE_DUMPING(P) \\$/
181allocated c-src/emacs/src/regex.h 344
182allocate_kboard c-src/emacs/src/keyboard.c /^allocate_kboard (Lisp_Object type)$/
183ALLOCATE_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define ALLOCATE_PSEUDOVECTOR(type, field, tag) /
184ALLOCATE_ZEROED_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define ALLOCATE_ZEROED_PSEUDOVECTOR(type, field, /
185\alphaenumerate tex-src/texinfo.tex /^\\def\\alphaenumerate{\\enumerate{a}}$/
186aMANY c-src/emacs/src/lisp.h /^ Lisp_Object (*aMANY) (ptrdiff_t, Lisp_Object/
187analyze_regex c-src/etags.c /^analyze_regex (char *regex_arg)$/
188andkeyvalseq prol-src/natded.prolog /^andkeyvalseq(KeyVals) --> ['&'], keyvalseq(KeyVals/
189AND y-src/cccp.c 11
190an_extern_linkage c-src/h.h 44
191an_extern_linkage c-src/h.h 56
192an_extern_linkage_ptr c-src/h.h 43
193animals cp-src/c.C 126
194animals cp-src/c.C 130
195animals c-src/h.h 81
196(another-forth-word) forth-src/test-forth.fth /^: (another-forth-word) ( -- )$/
197ANSIC c-src/h.h 84
198ANSIC c-src/h.h 85
199any_kboard_state c-src/emacs/src/keyboard.c /^any_kboard_state ()$/
200appDidInit objcpp-src/SimpleCalc.M /^- appDidInit:sender$/
201\appendixletter tex-src/texinfo.tex /^\\def\\appendixletter{\\char\\the\\appendixno}$/
202appendix_name perl-src/htlmify-cystic 13
203\appendixnoderef tex-src/texinfo.tex /^\\def\\appendixnoderef{\\ifx\\lastnode\\relax\\else$/
204appendix perl-src/htlmify-cystic 24
205\appendixsec tex-src/texinfo.tex /^\\outer\\def\\appendixsec{\\parsearg\\appendixsectionzz/
206\appendixsection tex-src/texinfo.tex /^\\outer\\def\\appendixsection{\\parsearg\\appendixsecti/
207\appendixsectionzzz tex-src/texinfo.tex /^\\def\\appendixsectionzzz #1{\\seccheck{appendixsecti/
208\appendixsetref tex-src/texinfo.tex /^\\def\\appendixsetref#1{%$/
209\appendixsubsec tex-src/texinfo.tex /^\\outer\\def\\appendixsubsec{\\parsearg\\appendixsubsec/
210\appendixsubseczzz tex-src/texinfo.tex /^\\def\\appendixsubseczzz #1{\\seccheck{appendixsubsec/
211\appendixsubsubsec tex-src/texinfo.tex /^\\outer\\def\\appendixsubsubsec{\\parsearg\\appendixsub/
212\appendixsubsubseczzz tex-src/texinfo.tex /^\\def\\appendixsubsubseczzz #1{\\seccheck{appendixsub/
213\appendix tex-src/texinfo.tex /^\\outer\\def\\appendix{\\parsearg\\appendixzzz}$/
214appendix_toc perl-src/htlmify-cystic 16
215\appendixzzz tex-src/texinfo.tex /^\\def\\appendixzzz #1{\\seccheck{appendix}%$/
216append_list prol-src/natded.prolog /^append_list([],[]).$/
217append prol-src/natded.prolog /^append([],Xs,Xs).$/
218append_string pas-src/common.pas /^procedure append_string;(*($/
219AppendTextString pas-src/common.pas /^function AppendTextString;(*($/
220appendToDisplay objcpp-src/SimpleCalc.M /^- appendToDisplay:(const char *)theDigit$/
221append_tool_bar_item c-src/emacs/src/keyboard.c /^append_tool_bar_item (void)$/
222apply_modifiers c-src/emacs/src/keyboard.c /^apply_modifiers (int modifiers, Lisp_Object base)$/
223apply_modifiers_uncached c-src/emacs/src/keyboard.c /^apply_modifiers_uncached (int modifiers, char *bas/
224/A ps-src/rfc1245.ps /^\/A { $/
225aref_addr c-src/emacs/src/lisp.h /^aref_addr (Lisp_Object array, ptrdiff_t idx)$/
226AREF c-src/emacs/src/lisp.h /^AREF (Lisp_Object array, ptrdiff_t idx)$/
227arg c-src/emacs/src/lisp.h 2961
228arg c-src/emacs/src/lisp.h 2966
229arg c-src/emacs/src/lisp.h 2971
230arg c-src/h.h 13
231arglist y-src/cccp.y 41
232argno y-src/cccp.y 45
233args c-src/emacs/src/lisp.h 2986
234args c-src/h.h 30
235argsindent tex-src/texinfo.tex /^\\dimen1=\\hsize \\advance \\dimen1 by -\\defargsindent/
236argsindent tex-src/texinfo.tex /^\\newskip\\defargsindent \\defargsindent=50pt$/
237argsindent tex-src/texinfo.tex /^\\parshape 2 0in \\dimen0 \\defargsindent \\dimen1 /
238ARGS make-src/Makefile /^ARGS=- < srclist$/
239arg_type c-src/etags.c 250
240argument c-src/etags.c 253
241argvals prol-src/natded.prolog /^argvals([]) --> [].$/
242Arith_Comparison c-src/emacs/src/lisp.h 3497
243ARITH_EQUAL c-src/emacs/src/lisp.h 3498
244ARITH_GRTR c-src/emacs/src/lisp.h 3501
245ARITH_GRTR_OR_EQUAL c-src/emacs/src/lisp.h 3503
246ARITH_LESS c-src/emacs/src/lisp.h 3500
247ARITH_LESS_OR_EQUAL c-src/emacs/src/lisp.h 3502
248ARITH_NOTEQUAL c-src/emacs/src/lisp.h 3499
249array c.c 190
250ARRAYELTS c-src/emacs/src/lisp.h /^#define ARRAYELTS(arr) (sizeof (arr) \/ sizeof (arr/
251ARRAY_MARK_FLAG c-src/emacs/src/lisp.h 768
252ARRAYP c-src/emacs/src/lisp.h /^ARRAYP (Lisp_Object x)$/
253A ruby-src/test1.ru /^class A$/
254a ruby-src/test1.ru /^ def a()$/
255A ruby-src/test1.ru /^module A$/
256ASCII_CHAR_P c-src/emacs/src/lisp.h /^#define ASCII_CHAR_P(c) UNSIGNED_CMP (c, <, 0x80)$/
257ascii c-src/emacs/src/lisp.h 1598
258ASET c-src/emacs/src/lisp.h /^ASET (Lisp_Object array, ptrdiff_t idx, Lisp_Objec/
259\asis tex-src/texinfo.tex /^\\def\\asis#1{#1}$/
260ASIZE c-src/emacs/src/lisp.h /^ASIZE (Lisp_Object array)$/
261Asm_help c-src/etags.c 504
262Asm_labels c-src/etags.c /^Asm_labels (FILE *inf)$/
263Asm_suffixes c-src/etags.c 493
264asort cp-src/functions.cpp /^void asort(int *a, int num){$/
265ASRC make-src/Makefile /^ASRC=empty.zz empty.zz.gz$/
266assemby-code-word forth-src/test-forth.fth /^code assemby-code-word ( dunno what it does )$/
267assert c-src/etags.c 135
268assert c-src/etags.c /^# define assert(x) ((void) 0)$/
269assign_neighbor cp-src/clheir.hpp /^ void assign_neighbor(int direction, location */
270associativity_assertion merc-src/accumulator.m /^:- pred associativity_assertion(module_info::in, l/
271assoc_list merc-src/accumulator.m /^:- import_module assoc_list.$/
272AST_Array::AST_Array cp-src/c.C /^AST_Array::AST_Array(UTL_ScopedName *n, unsigned l/
273AST_ConcreteType::AST_ConcreteType cp-src/c.C /^AST_ConcreteType::AST_ConcreteType(AST_Decl::NodeT/
274AST_Root cp-src/c.C 92
275AT cp-src/c.C 52
276at_end c-src/etags.c 249
277at_filename c-src/etags.c 247
278/atilde ps-src/rfc1245.ps /^\/atilde \/aring \/ccedilla \/eacute \/egrave \/ecircumf/
279at_language c-src/etags.c 245
280at_least_one_member prol-src/natded.prolog /^at_least_one_member(X,[X|_]):-!.$/
281atom prol-src/natded.prolog /^atom(X) --> [X], {atomic(X)}.$/
282atomval prol-src/natded.prolog /^atomval(X) --> atom(X).$/
283at_regexp c-src/etags.c 246
284at_stdin c-src/etags.c 248
285AU cp-src/c.C 53
286aultparindent\hang\textindent tex-src/texinfo.tex /^\\footstrut\\parindent=\\defaultparindent\\hang\\textin/
287aultparindent tex-src/texinfo.tex /^\\newdimen\\defaultparindent \\defaultparindent = 15p/
288aultparindent tex-src/texinfo.tex /^\\parindent = \\defaultparindent$/
289aUNEVALLED c-src/emacs/src/lisp.h /^ Lisp_Object (*aUNEVALLED) (Lisp_Object args)/
290\authorfont tex-src/texinfo.tex /^ \\def\\authorfont{\\authorrm \\normalbaselineskip =/
291\author tex-src/texinfo.tex /^ \\def\\author{\\parsearg\\authorzzz}%$/
292\authorzzz tex-src/texinfo.tex /^ \\def\\authorzzz##1{\\ifseenauthor\\else\\vskip 0pt /
293AUTO_CONS c-src/emacs/src/lisp.h /^#define AUTO_CONS(name, a, b) Lisp_Object name = A/
294AUTO_CONS_EXPR c-src/emacs/src/lisp.h /^#define AUTO_CONS_EXPR(a, b) \\$/
295auto_help c-src/etags.c 699
296AUTO_LIST1 c-src/emacs/src/lisp.h /^#define AUTO_LIST1(name, a) \\$/
297AUTO_LIST2 c-src/emacs/src/lisp.h /^#define AUTO_LIST2(name, a, b) \\$/
298AUTO_LIST3 c-src/emacs/src/lisp.h /^#define AUTO_LIST3(name, a, b, c) \\$/
299AUTO_LIST4 c-src/emacs/src/lisp.h /^#define AUTO_LIST4(name, a, b, c, d) \\$/
300AUTOLOADP c-src/emacs/src/lisp.h /^AUTOLOADP (Lisp_Object x)$/
301AUTO_STRING c-src/emacs/src/lisp.h /^#define AUTO_STRING(name, str) \\$/
302AVAIL_ALLOCA c-src/emacs/src/lisp.h /^#define AVAIL_ALLOCA(size) (sa_avail -= (size), al/
303backslash=0 tex-src/texinfo.tex /^\\let\\indexbackslash=0 %overridden during \\printin/
304\balancecolumns tex-src/texinfo.tex /^\\def\\balancecolumns{%$/
305bar1 ruby-src/test1.ru /^ attr_reader(:foo1, :bar1, # comment$/
306bar c.c 143
307bar cp-src/x.cc /^XX::bar()$/
308bar c-src/c.c /^void bar() {while(0) {}}$/
309bar c-src/h.h 19
310Bar lua-src/test.lua /^function Square.something:Bar ()$/
311Bar perl-src/kai-test.pl /^package Bar;$/
312Barrier_Function_Pointer/t ada-src/etags-test-for.ada /^ type Barrier_Function_Pointer is access$/
313bar= ruby-src/test1.ru /^ attr_writer :bar,$/
314_bar? ruby-src/test1.ru /^ def self._bar?(abc)$/
315base_case_ids merc-src/accumulator.m /^:- func base_case_ids(accu_goal_store) = list(accu/
316base_case_ids_set merc-src/accumulator.m /^:- func base_case_ids_set(accu_goal_store) = set(a/
317base cp-src/c.C /^double base (void) const { return rng_base; }$/
318base cp-src/Range.h /^ double base (void) const { return rng_base; }$/
319base c-src/emacs/src/lisp.h 2188
320bas_syn prol-src/natded.prolog /^bas_syn(n(_)).$/
321baz= ruby-src/test1.ru /^ :baz,$/
322bbbbbb c-src/h.h 113
323bbb c.c 251
324bb c.c 275
325b c.c 180
326b c.c 259
327b c.c 260
328b c.c 262
329b c.c /^b ()$/
330B cp-src/c.C 122
331b cp-src/c.C 132
332B cp-src/c.C 54
333B cp-src/c.C 56
334B cp-src/c.C 74
335~B cp-src/c.C /^ ~B() {};$/
336B cp-src/c.C /^void B::B() {}$/
337B cp-src/fail.C 24
338B cp-src/fail.C 8
339b c-src/h.h 103
340b c-src/h.h 104
341b c-src/h.h 41
342been_warned c-src/etags.c 222
343before_command_echo_length c-src/emacs/src/keyboard.c 130
344before_command_key_count c-src/emacs/src/keyboard.c 129
345/BEGINBITMAP2BITc ps-src/rfc1245.ps /^\/BEGINBITMAP2BITc { $/
346/BEGINBITMAP2BIT ps-src/rfc1245.ps /^\/BEGINBITMAP2BIT { $/
347/BEGINBITMAPBWc ps-src/rfc1245.ps /^\/BEGINBITMAPBWc { $/
348/BEGINBITMAPBW ps-src/rfc1245.ps /^\/BEGINBITMAPBW { $/
349/BEGINBITMAPGRAYc ps-src/rfc1245.ps /^\/BEGINBITMAPGRAYc { $/
350/BEGINBITMAPGRAY ps-src/rfc1245.ps /^\/BEGINBITMAPGRAY { $/
351\begindoublecolumns tex-src/texinfo.tex /^\\def\\begindoublecolumns{\\begingroup$/
352/BEGINPRINTCODE ps-src/rfc1245.ps /^\/BEGINPRINTCODE { $/
353\begin tex-src/texinfo.tex /^\\outer\\def\\begin{\\parsearg\\beginxxx}$/
354\beginxxx tex-src/texinfo.tex /^\\def\\beginxxx #1{%$/
355begtoken c-src/etags.c /^#define begtoken(c) (_btk[CHAR (c)]) \/* c can star/
356behaviour_info erl-src/gs_dialog.erl /^behaviour_info(callbacks) ->$/
357BE_Node cp-src/c.C 77
358BE_Node cp-src/c.C /^void BE_Node::BE_Node() {}$/
359bf=cmbx10 tex-src/texinfo.tex /^\\font\\defbf=cmbx10 scaled \\magstep1 %was 1314$/
360/BF ps-src/rfc1245.ps /^\/BF { $/
361\bf tex-src/texinfo.tex /^\\def\\bf{\\realbackslash bf }%$/
362\bf tex-src/texinfo.tex /^\\def\\bf{\\realbackslash bf }$/
363Bidule/b ada-src/etags-test-for.ada /^ protected body Bidule is$/
364Bidule/b ada-src/waroquiers.ada /^ protected body Bidule is$/
365Bidule/t ada-src/etags-test-for.ada /^ protected Bidule is$/
366Bidule/t ada-src/waroquiers.ada /^ protected Bidule is$/
367bind_polling_period c-src/emacs/src/keyboard.c /^bind_polling_period (int n)$/
368bind pyt-src/server.py /^ def bind(self, key, action):$/
369/BITMAPCOLORc ps-src/rfc1245.ps /^\/BITMAPCOLORc { $/
370/BITMAPCOLOR ps-src/rfc1245.ps /^\/BITMAPCOLOR { $/
371/BITMAPGRAYc ps-src/rfc1245.ps /^\/BITMAPGRAYc { $/
372/BITMAPGRAY ps-src/rfc1245.ps /^\/BITMAPGRAY { $/
373BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 125
374BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 129
375BITS_PER_CHAR c-src/emacs/src/lisp.h 136
376BITS_PER_EMACS_INT c-src/emacs/src/lisp.h 139
377BITS_PER_LONG c-src/emacs/src/lisp.h 138
378BITS_PER_SHORT c-src/emacs/src/lisp.h 137
379bits_word c-src/emacs/src/lisp.h 123
380bits_word c-src/emacs/src/lisp.h 127
381BITS_WORD_MAX c-src/emacs/src/lisp.h 124
382BITS_WORD_MAX c-src/emacs/src/lisp.h 128
383bla c.c /^int bla ()$/
384BLACK cp-src/screen.hpp 12
385blah tex-src/testenv.tex /^\\section{blah}$/
386bletch el-src/TAGTEST.EL /^(foo::defmumble bletch beuarghh)$/
387BLOCK c-src/emacs/src/gmalloc.c /^#define BLOCK(A) (((char *) (A) - _heapbase) \/ BLO/
388BLOCKIFY c-src/emacs/src/gmalloc.c /^#define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) \//
389BLOCKLOG c-src/emacs/src/gmalloc.c 125
390BLOCKSIZE c-src/emacs/src/gmalloc.c 126
391/bl ps-src/rfc1245.ps /^\/bl { $/
392BLUE cp-src/screen.hpp 13
393blv c-src/emacs/src/lisp.h 689
394blv_found c-src/emacs/src/lisp.h /^blv_found (struct Lisp_Buffer_Local_Value *blv)$/
395bodyindent tex-src/texinfo.tex /^\\advance\\dimen2 by -\\defbodyindent$/
396bodyindent tex-src/texinfo.tex /^\\advance\\dimen3 by -\\defbodyindent$/
397bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by -\\defbodyindent$/
398bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by \\defbodyindent \\advance \\righ/
399bodyindent tex-src/texinfo.tex /^\\exdentamount=\\defbodyindent$/
400bodyindent tex-src/texinfo.tex /^\\newskip\\defbodyindent \\defbodyindent=.4in$/
401Body_Required/f ada-src/etags-test-for.ada /^ function Body_Required$/
402Boo::Boo cp-src/c.C /^Boo::Boo(Boo) :$/
403Boo cp-src/c.C 129
404Boo cp-src/c.C /^ Boo(int _i, int _a, int _b) : i(_i), a(_a), b(/
405bool c.c 222
406bool_header_size c-src/emacs/src/lisp.h 1472
407bool merc-src/accumulator.m /^:- import_module bool.$/
408boolvar c-src/emacs/src/lisp.h 2287
409bool_vector_bitref c-src/emacs/src/lisp.h /^bool_vector_bitref (Lisp_Object a, EMACS_INT i)$/
410BOOL_VECTOR_BITS_PER_CHAR c-src/emacs/src/lisp.h 114
411BOOL_VECTOR_BITS_PER_CHAR c-src/emacs/src/lisp.h 115
412bool_vector_bytes c-src/emacs/src/lisp.h /^bool_vector_bytes (EMACS_INT size)$/
413bool_vector_data c-src/emacs/src/lisp.h /^bool_vector_data (Lisp_Object a)$/
414BOOL_VECTOR_P c-src/emacs/src/lisp.h /^BOOL_VECTOR_P (Lisp_Object a)$/
415bool_vector_ref c-src/emacs/src/lisp.h /^bool_vector_ref (Lisp_Object a, EMACS_INT i)$/
416bool_vector_set c-src/emacs/src/lisp.h /^bool_vector_set (Lisp_Object a, EMACS_INT i, bool /
417bool_vector_size c-src/emacs/src/lisp.h /^bool_vector_size (Lisp_Object a)$/
418bool_vector_uchar_data c-src/emacs/src/lisp.h /^bool_vector_uchar_data (Lisp_Object a)$/
419bool_vector_words c-src/emacs/src/lisp.h /^bool_vector_words (EMACS_INT size)$/
420/B ps-src/rfc1245.ps /^\/B { $/
421bracelev c-src/etags.c 2520
422/braceright ps-src/rfc1245.ps /^\/braceright \/asciitilde \/.notdef \/Adieresis \/Aring/
423/bracketright ps-src/rfc1245.ps /^\/bracketright \/asciicircum \/underscore \/grave \/a \//
424/breve ps-src/rfc1245.ps /^\/breve \/dotaccent \/ring \/cedilla \/hungarumlaut \/og/
425BROWN cp-src/screen.hpp 18
426B ruby-src/test1.ru /^ class B$/
427b ruby-src/test1.ru /^ def b()$/
428bsp_DevId c-src/h.h 25
429bt c-src/emacs/src/lisp.h 2988
430\b tex-src/texinfo.tex /^\\def\\b#1{{\\bf #1}}$/
431\b tex-src/texinfo.tex /^\\def\\b##1{\\realbackslash b {##1}}%$/
432\b tex-src/texinfo.tex /^\\def\\b##1{\\realbackslash b {##1}}$/
433btowc c-src/emacs/src/regex.h /^# define btowc(c) c$/
434buffer c-src/emacs/src/lisp.h 2000
435buffer c-src/emacs/src/regex.h 341
436buffer c-src/etags.c 238
437buffer c-src/h.h 119
438BUFFER_OBJFWDP c-src/emacs/src/lisp.h /^BUFFER_OBJFWDP (union Lisp_Fwd *a)$/
439BUFFERP c-src/emacs/src/lisp.h /^BUFFERP (Lisp_Object a)$/
440BUFFERSIZE objc-src/Subprocess.h 43
441buildact prol-src/natded.prolog /^buildact([SynIn],Right,RightPlus1):-$/
442build prol-src/natded.prolog /^build([],Left,Left).$/
443build_pure_c_string c-src/emacs/src/lisp.h /^build_pure_c_string (const char *str)$/
444build_string c-src/emacs/src/lisp.h /^build_string (const char *str)$/
445builtin_lisp_symbol c-src/emacs/src/lisp.h /^builtin_lisp_symbol (int index)$/
446\bullet tex-src/texinfo.tex /^\\def\\bullet{$\\ptexbullet$}$/
447burst c-src/h.h 28
448busy c-src/emacs/src/gmalloc.c 158
449ButtonBar pyt-src/server.py /^def ButtonBar(frame, legend, ref, alternatives, co/
450button_down_location c-src/emacs/src/keyboard.c 5210
451button_down_time c-src/emacs/src/keyboard.c 5218
452\bye tex-src/texinfo.tex /^\\outer\\def\\bye{\\pagealignmacro\\tracingstats=1\\ptex/
453bytecode_dest c-src/emacs/src/lisp.h 3037
454bytecode_top c-src/emacs/src/lisp.h 3036
455BYTE_MARK_STACK c-src/emacs/src/lisp.h 3181
456bytepos c-src/emacs/src/lisp.h 2016
457bytes_free c-src/emacs/src/gmalloc.c 314
458_bytes_free c-src/emacs/src/gmalloc.c 376
459byte_stack c-src/emacs/src/lisp.h 3049
460bytes_total c-src/emacs/src/gmalloc.c 310
461bytes_used c-src/emacs/src/gmalloc.c 312
462_bytes_used c-src/emacs/src/gmalloc.c 374
463caccacacca c.c /^caccacacca (a,b,c,d,e,f,g)$/
464cacheLRUEntry_s c.c 172
465cacheLRUEntry_t c.c 177
466calculate_goal_info merc-src/accumulator.m /^:- pred calculate_goal_info(hlds_goal_expr::in, hl/
467CALLMANY c-src/emacs/src/lisp.h /^#define CALLMANY(f, array) (f) (ARRAYELTS (array),/
468CALLN c-src/emacs/src/lisp.h /^#define CALLN(f, ...) CALLMANY (f, ((Lisp_Object [/
469calloc c-src/emacs/src/gmalloc.c 1717
470calloc c-src/emacs/src/gmalloc.c 66
471calloc c-src/emacs/src/gmalloc.c 70
472calloc c-src/emacs/src/gmalloc.c /^calloc (size_t nmemb, size_t size)$/
473can_be_null c-src/emacs/src/regex.h 370
474cancel_echoing c-src/emacs/src/keyboard.c /^cancel_echoing (void)$/
475canonicalize_filename c-src/etags.c /^canonicalize_filename (register char *fn)$/
476\capsenumerate tex-src/texinfo.tex /^\\def\\capsenumerate{\\enumerate{A}}$/
477CAR c-src/emacs/src/lisp.h /^CAR (Lisp_Object c)$/
478CAR_SAFE c-src/emacs/src/lisp.h /^CAR_SAFE (Lisp_Object c)$/
479\cartbot tex-src/texinfo.tex /^\\def\\cartbot{\\hbox to \\cartouter{\\hskip\\lskip$/
480\cartouche tex-src/texinfo.tex /^\\long\\def\\cartouche{%$/
481\carttop tex-src/texinfo.tex /^\\def\\carttop{\\hbox to \\cartouter{\\hskip\\lskip$/
482case_Lisp_Int c-src/emacs/src/lisp.h 438
483cat_atoms prol-src/natded.prolog /^cat_atoms(A1,A2,A3):-$/
484CATCHER c-src/emacs/src/lisp.h 3021
485cat cp-src/c.C 126
486cat cp-src/c.C 130
487cat c-src/h.h 81
488cat prol-src/natded.prolog /^cat(A, Alpha@Beta, Ass3, Qs3, tree(fe,A:Alpha@Beta/
489C_AUTO c-src/etags.c 2198
490\cbl tex-src/texinfo.tex /^\\def\\cbl{{\\circle\\char'012\\hskip -6pt}}$/
491\cbr tex-src/texinfo.tex /^\\def\\cbr{{\\hskip 6pt\\circle\\char'011}}$/
492c c.c 180
493cccccccccc c-src/h.h 115
494C cp-src/fail.C 25
495C cp-src/fail.C 9
496C cp-src/fail.C /^ C(int i) {x = i;}$/
497c c-src/h.h 106
498c c-src/h.h /^#define c() d$/
499%cdiff make-src/Makefile /^%cdiff: CTAGS% CTAGS ${infiles}$/
500cdr c-src/emacs/src/lisp.h 1159
501CDR c-src/emacs/src/lisp.h /^CDR (Lisp_Object c)$/
502CDR_SAFE c-src/emacs/src/lisp.h /^CDR_SAFE (Lisp_Object c)$/
503cell y-src/parse.y 279
504\center tex-src/texinfo.tex /^\\def\\center{\\parsearg\\centerzzz}$/
505\centerzzz tex-src/texinfo.tex /^\\def\\centerzzz #1{{\\advance\\hsize by -\\leftskip$/
506C_entries c-src/etags.c /^C_entries (int c_ext, FILE *inf)$/
507C_EXT c-src/etags.c 2193
508c_ext c-src/etags.c 2271
509CFLAGS make-src/Makefile /^CFLAGS=${WARNINGS} -ansi -g3 # -pg -O$/
510/cfs ps-src/rfc1245.ps /^\/cfs { $/
511cgrep html-src/software.html /^cgrep$/
512chain c-src/emacs/src/lisp.h 1162
513chain c-src/emacs/src/lisp.h 2206
514chain c-src/emacs/src/lisp.h 2396
515chain_subst_2 merc-src/accumulator.m /^:- pred chain_subst_2(list(A)::in, map(A, B)::in, /
516chain_subst merc-src/accumulator.m /^:- func chain_subst(accu_subst, accu_subst) = accu/
517ChangeFileType pas-src/common.pas /^function ChangeFileType; (*(FileName : NameString;/
518\chapbreak tex-src/texinfo.tex /^\\def\\chapbreak{\\dobreak \\chapheadingskip {-4000}}$/
519\chapentryfonts tex-src/texinfo.tex /^\\def\\chapentryfonts{\\secfonts \\rm}$/
520\chapentry tex-src/texinfo.tex /^\\def\\chapentry#1#2#3{\\dochapentry{#2\\labelspace#1}/
521\chapfonts tex-src/texinfo.tex /^\\def\\chapfonts{%$/
522\CHAPFopen tex-src/texinfo.tex /^\\def\\CHAPFopen{$/
523\CHAPFplain tex-src/texinfo.tex /^\\def\\CHAPFplain{$/
524\chapheading tex-src/texinfo.tex /^\\def\\chapheading{\\parsearg\\chapheadingzzz}$/
525\chapheadingzzz tex-src/texinfo.tex /^\\def\\chapheadingzzz #1{\\chapbreak %$/
526\chapoddpage tex-src/texinfo.tex /^\\def\\chapoddpage{\\chappager \\ifodd\\pageno \\else \\h/
527\chappager tex-src/texinfo.tex /^\\def\\chappager{\\par\\vfill\\supereject}$/
528\CHAPPAGodd tex-src/texinfo.tex /^\\def\\CHAPPAGodd{$/
529\CHAPPAGoff tex-src/texinfo.tex /^\\def\\CHAPPAGoff{$/
530\CHAPPAGon tex-src/texinfo.tex /^\\def\\CHAPPAGon{$/
531\chapternofonts tex-src/texinfo.tex /^\\def\\chapternofonts{%$/
532\chapter tex-src/texinfo.tex /^\\outer\\def\\chapter{\\parsearg\\chapterzzz}$/
533\chapterzzz tex-src/texinfo.tex /^\\def\\chapterzzz #1{\\seccheck{chapter}%$/
534CHARACTERBITS c-src/emacs/src/lisp.h 2457
535CHAR_ALT c-src/emacs/src/lisp.h 2445
536CHAR_BIT c-src/emacs/src/lisp.h 2957
537CHAR_BIT c-src/emacs/src/lisp.h 2959
538CHAR_BIT c-src/emacs/src/lisp.h 2964
539CHAR_BIT c-src/emacs/src/lisp.h 2969
540CHAR_BIT c-src/emacs/src/lisp.h 2974
541CHAR_BIT c-src/emacs/src/lisp.h 2978
542CHAR_BIT c-src/emacs/src/lisp.h 2983
543char_bits c-src/emacs/src/lisp.h 2443
544CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 593
545CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 597
546CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 605
547CHAR c-src/etags.c /^#define CHAR(x) ((unsigned int)(x) & (CHARS - 1))/
548CHAR_CTL c-src/emacs/src/lisp.h 2449
549CHAR_HYPER c-src/emacs/src/lisp.h 2447
550CHAR_META c-src/emacs/src/lisp.h 2450
551CHAR_MODIFIER_MASK c-src/emacs/src/lisp.h 2452
552charpos c-src/emacs/src/lisp.h 2011
553CHARS c-src/etags.c 157
554charset_unibyte c-src/emacs/src/regex.h 410
555CHAR_SHIFT c-src/emacs/src/lisp.h 2448
556CHAR_SUPER c-src/emacs/src/lisp.h 2446
557CHAR_TABLE_EXTRA_SLOTS c-src/emacs/src/lisp.h /^CHAR_TABLE_EXTRA_SLOTS (struct Lisp_Char_Table *ct/
558CHAR_TABLE_P c-src/emacs/src/lisp.h /^CHAR_TABLE_P (Lisp_Object a)$/
559CHAR_TABLE_REF_ASCII c-src/emacs/src/lisp.h /^CHAR_TABLE_REF_ASCII (Lisp_Object ct, ptrdiff_t id/
560CHAR_TABLE_REF c-src/emacs/src/lisp.h /^CHAR_TABLE_REF (Lisp_Object ct, int idx)$/
561CHAR_TABLE_SET c-src/emacs/src/lisp.h /^CHAR_TABLE_SET (Lisp_Object ct, int idx, Lisp_Obje/
562char_table_specials c-src/emacs/src/lisp.h 1692
563CHAR_TABLE_STANDARD_SLOTS c-src/emacs/src/lisp.h 1697
564CHARTAB_SIZE_BITS_0 c-src/emacs/src/lisp.h 1567
565CHARTAB_SIZE_BITS_1 c-src/emacs/src/lisp.h 1568
566CHARTAB_SIZE_BITS_2 c-src/emacs/src/lisp.h 1569
567CHARTAB_SIZE_BITS_3 c-src/emacs/src/lisp.h 1570
568CHARTAB_SIZE_BITS c-src/emacs/src/lisp.h 1565
569\char tex-src/texinfo.tex /^\\def\\char{\\realbackslash char}%$/
570\char tex-src/texinfo.tex /^\\def\\char{\\realbackslash char}$/
571chartonmstr pas-src/common.pas /^function chartonmstr; (*($/
572CHAR_TYPE_SIZE y-src/cccp.y 87
573CHAR y-src/cccp.c 7
574CHECK_ARRAY c-src/emacs/src/lisp.h /^CHECK_ARRAY (Lisp_Object x, Lisp_Object predicate)/
575CHECK_BOOL_VECTOR c-src/emacs/src/lisp.h /^CHECK_BOOL_VECTOR (Lisp_Object x)$/
576CHECK_BUFFER c-src/emacs/src/lisp.h /^CHECK_BUFFER (Lisp_Object x)$/
577CHECK_CONS c-src/emacs/src/lisp.h /^CHECK_CONS (Lisp_Object x)$/
578check_cons_list c-src/emacs/src/lisp.h /^# define check_cons_list() lisp_h_check_cons_list/
579checker make-src/Makefile /^checker:$/
580CHECKFLAGS make-src/Makefile /^CHECKFLAGS=-DDEBUG -Wno-unused-function$/
581checkhdr c-src/emacs/src/gmalloc.c /^checkhdr (const struct hdr *hdr)$/
582checkiso html-src/software.html /^checkiso$/
583CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 571
584CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 572
585CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 579
586CHECK_LIST_CONS c-src/emacs/src/lisp.h /^# define CHECK_LIST_CONS(x, y) lisp_h_CHECK_LIST_C/
587CHECK_LIST c-src/emacs/src/lisp.h /^CHECK_LIST (Lisp_Object x)$/
588CHECK_NATNUM c-src/emacs/src/lisp.h /^CHECK_NATNUM (Lisp_Object x)$/
589CHECK_NUMBER_CAR c-src/emacs/src/lisp.h /^CHECK_NUMBER_CAR (Lisp_Object x)$/
590CHECK_NUMBER_CDR c-src/emacs/src/lisp.h /^CHECK_NUMBER_CDR (Lisp_Object x)$/
591CHECK_NUMBER_COERCE_MARKER c-src/emacs/src/lisp.h /^#define CHECK_NUMBER_COERCE_MARKER(x) \\$/
592CHECK_NUMBER c-src/emacs/src/lisp.h /^# define CHECK_NUMBER(x) lisp_h_CHECK_NUMBER (x)$/
593CHECK_NUMBER_OR_FLOAT_COERCE_MARKER c-src/emacs/src/lisp.h /^#define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(x) /
594CHECK_NUMBER_OR_FLOAT c-src/emacs/src/lisp.h /^CHECK_NUMBER_OR_FLOAT (Lisp_Object x)$/
595CHECKOBJS make-src/Makefile /^CHECKOBJS=chkmalloc.o chkxm.o$/
596CHECK_PROCESS c-src/emacs/src/lisp.h /^CHECK_PROCESS (Lisp_Object x)$/
597checkQuotation php-src/lce_functions.php /^ function checkQuotation($str)$/
598CHECK_RANGED_INTEGER c-src/emacs/src/lisp.h /^#define CHECK_RANGED_INTEGER(x, lo, hi) \\$/
599CHECK_STRING_CAR c-src/emacs/src/lisp.h /^CHECK_STRING_CAR (Lisp_Object x)$/
600CHECK_SYMBOL c-src/emacs/src/lisp.h /^# define CHECK_SYMBOL(x) lisp_h_CHECK_SYMBOL (x)$/
601CHECK_TYPE c-src/emacs/src/lisp.h /^# define CHECK_TYPE(ok, predicate, x) lisp_h_CHECK/
602CHECK_TYPE_RANGED_INTEGER c-src/emacs/src/lisp.h /^#define CHECK_TYPE_RANGED_INTEGER(type, x) \\$/
603CHECK_VECTOR c-src/emacs/src/lisp.h /^CHECK_VECTOR (Lisp_Object x)$/
604CHECK_VECTOR_OR_STRING c-src/emacs/src/lisp.h /^CHECK_VECTOR_OR_STRING (Lisp_Object x)$/
605CHECK_WINDOW c-src/emacs/src/lisp.h /^CHECK_WINDOW (Lisp_Object x)$/
606\chfopen tex-src/texinfo.tex /^\\def\\chfopen #1#2{\\chapoddpage {\\chapfonts$/
607\chfplain tex-src/texinfo.tex /^\\def\\chfplain #1#2{%$/
608childDidExit objc-src/Subprocess.m /^- childDidExit$/
609chunks_free c-src/emacs/src/gmalloc.c 313
610_chunks_free c-src/emacs/src/gmalloc.c 375
611chunks_used c-src/emacs/src/gmalloc.c 311
612_chunks_used c-src/emacs/src/gmalloc.c 373
613\cindexsub tex-src/texinfo.tex /^\\def\\cindexsub {\\begingroup\\obeylines\\cindexsub}$/
614\cindex tex-src/texinfo.tex /^\\def\\cindex {\\cpindex}$/
615Circle.getPos lua-src/test.lua /^function Circle.getPos ()$/
616\cite tex-src/texinfo.tex /^\\def\\cite##1{\\realbackslash cite {##1}}%$/
617\cite tex-src/texinfo.tex /^\\def\\cite##1{\\realbackslash cite {##1}}$/
618C_JAVA c-src/etags.c 2197
619cjava c-src/etags.c 2936
620Cjava_entries c-src/etags.c /^Cjava_entries (FILE *inf)$/
621Cjava_help c-src/etags.c 551
622Cjava_suffixes c-src/etags.c 549
623CK_ABS_C y-src/parse.y /^#define CK_ABS_C(x) if((x)<MIN_COL || (x)>MAX_COL)/
624CK_ABS_R y-src/parse.y /^#define CK_ABS_R(x) if((x)<MIN_ROW || (x)>MAX_ROW)/
625CK_REL_C y-src/parse.y /^#define CK_REL_C(x) if( ((x)>0 && MAX_COL-(x)<cu/
626CK_REL_R y-src/parse.y /^#define CK_REL_R(x) if( ((x)>0 && MAX_ROW-(x)<cu/
627ClassExample ruby-src/test.rb /^ class ClassExample$/
628classifyLine php-src/lce_functions.php /^ function classifyLine($line)$/
629class_method ruby-src/test.rb /^ def ClassExample.class_method$/
630clean make-src/Makefile /^clean:$/
631clear-abbrev-table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, /
632clearAllKey objcpp-src/SimpleCalc.M /^- clearAllKey:sender$/
633clear cp-src/conway.hpp /^ void clear(void) { alive = 0; }$/
634clear_event c-src/emacs/src/keyboard.c /^clear_event (struct input_event *event)$/
635clear_input_pending c-src/emacs/src/keyboard.c /^clear_input_pending (void)$/
636clearKey objcpp-src/SimpleCalc.M /^- clearKey:sender$/
637clear_neighbors cp-src/clheir.cpp /^void discrete_location::clear_neighbors(void)$/
638Clear/p ada-src/2ataspri.adb /^ procedure Clear (Cell : in out TAS_Cell) is$/
639Clear/p ada-src/2ataspri.ads /^ procedure Clear (Cell : in out TAS_Cell)/
640clear_screen cp-src/screen.cpp /^void clear_screen(void)$/
641\clear tex-src/texinfo.tex /^\\def\\clear{\\parsearg\\clearxxx}$/
642clear-this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/
643clear_waiting_for_input c-src/emacs/src/keyboard.c /^clear_waiting_for_input (void)$/
644\clearxxx tex-src/texinfo.tex /^\\def\\clearxxx #1{$/
645cmd_error c-src/emacs/src/keyboard.c /^cmd_error (Lisp_Object data)$/
646cmd_error_internal c-src/emacs/src/keyboard.c /^cmd_error_internal (Lisp_Object data, const char */
647cmpfn c-src/emacs/src/lisp.h /^ bool (*cmpfn) (struct hash_table_test *t, Lisp_O/
648cmt prol-src/natded.prolog /^cmt:-$/
649CMultiChannelCSC19_3D cp-src/c.C 2
650cname c-src/etags.c 2519
651CNL c-src/etags.c /^#define CNL() \\$/
652CNL_SAVE_DEFINEDEF c-src/etags.c /^#define CNL_SAVE_DEFINEDEF() \\$/
653cno c-src/etags.c 224
654COBOLFLAGS make-src/Makefile /^COBOLFLAGS=--language=none --regex='\/.......[a-zA-/
655Cobol_help c-src/etags.c 558
656Cobol_paragraphs c-src/etags.c /^Cobol_paragraphs (FILE *inf)$/
657Cobol_suffixes c-src/etags.c 556
658\code tex-src/texinfo.tex /^\\def\\code##1{\\realbackslash code {##1}}%$/
659\code tex-src/texinfo.tex /^\\def\\code##1{\\realbackslash code {##1}}$/
660colori cp-src/c.C 40
661COLORS cp-src/screen.hpp 11
662__COLORS cp-src/screen.hpp 9
663/colorsetup ps-src/rfc1245.ps /^\/colorsetup {$/
664commaargvals prol-src/natded.prolog /^commaargvals(Args) -->$/
665command c-src/etags.c 187
666command-error-default-function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/
667command_loop_1 c-src/emacs/src/keyboard.c /^command_loop_1 (void)$/
668command_loop_2 c-src/emacs/src/keyboard.c /^command_loop_2 (Lisp_Object ignore)$/
669command_loop c-src/emacs/src/keyboard.c /^command_loop (void)$/
670command_loop_level c-src/emacs/src/keyboard.c 195
671CommentAD php-src/lce_functions.php 70
672CommentAD php-src/lce_functions.php /^ function CommentAD($/
673comment php-src/lce_functions.php /^ function comment($line, $class)$/
674\comment tex-src/texinfo.tex /^\\def\\comment{\\catcode 64=\\other \\catcode 123=\\othe/
675\commentxxx tex-src/texinfo.tex /^\\def\\commentxxx #1{\\catcode 64=0 \\catcode 123=1 \\c/
676/COMMONBITMAPc ps-src/rfc1245.ps /^\/COMMONBITMAPc { $/
677/COMMONBITMAP ps-src/rfc1245.ps /^\/COMMONBITMAP { $/
678commutativity_assertion merc-src/accumulator.m /^:- pred commutativity_assertion(module_info::in,li/
679COMPILED_ARGLIST c-src/emacs/src/lisp.h 2431
680COMPILED_BYTECODE c-src/emacs/src/lisp.h 2432
681COMPILED_CONSTANTS c-src/emacs/src/lisp.h 2433
682COMPILED_DOC_STRING c-src/emacs/src/lisp.h 2435
683COMPILED_INTERACTIVE c-src/emacs/src/lisp.h 2436
684COMPILEDP c-src/emacs/src/lisp.h /^COMPILEDP (Lisp_Object a)$/
685COMPILED_STACK_DEPTH c-src/emacs/src/lisp.h 2434
686compile_empty prol-src/natded.prolog /^compile_empty:-$/
687compile_lex prol-src/natded.prolog /^compile_lex(File):-$/
688complete prol-src/natded.prolog /^complete(Cat):-$/
689complete-tag el-src/emacs/lisp/progmodes/etags.el /^(defun complete-tag ()$/
690compressor c-src/etags.c 188
691compressors c-src/etags.c 457
692compute_next_state cp-src/clheir.hpp /^ virtual void compute_next_state(void) { }$/
693compute_next_state cp-src/conway.hpp /^ void compute_next_state(void)$/
694conalgorithm html-src/algrthms.html /^Convolutionally$/
695concat c-src/etags.c /^concat (const char *s1, const char *s2, const char/
696concatenatenamestrings pas-src/common.pas /^function concatenatenamestrings; (*($/
697ConcatT pas-src/common.pas /^function ConcatT;(*($/
698Concept Index tex-src/gzip.texi /^@node Concept Index, , Problems, Top$/
699CONDITION_CASE c-src/emacs/src/lisp.h 3021
700Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is$/
701Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is private;$/
702Cond_Signal/p ada-src/2ataspri.adb /^ procedure Cond_Signal (Cond : in out Condition_/
703Cond_Signal/p ada-src/2ataspri.ads /^ procedure Cond_Signal (Cond : in out Condition_/
704Cond_Timed_Wait/p ada-src/2ataspri.adb /^ procedure Cond_Timed_Wait$/
705Cond_Timed_Wait/p ada-src/2ataspri.ads /^ procedure Cond_Timed_Wait$/
706Cond_Wait/p ada-src/2ataspri.adb /^ procedure Cond_Wait (Cond : in out Condition_Va/
707Cond_Wait/p ada-src/2ataspri.ads /^ procedure Cond_Wait (Cond : in out Condition_Va/
708Configure pyt-src/server.py /^class Configure(Frame, ControlEdit):$/
709ConfirmQuit pyt-src/server.py /^def ConfirmQuit(frame, context):$/
710consider_token c-src/etags.c /^consider_token (char *str, int len, int c, int *c_/
711CONSP c-src/emacs/src/lisp.h /^# define CONSP(x) lisp_h_CONSP (x)$/
712constant_args c-src/h.h 27
713constant c-src/emacs/src/lisp.h 668
714constant c-src/h.h 29
715Constant ruby-src/test1.ru 42
716constant y-src/cccp.y 112
717CONS_TO_INTEGER c-src/emacs/src/lisp.h /^#define CONS_TO_INTEGER(cons, type, var) \\$/
718constype c-src/emacs/src/lisp.h 3739
719CONSTYPE_HEAP c-src/emacs/src/lisp.h 3739
720CONSTYPE_PURE c-src/emacs/src/lisp.h 3739
721consult_lex prol-src/natded.prolog /^consult_lex:-$/
722contents c-src/emacs/src/lisp.h 1372
723contents c-src/emacs/src/lisp.h 1600
724contents c-src/emacs/src/lisp.h 1624
725\contents tex-src/texinfo.tex /^\\outer\\def\\contents{%$/
726ControlEdit pyt-src/server.py /^class ControlEdit(Frame):$/
727Controls pyt-src/server.py /^class Controls:$/
728CONVERT_CHARSTRING_TO_VALUE pas-src/common.pas /^procedure CONVERT_CHARSTRING_TO_VALUE;(*($/
729Copying tex-src/gzip.texi /^@node Copying, Overview, , Top$/
730\copyright tex-src/texinfo.tex /^\\def\\copyright{\\realbackslash copyright }%$/
731\copyright tex-src/texinfo.tex /^\\def\\copyright{\\realbackslash copyright}$/
732CopyTextString pas-src/common.pas /^function CopyTextString;(*($/
733count c-src/emacs/src/lisp.h 1863
734counter cp-src/c.C 33
735counter cp-src/c.C 36
736count_layers lua-src/allegro.lua /^local function count_layers (layer)$/
737count_words c-src/tab.c /^static int count_words(char *str, char delim)$/
738cow cp-src/c.C 127
739cow cp-src/c.C 131
740C_PLAIN c-src/etags.c 2194
741C_PLPL c-src/etags.c 2195
742cplpl c-src/etags.c 2935
743Cplusplus_entries c-src/etags.c /^Cplusplus_entries (FILE *inf)$/
744Cplusplus_help c-src/etags.c 540
745Cplusplus_suffixes c-src/etags.c 535
746CPPFLAGS make-src/Makefile /^CPPFLAGS=${CHECKFLAGS} -DSTDC_HEADERS -DHAVE_GETCW/
747CPSRC make-src/Makefile /^CPSRC=c.C abstract.C abstract.H cfront.H burton.cp/
748/C ps-src/rfc1245.ps /^\/C { $/
749create_acc_call merc-src/accumulator.m /^:- func create_acc_call(hlds_goal::in(goal_plain_c/
750create_acc_goal merc-src/accumulator.m /^:- pred create_acc_goal(hlds_goal::in, accu_substs/
751create-bar forth-src/test-forth.fth /^: create-bar foo ;$/
752Create_LL_Task/p ada-src/2ataspri.adb /^ procedure Create_LL_Task$/
753Create_LL_Task/p ada-src/2ataspri.ads /^ procedure Create_LL_Task$/
754create_new_base_goals merc-src/accumulator.m /^:- func create_new_base_goals(set(accu_goal_id), a/
755create_new_orig_recursive_goals merc-src/accumulator.m /^:- func create_new_orig_recursive_goals(set(accu_g/
756create_new_recursive_goals merc-src/accumulator.m /^:- func create_new_recursive_goals(set(accu_goal_i/
757create_new_var merc-src/accumulator.m /^:- pred create_new_var(prog_var::in, string::in, p/
758create_orig_goal merc-src/accumulator.m /^:- pred create_orig_goal(hlds_goal::in, accu_subst/
759createPOEntries php-src/lce_functions.php /^ function createPOEntries()$/
760createWidgets pyt-src/server.py /^ def createWidgets(self):$/
761createWidgets pyt-src/server.py /^ def createWidgets(self, host):$/
762\cropmarks tex-src/texinfo.tex /^\\def\\cropmarks{\\let\\onepageout=\\croppageout }$/
763\croppageout tex-src/texinfo.tex /^\\def\\croppageout#1{\\hoffset=0pt % make sure this d/
764cscInitTime cp-src/c.C 7
765cscSegmentationTime cp-src/c.C 8
766CSRC make-src/Makefile /^CSRC=abbrev.c ..\/etags\/h.h .\/\/c.c torture.c getopt/
767C_stab_entry c-src/etags.c 2271
768cstack c-src/etags.c 2523
769C_STAR c-src/etags.c 2196
770Cstar_entries c-src/etags.c /^Cstar_entries (FILE *inf)$/
771Cstar_suffixes c-src/etags.c 562
772C_symtype c-src/etags.c /^C_symtype (char *str, int len, int c_ext)$/
773CTAGS13 CTAGS14 CTAGS15 make-src/Makefile /^CTAGS13 CTAGS14 CTAGS15: ctags% ${infiles}$/
774CTAGS c-src/etags.c 146
775CTAGS c-src/etags.c 147
776CTAGS c-src/etags.c 149
777CTAGS make-src/Makefile /^CTAGS: ctags ${infiles}$/
778CTAGS% make-src/Makefile /^CTAGS%: ctags% ${infiles}$/
779ctags make-src/Makefile /^ctags: etags.c ${OBJS}$/
780\ctl tex-src/texinfo.tex /^\\def\\ctl{{\\circle\\char'013\\hskip -6pt}}% 6pt from /
781\ctrl tex-src/texinfo.tex /^\\def\\ctrl #1{{\\tt \\rawbackslash \\hat}#1}$/
782\ctr tex-src/texinfo.tex /^\\def\\ctr{{\\hskip 6pt\\circle\\char'010}}$/
783Cube.data.getFoo lua-src/test.lua /^function Cube.data.getFoo ()$/
784curlb c-src/etags.c 2929
785curlinepos c-src/etags.c 2931
786current-idle-time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/
787current-input-mode c-src/emacs/src/keyboard.c /^DEFUN ("current-input-mode", Fcurrent_input_mode, /
788current_kboard c-src/emacs/src/keyboard.c 85
789current_lb_is_new c-src/etags.c 2926
790curry-test scm-src/test.scm /^(define (((((curry-test a) b) c) d) e)$/
791cursor_position cp-src/screen.cpp /^void cursor_position(void)$/
792cursor_x cp-src/screen.cpp 15
793cursor_y cp-src/screen.cpp 15
794CYAN cp-src/screen.hpp 15
795DAEMON_RUNNING c-src/emacs/src/lisp.h 4258
796DAEMON_RUNNING c-src/emacs/src/lisp.h 4262
797DARKGRAY cp-src/screen.hpp 20
798data c-src/emacs/src/lisp.h 1395
799data c-src/emacs/src/lisp.h 2129
800data c-src/emacs/src/lisp.h 2395
801d c.c 180
802D cp-src/fail.C 41
803D cp-src/fail.C /^ D() : ::A::T2::T(97), x(1066) {}$/
804d c-src/emacs/src/lisp.h 4673
805d c-src/emacs/src/lisp.h 4679
806ddefineseen c-src/etags.c 2462
807DEAFUN c.c /^DEAFUN ("expand-file-name", Fexpand_file_name, Sex/
808debian-bug html-src/software.html /^debian-bug.el$/
809Debug cp-src/functions.cpp /^void Debug ( int lineno, int level, char* func , c/
810DEBUG c-src/etags.c 84
811DEBUG c-src/etags.c 85
812DEBUG c-src/etags.c 87
813DEBUG objc-src/PackInsp.m 37
814debug_on_exit c-src/emacs/src/lisp.h 2984
815decimalKey objcpp-src/SimpleCalc.M /^- decimalKey:sender$/
816declared_special c-src/emacs/src/lisp.h 676
817DECLARE_GDB_SYM c-src/emacs/src/lisp.h /^#define DECLARE_GDB_SYM(type, id) type const id EX/
818decode_timer c-src/emacs/src/keyboard.c /^decode_timer (Lisp_Object timer, struct timespec */
819defalt c-src/emacs/src/lisp.h 1585
820default_C_entries c-src/etags.c /^default_C_entries (FILE *inf)$/
821default_C_help c-src/etags.c 515
822default_C_help c-src/etags.c 523
823default_C_suffixes c-src/etags.c 512
824DEFAULT_HASH_SIZE c-src/emacs/src/lisp.h 1940
825__default_morecore c-src/emacs/src/gmalloc.c /^__default_morecore (ptrdiff_t increment)$/
826DEFAULT_REHASH_SIZE c-src/emacs/src/lisp.h 1950
827DEFAULT_REHASH_THRESHOLD c-src/emacs/src/lisp.h 1946
828default-tags-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar default-tags-table-function nil$/
829defcell c-src/emacs/src/lisp.h 2351
830\defcodeindex tex-src/texinfo.tex /^\\def\\defcodeindex{\\parsearg\\newcodeindex}$/
831def c-src/h.h 35
832def c-src/h.h 38
833\defcvarheader tex-src/texinfo.tex /^\\def\\defcvarheader #1#2#3{%$/
834\defcv tex-src/texinfo.tex /^\\def\\defcv #1 {\\def\\defcvtype{#1}%$/
835\defcvx tex-src/texinfo.tex /^\\def\\defcvx #1 {\\errmessage{@defcvx in invalid con/
836\deffnheader tex-src/texinfo.tex /^\\def\\deffnheader #1#2#3{\\doind {fn}{\\code{#2}}%$/
837\deffn tex-src/texinfo.tex /^\\def\\deffn{\\defmethparsebody\\Edeffn\\deffnx\\deffnhe/
838\deffnx tex-src/texinfo.tex /^\\def\\deffnx #1 {\\errmessage{@deffnx in invalid con/
839\defindex tex-src/texinfo.tex /^\\def\\defindex{\\parsearg\\newindex}$/
840define-abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/
841define-abbrev-table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/
842definedef c-src/etags.c 2464
843defined_GC_CHECK_STRING_BYTES c-src/emacs/src/lisp.h 4663
844defined_GC_CHECK_STRING_BYTES c-src/emacs/src/lisp.h 4665
845DEFINE_GDB_SYMBOL_BEGIN c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_BEGIN(type, id) DECLARE/
846DEFINE_GDB_SYMBOL_BEGIN c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_BEGIN(type, id) extern /
847DEFINE_GDB_SYMBOL_END c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_END(id) = id;$/
848DEFINE_GDB_SYMBOL_END c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_END(val) ;$/
849define-global-abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/
850DEFINE_LISP_SYMBOL c-src/emacs/src/lisp.h /^#define DEFINE_LISP_SYMBOL(name) \\$/
851define-mode-abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, /
852DEFINE_NON_NIL_Q_SYMBOL_MACROS c-src/emacs/src/lisp.h 755
853\defivarheader tex-src/texinfo.tex /^\\def\\defivarheader #1#2#3{%$/
854\defivar tex-src/texinfo.tex /^\\def\\defivar{\\defvrparsebody\\Edefivar\\defivarx\\def/
855\defivarx tex-src/texinfo.tex /^\\def\\defivarx #1 {\\errmessage{@defivarx in invalid/
856\defmacheader tex-src/texinfo.tex /^\\def\\defmacheader #1#2{\\doind {fn}{\\code{#1}}% Mak/
857\defmac tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/
858\defmacx tex-src/texinfo.tex /^\\def\\defmacx #1 {\\errmessage{@defmacx in invalid c/
859\defmethodheader tex-src/texinfo.tex /^\\def\\defmethodheader #1#2#3{%$/
860\defmethod tex-src/texinfo.tex /^\\def\\defmethod{\\defmethparsebody\\Edefmethod\\defmet/
861\defmethodx tex-src/texinfo.tex /^\\def\\defmethodx #1 {\\errmessage{@defmethodx in inv/
862\defmethparsebody tex-src/texinfo.tex /^\\def\\defmethparsebody #1#2#3#4 {\\begingroup\\inENV /
863\defname tex-src/texinfo.tex /^\\def\\defname #1#2{%$/
864\defopheader tex-src/texinfo.tex /^\\def\\defopheader #1#2#3{%$/
865\defopparsebody tex-src/texinfo.tex /^\\def\\defopparsebody #1#2#3#4#5 {\\begingroup\\inENV /
866\defop tex-src/texinfo.tex /^\\def\\defop #1 {\\def\\defoptype{#1}%$/
867\defoptheader tex-src/texinfo.tex /^\\def\\defoptheader #1#2{\\doind {vr}{\\code{#1}}% Mak/
868\defopt tex-src/texinfo.tex /^\\def\\defopt{\\defvarparsebody\\Edefopt\\defoptx\\defop/
869\defoptx tex-src/texinfo.tex /^\\def\\defoptx #1 {\\errmessage{@defoptx in invalid c/
870\defopvarparsebody tex-src/texinfo.tex /^\\def\\defopvarparsebody #1#2#3#4#5 {\\begingroup\\inE/
871\defopx tex-src/texinfo.tex /^\\def\\defopx #1 {\\errmessage{@defopx in invalid con/
872\defparsebody tex-src/texinfo.tex /^\\def\\defparsebody #1#2#3{\\begingroup\\inENV% Enviro/
873Def_ ruby-src/test1.ru 12
874\defspecheader tex-src/texinfo.tex /^\\def\\defspecheader #1#2{\\doind {fn}{\\code{#1}}% Ma/
875\defspec tex-src/texinfo.tex /^\\def\\defspec{\\defparsebody\\Edefspec\\defspecx\\defsp/
876\defspecx tex-src/texinfo.tex /^\\def\\defspecx #1 {\\errmessage{@defspecx in invalid/
877DEFSYM c-src/emacs/src/lisp.h /^#define DEFSYM(sym, name) \/* empty *\/$/
878DEFSYM c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (SYMBOL_CONSTANT_P, int, (Lisp_Ob/
879\deftpargs tex-src/texinfo.tex /^\\def\\deftpargs #1{\\bf \\defvarargs{#1}}$/
880\deftpheader tex-src/texinfo.tex /^\\def\\deftpheader #1#2#3{\\doind {tp}{\\code{#2}}%$/
881\deftp tex-src/texinfo.tex /^\\def\\deftp{\\defvrparsebody\\Edeftp\\deftpx\\deftphead/
882\deftpx tex-src/texinfo.tex /^\\def\\deftpx #1 {\\errmessage{@deftpx in invalid con/
883\deftypefnheader tex-src/texinfo.tex /^\\def\\deftypefnheader #1#2#3{\\deftypefnheaderx{#1}{/
884\deftypefnheaderx tex-src/texinfo.tex /^\\def\\deftypefnheaderx #1#2#3 #4\\relax{%$/
885\deftypefn tex-src/texinfo.tex /^\\def\\deftypefn{\\defmethparsebody\\Edeftypefn\\deftyp/
886\deftypefnx tex-src/texinfo.tex /^\\def\\deftypefnx #1 {\\errmessage{@deftypefnx in inv/
887\deftypefunargs tex-src/texinfo.tex /^\\def\\deftypefunargs #1{%$/
888\deftypefunheader tex-src/texinfo.tex /^\\def\\deftypefunheader #1#2{\\deftypefunheaderx{#1}#/
889\deftypefunheaderx tex-src/texinfo.tex /^\\def\\deftypefunheaderx #1#2 #3\\relax{%$/
890\deftypefun tex-src/texinfo.tex /^\\def\\deftypefun{\\defparsebody\\Edeftypefun\\deftypef/
891\deftypeunx tex-src/texinfo.tex /^\\def\\deftypeunx #1 {\\errmessage{@deftypeunx in inv/
892\deftypevarheader tex-src/texinfo.tex /^\\def\\deftypevarheader #1#2{%$/
893\deftypevar tex-src/texinfo.tex /^\\def\\deftypevar{\\defvarparsebody\\Edeftypevar\\defty/
894\deftypevarx tex-src/texinfo.tex /^\\def\\deftypevarx #1 {\\errmessage{@deftypevarx in i/
895\deftypevrheader tex-src/texinfo.tex /^\\def\\deftypevrheader #1#2#3{\\doind {vr}{\\code{#3}}/
896\deftypevr tex-src/texinfo.tex /^\\def\\deftypevr{\\defvrparsebody\\Edeftypevr\\deftypev/
897\deftypevrx tex-src/texinfo.tex /^\\def\\deftypevrx #1 {\\errmessage{@deftypevrx in inv/
898DEFUN_ARGS_0 c-src/emacs/src/lisp.h 714
899DEFUN_ARGS_1 c-src/emacs/src/lisp.h 715
900DEFUN_ARGS_2 c-src/emacs/src/lisp.h 716
901DEFUN_ARGS_3 c-src/emacs/src/lisp.h 717
902DEFUN_ARGS_4 c-src/emacs/src/lisp.h 718
903DEFUN_ARGS_5 c-src/emacs/src/lisp.h 719
904DEFUN_ARGS_6 c-src/emacs/src/lisp.h 721
905DEFUN_ARGS_7 c-src/emacs/src/lisp.h 723
906DEFUN_ARGS_8 c-src/emacs/src/lisp.h 725
907DEFUN_ARGS_MANY c-src/emacs/src/lisp.h 712
908\defunargs tex-src/texinfo.tex /^\\def\\defunargs #1{\\functionparens \\sl$/
909DEFUN_ARGS_UNEVALLED c-src/emacs/src/lisp.h 713
910DEFUN c-src/emacs/src/lisp.h /^#define DEFUN(lname, fnname, sname, minargs, maxar/
911defun_func1 c.c /^defun_func1()$/
912DEFUN_func2 c.c /^DEFUN_func2()$/
913\defunheader tex-src/texinfo.tex /^\\def\\defunheader #1#2{\\doind {fn}{\\code{#1}}% Make/
914\defun tex-src/texinfo.tex /^\\def\\defun{\\defparsebody\\Edefun\\defunx\\defunheader/
915\defunx tex-src/texinfo.tex /^\\def\\defunx #1 {\\errmessage{@defunx in invalid con/
916\defvarargs tex-src/texinfo.tex /^\\def\\defvarargs #1{\\normalparens #1%$/
917DEFVAR_BOOL c-src/emacs/src/lisp.h /^#define DEFVAR_BOOL(lname, vname, doc) \\$/
918DEFVAR_BUFFER_DEFAULTS c-src/emacs/src/lisp.h /^#define DEFVAR_BUFFER_DEFAULTS(lname, vname, doc) /
919\defvarheader tex-src/texinfo.tex /^\\def\\defvarheader #1#2{\\doind {vr}{\\code{#1}}% Mak/
920DEFVAR_INT c-src/emacs/src/lisp.h /^#define DEFVAR_INT(lname, vname, doc) \\$/
921DEFVAR_KBOARD c-src/emacs/src/lisp.h /^#define DEFVAR_KBOARD(lname, vname, doc) \\$/
922DEFVAR_LISP c-src/emacs/src/lisp.h /^#define DEFVAR_LISP(lname, vname, doc) \\$/
923DEFVAR_LISP_NOPRO c-src/emacs/src/lisp.h /^#define DEFVAR_LISP_NOPRO(lname, vname, doc) \\$/
924\defvarparsebody tex-src/texinfo.tex /^\\def\\defvarparsebody #1#2#3{\\begingroup\\inENV% Env/
925\defvar tex-src/texinfo.tex /^\\def\\defvar{\\defvarparsebody\\Edefvar\\defvarx\\defva/
926\defvarx tex-src/texinfo.tex /^\\def\\defvarx #1 {\\errmessage{@defvarx in invalid c/
927\defvrheader tex-src/texinfo.tex /^\\def\\defvrheader #1#2#3{\\doind {vr}{\\code{#2}}%$/
928\defvrparsebody tex-src/texinfo.tex /^\\def\\defvrparsebody #1#2#3#4 {\\begingroup\\inENV %$/
929\defvr tex-src/texinfo.tex /^\\def\\defvr{\\defvrparsebody\\Edefvr\\defvrx\\defvrhead/
930\defvrx tex-src/texinfo.tex /^\\def\\defvrx #1 {\\errmessage{@defvrx in invalid con/
931delegate objc-src/Subprocess.m /^- delegate$/
932deleteItem pyt-src/server.py /^ def deleteItem(self):$/
933delete_kboard c-src/emacs/src/keyboard.c /^delete_kboard (KBOARD *kb)$/
934deliver_input_available_signal c-src/emacs/src/keyboard.c /^deliver_input_available_signal (int sig)$/
935deliver_interrupt_signal c-src/emacs/src/keyboard.c /^deliver_interrupt_signal (int sig)$/
936deliver_user_signal c-src/emacs/src/keyboard.c /^deliver_user_signal (int sig)$/
937depth c-src/emacs/src/lisp.h 1618
938derived_analyses prol-src/natded.prolog /^derived_analyses([],[]).$/
939describe_abbrev c-src/abbrev.c /^describe_abbrev (sym, stream)$/
940\description tex-src/texinfo.tex /^\\def\\description{\\tablez{\\dontindex}{1}{}{}{}{}}$/
941/desperatepapersize ps-src/rfc1245.ps /^\/desperatepapersize {$/
942detect_input_pending c-src/emacs/src/keyboard.c /^detect_input_pending (void)$/
943detect_input_pending_ignore_squeezables c-src/emacs/src/keyboard.c /^detect_input_pending_ignore_squeezables (void)$/
944detect_input_pending_run_timers c-src/emacs/src/keyboard.c /^detect_input_pending_run_timers (bool do_display)$/
945DEVICE_LAST c-src/h.h 24
946DEVICE_SWP c-src/h.h 23
947\dfn tex-src/texinfo.tex /^\\def\\dfn##1{\\realbackslash dfn {##1}}$/
948\df tex-src/texinfo.tex /^\\def\\df{\\let\\tentt=\\deftt \\let\\tenbf = \\defbf \\bf}/
949/DiacriticEncoding ps-src/rfc1245.ps /^\/DiacriticEncoding [$/
950dialog_loop erl-src/gs_dialog.erl /^dialog_loop(Module, Window, Frame, Extra, Args) ->/
951/dieresis ps-src/rfc1245.ps /^\/dieresis \/.notdef \/AE \/Oslash \/.notdef \/.notdef \//
952dignorerest c-src/etags.c 2463
953\direntry tex-src/texinfo.tex /^\\def\\direntry{\\begingroup\\direntryxxx}$/
954\direntryxxx tex-src/texinfo.tex /^\\long\\def\\direntryxxx #1\\end direntry{\\endgroup\\ig/
955discard-input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/
956discard_mouse_events c-src/emacs/src/keyboard.c /^discard_mouse_events (void)$/
957discrete_location cp-src/clheir.hpp 56
958discrete_location cp-src/clheir.hpp /^ discrete_location(int xi, int yi, int zi):$/
959display cp-src/conway.cpp /^void display(void)$/
960\display tex-src/texinfo.tex /^\\def\\display{\\begingroup\\inENV %This group ends at/
961DisposeANameList pas-src/common.pas /^procedure DisposeANameList( $/
962DisposeNameList pas-src/common.pas /^procedure DisposeNameList;$/
963disposetextstring pas-src/common.pas /^procedure disposetextstring;(*($/
964/dmatrix ps-src/rfc1245.ps /^\/dmatrix matrix def$/
965\dmn tex-src/texinfo.tex /^\\def\\dmn#1{\\thinspace #1}$/
966dnone c-src/etags.c 2460
967/dnormalize ps-src/rfc1245.ps /^\/dnormalize {$/
968\dobreak tex-src/texinfo.tex /^\\def\\dobreak#1#2{\\par\\ifdim\\lastskip<#1\\removelast/
969doc c-src/emacs/src/lisp.h 1689
970\dochapentry tex-src/texinfo.tex /^\\def\\dochapentry#1#2{%$/
971\docodeindex tex-src/texinfo.tex /^\\def\\docodeindex#1{\\edef\\indexname{#1}\\parsearg\\si/
972dog cp-src/c.C 126
973dog cp-src/c.C 130
974dog c-src/h.h 81
975\doindex tex-src/texinfo.tex /^\\def\\doindex#1{\\edef\\indexname{#1}\\parsearg\\single/
976\doind tex-src/texinfo.tex /^\\def\\doind #1#2{%$/
977\donoderef tex-src/texinfo.tex /^\\def\\donoderef{\\ifx\\lastnode\\relax\\else$/
978\dontindex tex-src/texinfo.tex /^\\def\\dontindex #1{}$/
979\dopageno tex-src/texinfo.tex /^\\def\\dopageno#1{{\\rm #1}}$/
980\doprintindex tex-src/texinfo.tex /^\\def\\doprintindex#1{%$/
981\dosecentry tex-src/texinfo.tex /^\\def\\dosecentry#1#2{%$/
982\dosetq tex-src/texinfo.tex /^\\def\\dosetq #1#2{{\\let\\folio=0 \\turnoffactive%$/
983\doshortpageno tex-src/texinfo.tex /^\\def\\doshortpageno#1{{\\rm #1}}$/
984DOS_NT c-src/etags.c 117
985DOS_NT c-src/etags.c 118
986\dosubind tex-src/texinfo.tex /^\\def\\dosubind #1#2#3{%$/
987\dosubsecentry tex-src/texinfo.tex /^\\def\\dosubsecentry#1#2{%$/
988\dosubsubsecentry tex-src/texinfo.tex /^\\def\\dosubsubsecentry#1#2{%$/
989dotfill tex-src/texinfo.tex /^\\noindent\\hskip\\secondaryindent\\hbox{#1}\\indexdotf/
990dotfill tex-src/texinfo.tex /^ \\null\\nobreak\\indexdotfill % Have leaders before/
991\dots tex-src/texinfo.tex /^\\def\\dots{$\\ldots$}$/
992\dots tex-src/texinfo.tex /^\\def\\dots{\\realbackslash dots }%$/
993\dots tex-src/texinfo.tex /^\\def\\dots{\\realbackslash dots}$/
994double_click_count c-src/emacs/src/keyboard.c 5222
995\doublecolumnout tex-src/texinfo.tex /^\\def\\doublecolumnout{\\splittopskip=\\topskip \\split/
996/dpi ps-src/rfc1245.ps /^\/dpi 72 0 dmatrix defaultmatrix dtransform$/
997/D ps-src/rfc1245.ps /^\/D {curveto} bind def$/
998drag_n_drop_syms c-src/emacs/src/keyboard.c 4629
999dribble c-src/emacs/src/keyboard.c 236
1000dsharpseen c-src/etags.c 2461
1001dummies tex-src/texinfo.tex /^{\\indexdummies % Must do this here, since \\bf, etc/
1002dummy1 cp-src/burton.cpp /^::dummy::dummy test::dummy1(void)$/
1003dummy2 cp-src/burton.cpp /^::dummy::dummy test::dummy2(::CORBA::Long dummy)$/
1004dummy3 cp-src/burton.cpp /^::dummy::dummy test::dummy3(char* name, ::CORBA::L/
1005dummydots tex-src/texinfo.tex /^\\let\\dots=\\indexdummydots$/
1006dummyfont tex-src/texinfo.tex /^\\let\\b=\\indexdummyfont$/
1007dummyfont tex-src/texinfo.tex /^\\let\\code=\\indexdummyfont$/
1008dummyfont tex-src/texinfo.tex /^\\let\\emph=\\indexdummyfont$/
1009dummyfont tex-src/texinfo.tex /^\\let\\file=\\indexdummyfont$/
1010dummyfont tex-src/texinfo.tex /^\\let\\i=\\indexdummyfont$/
1011dummyfont tex-src/texinfo.tex /^\\let\\kbd=\\indexdummyfont$/
1012dummyfont tex-src/texinfo.tex /^\\let\\key=\\indexdummyfont$/
1013dummyfont tex-src/texinfo.tex /^\\let\\r=\\indexdummyfont$/
1014dummyfont tex-src/texinfo.tex /^\\let\\samp=\\indexdummyfont$/
1015dummyfont tex-src/texinfo.tex /^\\let\\sc=\\indexdummyfont$/
1016dummyfont tex-src/texinfo.tex /^\\let\\strong=\\indexdummyfont$/
1017dummyfont tex-src/texinfo.tex /^\\let\\tclose=\\indexdummyfont$/
1018dummyfont tex-src/texinfo.tex /^\\let\\t=\\indexdummyfont$/
1019dummyfont tex-src/texinfo.tex /^\\let\\var=\\indexdummyfont$/
1020dummyfont tex-src/texinfo.tex /^\\let\\w=\\indexdummyfont$/
1021dummytex tex-src/texinfo.tex /^\\let\\TeX=\\indexdummytex$/
1022DUMPED c-src/emacs/src/gmalloc.c 80
1023dump pyt-src/server.py /^ def dump(self, folded):$/
1024eabs c-src/emacs/src/lisp.h /^#define eabs(x) ((x) < 0 ? -(x) : (x))$/
1025\Ealphaenumerate tex-src/texinfo.tex /^\\def\\Ealphaenumerate{\\Eenumerate}$/
1026eassert c-src/emacs/src/lisp.h /^# define eassert(cond) \\$/
1027eassert c-src/emacs/src/lisp.h /^# define eassert(cond) ((void) (false && (cond))) /
1028eassume c-src/emacs/src/lisp.h /^# define eassume(cond) \\$/
1029eassume c-src/emacs/src/lisp.h /^# define eassume(cond) assume (cond)$/
1030eax c-src/sysdep.h 31
1031eax c-src/sysdep.h 33
1032\Ecapsenumerate tex-src/texinfo.tex /^\\def\\Ecapsenumerate{\\Eenumerate}$/
1033\Ecartouche tex-src/texinfo.tex /^\\def\\Ecartouche{%$/
1034echo_add_key c-src/emacs/src/keyboard.c /^echo_add_key (Lisp_Object c)$/
1035echo_char c-src/emacs/src/keyboard.c /^echo_char (Lisp_Object c)$/
1036echo_dash c-src/emacs/src/keyboard.c /^echo_dash (void)$/
1037echoing c-src/emacs/src/keyboard.c 154
1038echo_kboard c-src/emacs/src/keyboard.c 166
1039echo_keystrokes_p c-src/emacs/src/keyboard.c /^echo_keystrokes_p (void)$/
1040echo_length c-src/emacs/src/keyboard.c /^echo_length (void)$/
1041echo_message_buffer c-src/emacs/src/keyboard.c 171
1042echo_now c-src/emacs/src/keyboard.c /^echo_now (void)$/
1043echo_truncate c-src/emacs/src/keyboard.c /^echo_truncate (ptrdiff_t nchars)$/
1044\Edescription tex-src/texinfo.tex /^\\def\\Edescription{\\Etable}% Necessary kludge.$/
1045%ediff make-src/Makefile /^%ediff: ETAGS% ETAGS ${infiles}$/
1046\Edisplay tex-src/texinfo.tex /^\\def\\Edisplay{\\endgroup\\afterenvbreak}%$/
1047editItem pyt-src/server.py /^ def editItem(self):$/
1048editsite pyt-src/server.py /^ def editsite(self, site):$/
1049edituser pyt-src/server.py /^ def edituser(self, user):$/
1050\Eexample tex-src/texinfo.tex /^\\def\\Eexample{\\Elisp}$/
1051\Eflushleft tex-src/texinfo.tex /^\\def\\Eflushleft{\\endgroup\\afterenvbreak}%$/
1052\Eflushright tex-src/texinfo.tex /^\\def\\Eflushright{\\endgroup\\afterenvbreak}%$/
1053\Eformat tex-src/texinfo.tex /^\\def\\Eformat{\\endgroup\\afterenvbreak}$/
1054\Eftable tex-src/texinfo.tex /^\\def\\Eftable{\\endgraf\\endgroup\\afterenvbreak}%$/
1055egetenv c-src/emacs/src/lisp.h /^egetenv (const char *var)$/
1056\Egroup tex-src/texinfo.tex /^ \\def\\Egroup{\\egroup\\endgroup}%$/
1057\Eifclear tex-src/texinfo.tex /^\\def\\Eifclear{}$/
1058\Eifset tex-src/texinfo.tex /^\\def\\Eifset{}$/
1059\Eiftex tex-src/texinfo.tex /^\\def\\Eiftex{}$/
1060ELEM_I c-src/h.h 3
1061\Elisp tex-src/texinfo.tex /^\\def\\Elisp{\\endgroup\\afterenvbreak}%$/
1062ELSRC make-src/Makefile /^ELSRC=TAGTEST.EL emacs\/lisp\/progmodes\/etags.el$/
1063emacs_abort c-src/emacs/src/lisp.h /^extern _Noreturn void emacs_abort (void) NO_INLINE/
1064EMACS_INT c-src/emacs/src/lisp.h 103
1065EMACS_INT c-src/emacs/src/lisp.h 91
1066EMACS_INT c-src/emacs/src/lisp.h 96
1067EMACS_INT_MAX c-src/emacs/src/lisp.h 105
1068EMACS_INT_MAX c-src/emacs/src/lisp.h 93
1069EMACS_INT_MAX c-src/emacs/src/lisp.h 98
1070EMACS_LISP_H c-src/emacs/src/lisp.h 22
1071EMACS_NAME c-src/etags.c 786
1072EMACS_UINT c-src/emacs/src/lisp.h 104
1073EMACS_UINT c-src/emacs/src/lisp.h 92
1074EMACS_UINT c-src/emacs/src/lisp.h 97
1075\emph tex-src/texinfo.tex /^\\def\\emph##1{\\realbackslash emph {##1}}$/
1076EmptyNmStr pas-src/common.pas /^function EmptyNmStr(* : NameString*);$/
1077/ENDBITMAP ps-src/rfc1245.ps /^\/ENDBITMAP {$/
1078end c-src/emacs/src/keyboard.c 8753
1079end c-src/emacs/src/lisp.h 2039
1080end c-src/emacs/src/regex.h 432
1081\enddoublecolumns tex-src/texinfo.tex /^\\def\\enddoublecolumns{\\output={\\balancecolumns}\\ej/
1082/ENDPRINTCODE ps-src/rfc1245.ps /^\/ENDPRINTCODE {$/
1083\end tex-src/texinfo.tex /^\\def\\end{\\parsearg\\endxxx}$/
1084endtoken c-src/etags.c /^#define endtoken(c) (_etk[CHAR (c)]) \/* c ends tok/
1085\endxxx tex-src/texinfo.tex /^\\def\\endxxx #1{%$/
1086enter_critical_section c-src/h.h 116
1087ENTRY c-src/sysdep.h /^#define ENTRY(name) \\$/
1088entry perl-src/htlmify-cystic 218
1089entry perl-src/htlmify-cystic 234
1090entry perl-src/htlmify-cystic 245
1091entry perl-src/htlmify-cystic 252
1092entry perl-src/htlmify-cystic 268
1093entry perl-src/htlmify-cystic 276
1094entry perl-src/htlmify-cystic 281
1095entry perl-src/htlmify-cystic 296
1096\entry tex-src/texinfo.tex /^\\def\\entry #1#2{\\begingroup$/
1097ENUM_BF c-src/emacs/src/lisp.h /^#define ENUM_BF(TYPE) enum TYPE$/
1098ENUM_BF c-src/emacs/src/lisp.h /^#define ENUM_BF(TYPE) unsigned int$/
1099\enumerate tex-src/texinfo.tex /^\\def\\enumerate{\\parsearg\\enumeratezzz}$/
1100\enumeratey tex-src/texinfo.tex /^\\def\\enumeratey #1 #2\\endenumeratey{%$/
1101\enumeratezzz tex-src/texinfo.tex /^\\def\\enumeratezzz #1{\\enumeratey #1 \\endenumerate/
1102\ENVcheck tex-src/texinfo.tex /^\\def\\ENVcheck{%$/
1103Environment tex-src/gzip.texi /^@node Environment, Tapes, Advanced usage, Top$/
1104/E ps-src/rfc1245.ps /^\/E {lineto} bind def$/
1105EQ c-src/emacs/src/lisp.h /^# define EQ(x, y) lisp_h_EQ (x, y)$/
1106equalsKey objcpp-src/SimpleCalc.M /^- equalsKey:sender$/
1107EQUAL y-src/cccp.c 12
1108\equiv tex-src/texinfo.tex /^\\def\\equiv{\\leavevmode\\lower.1ex\\hbox to 1em{\\hfil/
1109\equiv tex-src/texinfo.tex /^\\def\\equiv{\\realbackslash equiv}$/
1110\Equotation tex-src/texinfo.tex /^\\def\\Equotation{\\par\\endgroup\\afterenvbreak}%$/
1111erlang_atom c-src/etags.c /^erlang_atom (char *s)$/
1112erlang_attribute c-src/etags.c /^erlang_attribute (char *s)$/
1113erlang_func c-src/etags.c /^erlang_func (char *s, char *last)$/
1114Erlang_functions c-src/etags.c /^Erlang_functions (FILE *inf)$/
1115Erlang_help c-src/etags.c 567
1116Erlang_suffixes c-src/etags.c 565
1117ERLSRC make-src/Makefile /^ERLSRC=gs_dialog.erl lines.erl lists.erl$/
1118error c-src/emacs/src/lisp.h /^extern _Noreturn void error (const char *, ...) AT/
1119error c-src/etags.c /^error (const char *format, ...)$/
1120error c-src/etags.c /^static void error (const char *, ...) ATTRIBUTE_FO/
1121\errorE tex-src/texinfo.tex /^\\def\\errorE#1{$/
1122Error_Information/t ada-src/2ataspri.ads /^ type Error_Information is new Interfaces.C.POSI/
1123error_signaled c-src/etags.c 264
1124\error tex-src/texinfo.tex /^\\def\\error{\\leavevmode\\lower.7ex\\copy\\errorbox}$/
1125ERROR y-src/cccp.c 9
1126error y-src/cccp.y /^error (msg)$/
1127ERROR y-src/parse.y 304
1128ErrStrToNmStr pas-src/common.pas /^function ErrStrToNmStr;(*($/
1129\Esmallexample tex-src/texinfo.tex /^\\def\\Esmallexample{\\Elisp}$/
1130\Esmallexample tex-src/texinfo.tex /^\\global\\def\\Esmallexample{\\Esmalllisp}$/
1131\Esmalllisp tex-src/texinfo.tex /^\\def\\Esmalllisp{\\endgroup\\afterenvbreak}%$/
1132\Etable tex-src/texinfo.tex /^\\def\\Etable{\\endgraf\\endgroup\\afterenvbreak}%$/
1133ETAGS12 make-src/Makefile /^ETAGS12: etags12 ${infiles}$/
1134ETAGS13 ETAGS14 ETAGS15 make-src/Makefile /^ETAGS13 ETAGS14 ETAGS15: etags% ${infiles}$/
1135etags.1.man make-src/Makefile /^etags.1.man: etags.1$/
1136etags el-src/emacs/lisp/progmodes/etags.el /^(defgroup etags nil "Tags tables."$/
1137etags-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-file-of-tag (&optional relative) ; Do/
1138etags_getcwd c-src/etags.c /^etags_getcwd (void)$/
1139etags-goto-tag-location el-src/emacs/lisp/progmodes/etags.el /^(defun etags-goto-tag-location (tag-info)$/
1140etags html-src/software.html /^Etags$/
1141etags-list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun etags-list-tags (file) ; Doc string?$/
1142etags make-src/Makefile /^etags: etags.c ${OBJS}$/
1143ETAGS make-src/Makefile /^ETAGS: FRC etags ${infiles}$/
1144ETAGS% make-src/Makefile /^ETAGS%: FRC etags% ${infiles}$/
1145etags-recognize-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-recognize-tags-table ()$/
1146etags-snarf-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-snarf-tag (&optional use-explicit) ; /
1147etags-tags-apropos-additional el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-apropos-additional (regexp)$/
1148etags-tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-apropos (string) ; Doc string?$/
1149etags-tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-completion-table () ; Doc string/
1150etags-tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-included-tables () ; Doc string?/
1151etags-tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-table-files () ; Doc string?$/
1152etags-verify-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-verify-tags-table ()$/
1153etags--xref-find-definitions el-src/emacs/lisp/progmodes/etags.el /^(defun etags--xref-find-definitions (pattern &opti/
1154etags-xref-find-definitions-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar etags-xref-find-definitions-tag-order '(ta/
1155etags-xref-find el-src/emacs/lisp/progmodes/etags.el /^(defun etags-xref-find (action id)$/
1156etags--xref-limit el-src/emacs/lisp/progmodes/etags.el /^(defconst etags--xref-limit 1000)$/
1157\Etitlepage tex-src/texinfo.tex /^\\def\\Etitlepage{%$/
1158eval_dyn c-src/emacs/src/keyboard.c /^eval_dyn (Lisp_Object form)$/
1159\evenfooting tex-src/texinfo.tex /^\\def\\evenfooting{\\parsearg\\evenfootingxxx}$/
1160\evenheading tex-src/texinfo.tex /^\\def\\evenheading{\\parsearg\\evenheadingxxx}$/
1161event-convert-list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, /
1162event_head c-src/emacs/src/keyboard.c 11021
1163event-symbol-parse-modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/
1164event_to_kboard c-src/emacs/src/keyboard.c /^event_to_kboard (struct input_event *event)$/
1165\everyfooting tex-src/texinfo.tex /^\\def\\everyfooting{\\parsearg\\everyfootingxxx}$/
1166\everyheading tex-src/texinfo.tex /^\\def\\everyheading{\\parsearg\\everyheadingxxx}$/
1167\Evtable tex-src/texinfo.tex /^\\def\\Evtable{\\endgraf\\endgroup\\afterenvbreak}%$/
1168\ewbot tex-src/texinfo.tex /^\\def\\ewbot{\\vrule height0pt depth\\cornerthick widt/
1169\ewtop tex-src/texinfo.tex /^\\def\\ewtop{\\vrule height\\cornerthick depth0pt widt/
1170exact c-src/emacs/src/gmalloc.c 200
1171/exclamdown ps-src/rfc1245.ps /^\/exclamdown \/logicalnot \/.notdef \/florin \/.notdef /
1172\exdent tex-src/texinfo.tex /^\\def\\exdent{\\parsearg\\exdentyyy}$/
1173\exdentyyy tex-src/texinfo.tex /^\\def\\exdentyyy #1{{\\hfil\\break\\hbox{\\kern -\\exdent/
1174execute cp-src/c.C /^ void execute(CPluginCSCState& p, int w, in/
1175EXFUN c-src/emacs/src/lisp.h /^#define EXFUN(fnname, maxargs) \\$/
1176exit_critical_to_previous c-src/h.h 117
1177exit c-src/exit.c /^DEFUN(exit, (status), int status)$/
1178exit c-src/exit.strange_suffix /^DEFUN(exit, (status), int status)$/
1179Exit_LL_Task/p ada-src/2ataspri.adb /^ procedure Exit_LL_Task is$/
1180Exit_LL_Task/p ada-src/2ataspri.ads /^ procedure Exit_LL_Task;$/
1181exit-recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/
1182exp1 y-src/cccp.y 148
1183expand-abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/
1184expandmng prol-src/natded.prolog /^expandmng(var(V),var(V)).$/
1185expandmng_tree prol-src/natded.prolog /^expandmng_tree(tree(Rule,Syn:Sem,Trees),$/
1186expandmng_trees prol-src/natded.prolog /^expandmng_trees([],[]).$/
1187expandsyn prol-src/natded.prolog /^expandsyn(Syn,Syn):-$/
1188\expansion tex-src/texinfo.tex /^\\def\\expansion{\\leavevmode\\raise.1ex\\hbox to 1em{\\/
1189\expansion tex-src/texinfo.tex /^\\def\\expansion{\\realbackslash expansion}$/
1190explicitly-quoted-pending-delete-mode el-src/TAGTEST.EL /^(defalias (quote explicitly-quoted-pending-delete-/
1191exp_list y-src/parse.y 263
1192expression_value y-src/cccp.y 68
1193exp y-src/atest.y 2
1194exp y-src/cccp.y 156
1195exp y-src/cccp.y 185
1196exp y-src/parse.y 95
1197EXTAGS make-src/Makefile /^EXTAGS: extags ${infiles} Makefile$/
1198EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 3497
1199EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 4372
1200ExtractCommentInfo pas-src/common.pas /^procedure ExtractCommentInfo; (*($/
1201extras c-src/emacs/src/lisp.h 1603
1202extvar c-src/h.h 109
1203f1 c.c /^ f1 () { \/* Do something. *\/; }$/
1204f1 perl-src/kai-test.pl /^sub f1 {$/
1205f2 c.c /^void f2 () { \/* Do something. *\/; }$/
1206f2 perl-src/kai-test.pl /^sub main::f2 {$/
1207f3 perl-src/kai-test.pl /^sub f3 {$/
1208f4 perl-src/kai-test.pl /^sub Bar::f4 {$/
1209f5 perl-src/kai-test.pl /^sub f5 {$/
1210f6 perl-src/kai-test.pl /^sub f6 {$/
1211f7 perl-src/kai-test.pl /^sub f7 {$/
1212Fabbrev_expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/
1213Fabbrev_symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/
1214Fabort_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("abort-recursive-edit", Fabort_recursive_ed/
1215=/f ada-src/etags-test-for.ada /^ function "=" (L, R : System.Address) return Boo/
1216Fails_t c-src/h.h 5
1217/fakecolorsetup ps-src/rfc1245.ps /^\/fakecolorsetup {$/
1218FASTCFLAGS make-src/Makefile /^FASTCFLAGS=-O3 -finline-functions -ffast-math -fun/
1219FASTCFLAGSWARN make-src/Makefile /^FASTCFLAGSWARN=${WARNINGS} -Werror ${FASTCFLAGS}$/
1220fastctags make-src/Makefile /^fastctags:$/
1221fastetags make-src/Makefile /^fastetags:$/
1222fastmap_accurate c-src/emacs/src/regex.h 383
1223fastmap c-src/emacs/src/regex.h 355
1224fast_string_match_ignore_case c-src/emacs/src/lisp.h /^fast_string_match_ignore_case (Lisp_Object regexp,/
1225fatala c.c /^void fatala () __attribute__ ((noreturn));$/
1226fatal c-src/etags.c /^fatal (const char *s1, const char *s2)$/
1227f c.c 145
1228f c.c 156
1229f c.c 168
1230f c.c /^int f$/
1231Fclear_abbrev_table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, /
1232Fclear_this_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/
1233Fcommand_error_default_function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/
1234fconst forth-src/test-forth.fth /^3.1415e fconstant fconst$/
1235f cp-src/c.C /^A<float,B<int> > A<B<float>,int>::f(A<int>* x) {}$/
1236f cp-src/c.C /^A<int>* f() {}$/
1237f cp-src/c.C /^class B<int> { void f() {} };$/
1238f cp-src/c.C /^int A<int>::f(A<int>* x) {}$/
1239f cp-src/c.C /^int f(A<int> x) {}$/
1240f cp-src/c.C /^ int f(){return 0;}; \/\/ first comment$/
1241f cp-src/c.C /^ void f() {}$/
1242f cp-src/fail.C /^int A::B::f() { return 2; }$/
1243f cp-src/fail.C /^ int f() { return 5; }$/
1244f c-src/c.c /^T f(){if(x){}$/
1245f c-src/h.h 89
1246Fcurrent_idle_time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/
1247Fcurrent_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("current-input-mode", Fcurrent_input_mode, /
1248Fdefine_abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/
1249Fdefine_abbrev_table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/
1250Fdefine_global_abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/
1251Fdefine_mode_abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, /
1252fdefunkey c-src/etags.c 2409
1253fdefunname c-src/etags.c 2410
1254fdesc c-src/etags.c 201
1255fdesc c-src/etags.c 212
1256fdHandler objc-src/Subprocess.m /^- fdHandler:(int)theFd$/
1257fdHandler objc-src/Subprocess.m /^fdHandler (int theFd, id self)$/
1258Fdiscard_input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/
1259fdp c-src/etags.c 217
1260Fevent_convert_list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, /
1261Fevent_symbol_parse_modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/
1262Fexit_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/
1263Fexpand_abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/
1264ff cp-src/c.C /^ int ff(){return 1;};$/
1265F_getit c-src/etags.c /^F_getit (FILE *inf)$/
1266>field1 forth-src/test-forth.fth /^ 9 field >field1$/
1267>field2 forth-src/test-forth.fth /^ 5 field >field2$/
1268field_of_play cp-src/conway.cpp 18
1269fignore c-src/etags.c 2416
1270file_end perl-src/htlmify-cystic /^sub file_end ()$/
1271file_index perl-src/htlmify-cystic 33
1272fileJoin php-src/lce_functions.php /^ function fileJoin()$/
1273filename_is_absolute c-src/etags.c /^filename_is_absolute (char *fn)$/
1274filenames c-src/etags.c 196
1275file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun file-of-tag (&optional relative)$/
1276file-of-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar file-of-tag-function nil$/
1277\file tex-src/texinfo.tex /^\\def\\file##1{\\realbackslash file {##1}}%$/
1278\file tex-src/texinfo.tex /^\\def\\file##1{\\realbackslash file {##1}}$/
1279file_tocs perl-src/htlmify-cystic 30
1280/fillprocs ps-src/rfc1245.ps /^\/fillprocs 32 array def$/
1281FILTER make-src/Makefile /^FILTER=grep -v '\\.[Cchefy][lor]*,[1-9][0-9]*' || t/
1282FINAL_FREE_BLOCKS c-src/emacs/src/gmalloc.c 135
1283Finalize_Cond/p ada-src/2ataspri.adb /^ procedure Finalize_Cond (Cond : in out Conditio/
1284Finalize_Cond/p ada-src/2ataspri.ads /^ procedure Finalize_Cond (Cond : in out Conditio/
1285Finalize_Lock/p ada-src/2ataspri.adb /^ procedure Finalize_Lock (L : in out Lock) is$/
1286Finalize_Lock/p ada-src/2ataspri.ads /^ procedure Finalize_Lock (L : in out Lock);$/
1287FINALIZERP c-src/emacs/src/lisp.h /^FINALIZERP (Lisp_Object x)$/
1288Finalize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Finalize_TAS_Cell (Cell : in out TAS_/
1289Finalize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Finalize_TAS_Cell (Cell : in out TA/
1290\finalout tex-src/texinfo.tex /^\\def\\finalout{\\overfullrule=0pt}$/
1291findcats prol-src/natded.prolog /^findcats([],Left,Left).$/
1292find_entries c-src/etags.c /^find_entries (FILE *inf)$/
1293\findex tex-src/texinfo.tex /^\\def\\findex {\\fnindex}$/
1294find-tag-default-function el-src/emacs/lisp/progmodes/etags.el /^(defcustom find-tag-default-function nil$/
1295find-tag el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag (tagname &optional next-p regexp-p/
1296find-tag-history el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-history nil) ; Doc string?$/
1297find-tag-hook el-src/emacs/lisp/progmodes/etags.el /^(defcustom find-tag-hook nil$/
1298find-tag-in-order el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-in-order (pattern$/
1299find-tag-interactive el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-interactive (prompt &optional no-d/
1300find-tag-marker-ring el-src/emacs/lisp/progmodes/etags.el /^(defvaralias 'find-tag-marker-ring 'xref--marker-r/
1301find-tag-marker-ring-length el-src/emacs/lisp/progmodes/etags.el /^(define-obsolete-variable-alias 'find-tag-marker-r/
1302find-tag-next-line-after-failure-p el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-next-line-after-failure-p nil$/
1303find-tag-noselect el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-noselect (tagname &optional next-p/
1304find-tag-other-frame el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-other-frame (tagname &optional nex/
1305find-tag-other-window el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-other-window (tagname &optional ne/
1306find-tag-regexp el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-regexp (regexp &optional next-p ot/
1307find-tag-regexp-next-line-after-failure-p el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-regexp-next-line-after-failure-p /
1308find-tag-regexp-search-function el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-regexp-search-function nil$/
1309find-tag-regexp-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-regexp-tag-order nil$/
1310find-tag-search-function el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-search-function nil$/
1311find-tag-tag el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-tag (string)$/
1312find-tag-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-tag-order nil$/
1313find_user_signal_name c-src/emacs/src/keyboard.c /^find_user_signal_name (int sig)$/
1314finish_appendices perl-src/htlmify-cystic /^sub finish_appendices ()$/
1315finish_sections perl-src/htlmify-cystic /^sub finish_sections ()$/
1316finish_subsections perl-src/htlmify-cystic /^sub finish_subsections ()$/
1317finish_subsubsections perl-src/htlmify-cystic /^sub finish_subsubsections ()$/
1318\finishtitlepage tex-src/texinfo.tex /^\\def\\finishtitlepage{%$/
1319finlist c-src/etags.c 2414
1320Finput_pending_p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/
1321Finsert_abbrev_table_description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/
1322First100Chars pas-src/common.pas /^procedure First100Chars; (*($/
1323first c-src/emacs/src/gmalloc.c 151
1324fitchtreelist prol-src/natded.prolog /^fitchtreelist([]).$/
1325FIXNUM_BITS c-src/emacs/src/lisp.h 252
1326FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^#define FIXNUM_OVERFLOW_P(i) \\$/
1327FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (EQ, bool, (Lisp_Object x, Lisp_O/
1328fixup_locale c-src/emacs/src/lisp.h /^INLINE void fixup_locale (void) {}$/
1329flag2str pyt-src/server.py /^def flag2str(value, string):$/
1330flag c-src/getopt.h 83
1331flistseen c-src/etags.c 2415
1332FLOATP c-src/emacs/src/lisp.h /^# define FLOATP(x) lisp_h_FLOATP (x)$/
1333FLOAT_TO_STRING_BUFSIZE c-src/emacs/src/lisp.h 3927
1334/fl ps-src/rfc1245.ps /^\/fl { $/
1335\flushcr tex-src/texinfo.tex /^\\def\\flushcr{\\ifx\\par\\lisppar \\def\\next##1{}\\else /
1336\flushleft tex-src/texinfo.tex /^\\def\\flushleft{%$/
1337\flushright tex-src/texinfo.tex /^\\def\\flushright{%$/
1338Fmake_abbrev_table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/
1339/FMBEGINEPSF ps-src/rfc1245.ps /^\/FMBEGINEPSF { $/
1340/FMBEGINPAGE ps-src/rfc1245.ps /^\/FMBEGINPAGE { $/
1341/Fmcc ps-src/rfc1245.ps /^\/Fmcc {$/
1342/FMDEFINEFONT ps-src/rfc1245.ps /^\/FMDEFINEFONT { $/
1343/FMDOCUMENT ps-src/rfc1245.ps /^\/FMDOCUMENT { $/
1344/FMENDEPSF ps-src/rfc1245.ps /^\/FMENDEPSF {$/
1345/FMENDPAGE ps-src/rfc1245.ps /^\/FMENDPAGE {$/
1346/FMLOCAL ps-src/rfc1245.ps /^\/FMLOCAL {$/
1347/FMNORMALIZEGRAPHICS ps-src/rfc1245.ps /^\/FMNORMALIZEGRAPHICS { $/
1348/FMVERSION ps-src/rfc1245.ps /^\/FMVERSION {$/
1349/FMversion ps-src/rfc1245.ps /^\/FMversion (2.0) def $/
1350fn c-src/exit.c /^ void EXFUN((*fn[1]), (NOARGS));$/
1351fn c-src/exit.strange_suffix /^ void EXFUN((*fn[1]), (NOARGS));$/
1352fnin y-src/parse.y 68
1353\fnitemindex tex-src/texinfo.tex /^\\def\\fnitemindex #1{\\doind {fn}{\\code{#1}}}%$/
1354focus_set pyt-src/server.py /^ def focus_set(self):$/
1355follow_key c-src/emacs/src/keyboard.c /^follow_key (Lisp_Object keymap, Lisp_Object key)$/
1356fonts\rm tex-src/texinfo.tex /^ \\indexfonts\\rm \\tolerance=9500 \\advance\\baseline/
1357fonts tex-src/texinfo.tex /^\\obeyspaces \\obeylines \\ninett \\indexfonts \\rawbac/
1358foo1 ruby-src/test1.ru /^ attr_reader(:foo1, :bar1, # comment$/
1359foo2 ruby-src/test1.ru /^ alias_method ( :foo2, #cmmt$/
1360foobar2_ c-src/h.h 16
1361foobar2 c-src/h.h 20
1362foobar c.c /^extern void foobar (void) __attribute__ ((section /
1363foobar c-src/c.c /^int foobar() {;}$/
1364foo==bar el-src/TAGTEST.EL /^(defun foo==bar () (message "hi")) ; Bug#5624$/
1365Foo::Bar perl-src/kai-test.pl /^package Foo::Bar;$/
1366foo c.c 150
1367foo c.c 166
1368foo c.c 167
1369foo c.c 178
1370foo c.c 189
1371foo cp-src/c.C 68
1372foo cp-src/c.C 79
1373foo cp-src/c.C /^ foo() {$/
1374foo cp-src/x.cc /^XX::foo()$/
1375foo c-src/h.h 18
1376(foo) forth-src/test-forth.fth /^: (foo) 1 ;$/
1377foo forth-src/test-forth.fth /^: foo (foo) ;$/
1378foo f-src/entry.for /^ character*(*) function foo()$/
1379foo f-src/entry.strange /^ character*(*) function foo()$/
1380foo f-src/entry.strange_suffix /^ character*(*) function foo()$/
1381Foo perl-src/kai-test.pl /^package Foo;$/
1382foo php-src/ptest.php /^foo()$/
1383foo ruby-src/test1.ru /^ attr_reader :foo$/
1384foo! ruby-src/test1.ru /^ def foo!$/
1385Fopen_dribble_file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/
1386foperator c-src/etags.c 2411
1387force_auto_save_soon c-src/emacs/src/keyboard.c /^force_auto_save_soon (void)$/
1388force_explicit_name c-src/etags.c 265
1389force_quit_count c-src/emacs/src/keyboard.c 10387
1390FOR_EACH_ALIST_VALUE c-src/emacs/src/lisp.h /^#define FOR_EACH_ALIST_VALUE(head_var, list_var, v/
1391FOR_EACH_TAIL c-src/emacs/src/lisp.h /^#define FOR_EACH_TAIL(hare, list, tortoise, n) \\$/
1392foreign_export merc-src/accumulator.m /^:- pragma foreign_export("C", unravel_univ(in, out/
1393formatSize objc-src/PackInsp.m /^-(const char *)formatSize:(const char *)size inBuf/
1394\format tex-src/texinfo.tex /^\\def\\format{\\begingroup\\inENV %This group ends at /
1395Forth_help c-src/etags.c 573
1396FORTHSRC make-src/Makefile /^FORTHSRC=test-forth.fth$/
1397Forth_suffixes c-src/etags.c 571
1398Forth_words c-src/etags.c /^Forth_words (FILE *inf)$/
1399Fortran_functions c-src/etags.c /^Fortran_functions (FILE *inf)$/
1400Fortran_help c-src/etags.c 579
1401Fortran_suffixes c-src/etags.c 577
1402found c-src/emacs/src/lisp.h 2344
1403Fposn_at_point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/
1404Fposn_at_x_y c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, /
1405/F ps-src/rfc1245.ps /^\/F { $/
1406fracas html-src/software.html /^Fracas$/
1407/fraction ps-src/rfc1245.ps /^\/fraction \/currency \/guilsinglleft \/guilsinglright/
1408frag c-src/emacs/src/gmalloc.c 152
1409_fraghead c-src/emacs/src/gmalloc.c 370
1410/FrameDict ps-src/rfc1245.ps /^\/FrameDict 190 dict def $/
1411frame_local c-src/emacs/src/lisp.h 2341
1412FRAMEP c-src/emacs/src/lisp.h /^FRAMEP (Lisp_Object a)$/
1413FRC make-src/Makefile /^FRC:;$/
1414Fread_key_sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/
1415Fread_key_sequence_vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/
1416Frecent_keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, /
1417Frecursion_depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/
1418Frecursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/
1419free c-src/emacs/src/gmalloc.c 166
1420free c-src/emacs/src/gmalloc.c 1719
1421free c-src/emacs/src/gmalloc.c 67
1422free c-src/emacs/src/gmalloc.c 72
1423_free c-src/emacs/src/gmalloc.c /^_free (void *ptr)$/
1424free c-src/emacs/src/gmalloc.c /^free (void *ptr)$/
1425free_fdesc c-src/etags.c /^free_fdesc (register fdesc *fdp)$/
1426FREEFLOOD c-src/emacs/src/gmalloc.c 1858
1427free_for prol-src/natded.prolog /^free_for(var(_),_,_).$/
1428freehook c-src/emacs/src/gmalloc.c /^freehook (void *ptr)$/
1429_free_internal c-src/emacs/src/gmalloc.c /^_free_internal (void *ptr)$/
1430_free_internal_nolock c-src/emacs/src/gmalloc.c /^_free_internal_nolock (void *ptr)$/
1431free_regexps c-src/etags.c /^free_regexps (void)$/
1432free_tree c-src/etags.c /^free_tree (register node *np)$/
1433free_var prol-src/natded.prolog /^free_var(var(V),var(V)).$/
1434\frenchspacing tex-src/texinfo.tex /^\\def\\frenchspacing{\\sfcode46=1000 \\sfcode63=1000 \\/
1435/freq ps-src/rfc1245.ps /^\/freq dpi 18.75 div 8 div round dup 0 eq {pop 1} i/
1436Freset_this_command_lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/
1437fresh_vars prol-src/natded.prolog /^fresh_vars(var(V),var(V)).$/
1438Fset_input_interrupt_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/
1439Fset_input_meta_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/
1440Fset_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/
1441Fset_output_flow_control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/
1442Fset_quit_char c-src/emacs/src/keyboard.c /^DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_/
1443FSRC make-src/Makefile /^FSRC=entry.for entry.strange_suffix entry.strange$/
1444fstartlist c-src/etags.c 2413
1445Fsuspend_emacs c-src/emacs/src/keyboard.c /^DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_e/
1446\ftable tex-src/texinfo.tex /^\\def\\ftable{\\begingroup\\inENV\\obeylines\\obeyspaces/
1447F_takeprec c-src/etags.c /^F_takeprec (void)$/
1448Fthis_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/
1449Fthis_command_keys_vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/
1450Fthis_single_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/
1451Fthis_single_command_raw_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-raw-keys", Fthis_singl/
1452Ftop_level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, /
1453Ftrack_mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/
1454FUN0 y-src/parse.y /^yylex FUN0()$/
1455FUN1 y-src/parse.y /^str_to_col FUN1(char **,str)$/
1456FUN1 y-src/parse.y /^yyerror FUN1(char *, s)$/
1457FUN2 y-src/parse.y /^make_list FUN2(YYSTYPE, car, YYSTYPE, cdr)$/
1458FUN2 y-src/parse.y /^parse_cell_or_range FUN2(char **,ptr, struct rng */
1459func1 c.c /^int func1$/
1460func2 c.c /^int func2 (a,b$/
1461funcboo c.c /^bool funcboo ()$/
1462func c-src/emacs/src/lisp.h /^ void (*func) (int);$/
1463func c-src/emacs/src/lisp.h /^ void (*func) (Lisp_Object);$/
1464func c-src/emacs/src/lisp.h /^ void (*func) (void *);$/
1465func c-src/emacs/src/lisp.h /^ void (*func) (void);$/
1466func_key_syms c-src/emacs/src/keyboard.c 4626
1467funcpointer c-src/emacs/src/lisp.h 2126
1468funcptr c-src/h.h /^ fu int (*funcptr) (void *ptr);$/
1469function c-src/emacs/src/lisp.h 1685
1470function c-src/emacs/src/lisp.h 2197
1471function c-src/emacs/src/lisp.h 2985
1472function c-src/emacs/src/lisp.h 694
1473function c-src/etags.c 194
1474FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 4766
1475FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5061
1476FUNCTIONP c-src/emacs/src/lisp.h /^FUNCTIONP (Lisp_Object obj)$/
1477functionp c-src/emacs/src/lisp.h /^functionp (Lisp_Object object)$/
1478Funexpand_abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/
1479fval forth-src/test-forth.fth /^fconst fvalue fval$/
1480fvar forth-src/test-forth.fth /^fvariable fvar$/
1481fvdef c-src/etags.c 2418
1482fvextern c-src/etags.c 2420
1483fvnameseen c-src/etags.c 2412
1484fvnone c-src/etags.c 2408
1485fwd c-src/emacs/src/lisp.h 2346
1486fwd c-src/emacs/src/lisp.h 690
1487Fx_get_selection_internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/
1488Fx_get_selection_internal c.c /^ Fx_get_selection_internal, Sx_get_selection/
1489Fy_get_selection_internal c.c /^ Fy_get_selection_internal, Sy_get_selection_/
1490galileo html-src/software.html /^GaliLEO$/
1491GatherControls pyt-src/server.py /^ def GatherControls(self):$/
1492gather pyt-src/server.py /^ def gather(self):$/
1493GCALIGNED c-src/emacs/src/lisp.h 288
1494GCALIGNED c-src/emacs/src/lisp.h 290
1495GCALIGNMENT c-src/emacs/src/lisp.h 243
1496gc_aset c-src/emacs/src/lisp.h /^gc_aset (Lisp_Object array, ptrdiff_t idx, Lisp_Ob/
1497GC_MAKE_GCPROS_NOOPS c-src/emacs/src/lisp.h 3172
1498gcmarkbit c-src/emacs/src/lisp.h 1974
1499gcmarkbit c-src/emacs/src/lisp.h 1981
1500gcmarkbit c-src/emacs/src/lisp.h 2035
1501gcmarkbit c-src/emacs/src/lisp.h 2113
1502gcmarkbit c-src/emacs/src/lisp.h 2204
1503gcmarkbit c-src/emacs/src/lisp.h 656
1504GC_MARK_STACK_CHECK_GCPROS c-src/emacs/src/lisp.h 3173
1505GC_MARK_STACK c-src/emacs/src/lisp.h 3177
1506GCPRO1 c-src/emacs/src/lisp.h /^#define GCPRO1(a) \\$/
1507GCPRO1 c-src/emacs/src/lisp.h /^#define GCPRO1(varname) ((void) gcpro1)$/
1508GCPRO2 c-src/emacs/src/lisp.h /^#define GCPRO2(a, b) \\$/
1509GCPRO2 c-src/emacs/src/lisp.h /^#define GCPRO2(varname1, varname2) ((void) gcpro2,/
1510GCPRO3 c-src/emacs/src/lisp.h /^#define GCPRO3(a, b, c) \\$/
1511GCPRO3 c-src/emacs/src/lisp.h /^#define GCPRO3(varname1, varname2, varname3) \\$/
1512GCPRO4 c-src/emacs/src/lisp.h /^#define GCPRO4(a, b, c, d) \\$/
1513GCPRO4 c-src/emacs/src/lisp.h /^#define GCPRO4(varname1, varname2, varname3, varna/
1514GCPRO5 c-src/emacs/src/lisp.h /^#define GCPRO5(a, b, c, d, e) \\$/
1515GCPRO5 c-src/emacs/src/lisp.h /^#define GCPRO5(varname1, varname2, varname3, varna/
1516GCPRO6 c-src/emacs/src/lisp.h /^#define GCPRO6(a, b, c, d, e, f) \\$/
1517GCPRO6 c-src/emacs/src/lisp.h /^#define GCPRO6(varname1, varname2, varname3, varna/
1518GCPRO7 c-src/emacs/src/lisp.h /^#define GCPRO7(a, b, c, d, e, f, g) \\$/
1519GCPRO7 c-src/emacs/src/lisp.h /^#define GCPRO7(a, b, c, d, e, f, g) (GCPRO6 (a, b,/
1520gcpro c-src/emacs/src/lisp.h 3042
1521gcpro c-src/emacs/src/lisp.h 3132
1522g cp-src/c.C /^ int g(){return 2;};$/
1523GCTYPEBITS c-src/emacs/src/lisp.h 67
1524GCTYPEBITS c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (int, GCTYPEBITS)$/
1525GC_USE_GCPROS_AS_BEFORE c-src/emacs/src/lisp.h 3171
1526GC_USE_GCPROS_CHECK_ZOMBIES c-src/emacs/src/lisp.h 3174
1527genalgorithm html-src/algrthms.html /^Generating the Data<\/font><\/i><\/b>$/
1528generate_warning merc-src/accumulator.m /^:- pred generate_warning(module_info::in, prog_var/
1529generate_warnings merc-src/accumulator.m /^:- pred generate_warnings(module_info::in, prog_va/
1530~generic_object cp-src/clheir.cpp /^generic_object::~generic_object(void)$/
1531generic_object cp-src/clheir.cpp /^generic_object::generic_object(void)$/
1532generic_object cp-src/clheir.hpp 13
1533GENERIC_PTR y-src/cccp.y 56
1534GENERIC_PTR y-src/cccp.y 58
1535gen_help_event c-src/emacs/src/keyboard.c /^gen_help_event (Lisp_Object help, Lisp_Object fram/
1536GEQ y-src/cccp.c 15
1537getArchs objc-src/PackInsp.m /^-(void)getArchs$/
1538getcjmp c-src/emacs/src/keyboard.c 147
1539get_compressor_from_suffix c-src/etags.c /^get_compressor_from_suffix (char *file, char **ext/
1540get_contiguous_space c-src/emacs/src/gmalloc.c /^get_contiguous_space (ptrdiff_t size, void *positi/
1541get_current_dir_name c-src/emacs/src/gmalloc.c 33
1542getDomainNames php-src/lce_functions.php /^ function getDomainNames()$/
1543getFoo lua-src/test.lua /^function Cube.data.getFoo ()$/
1544get_input_pending c-src/emacs/src/keyboard.c /^get_input_pending (int flags)$/
1545get_language_from_filename c-src/etags.c /^get_language_from_filename (char *file, int case_s/
1546get_language_from_interpreter c-src/etags.c /^get_language_from_interpreter (char *interpreter)$/
1547get_language_from_langname c-src/etags.c /^get_language_from_langname (const char *name)$/
1548GetLayerByName lua-src/allegro.lua /^function GetLayerByName (name)$/
1549get_layer_by_name lua-src/allegro.lua /^local function get_layer_by_name (sprite, layer, n/
1550GetNameList pas-src/common.pas /^function GetNameList; (* : BinNodePointer;*)$/
1551GetNewNameListNode pas-src/common.pas /^function GetNewNameListNode;(*($/
1552getopt1.o make-src/Makefile /^getopt1.o: emacs\/lib-src\/getopt1.c$/
1553_GETOPT_H c-src/getopt.h 19
1554GETOPTOBJS make-src/Makefile /^GETOPTOBJS= #getopt.o getopt1.o$/
1555getopt.o make-src/Makefile /^getopt.o: emacs\/lib-src\/getopt.c$/
1556getopt perl-src/yagrip.pl /^sub getopt {$/
1557Get_Own_Priority/f ada-src/2ataspri.adb /^ function Get_Own_Priority return System.Any_Pri/
1558Get_Own_Priority/f ada-src/2ataspri.ads /^ function Get_Own_Priority return System.Any_Pri/
1559getPath objc-src/PackInsp.m /^-(const char *)getPath:(char *)buf forType:(const /
1560getPOReader php-src/lce_functions.php /^ function &getPOReader($domain)$/
1561getPos lua-src/test.lua /^function Circle.getPos ()$/
1562getPos lua-src/test.lua /^function Rectangle.getPos ()$/
1563Get_Priority/f ada-src/2ataspri.adb /^ function Get_Priority (T : TCB_Ptr) return Syst/
1564Get_Priority/f ada-src/2ataspri.ads /^ function Get_Priority (T : TCB_Ptr) return Syst/
1565getptys objc-src/Subprocess.m /^getptys (int *master, int *slave)$/
1566get_tag c-src/etags.c /^get_tag (register char *bp, char **namepp)$/
1567getTextDomains php-src/lce_functions.php /^ function getTextDomains($lines)$/
1568gettext php-src/lce_functions.php /^ function gettext($msgid)$/
1569GetTextRef pas-src/common.pas /^function GetTextRef;(*($/
1570GetUniqueLayerName lua-src/allegro.lua /^function GetUniqueLayerName ()$/
1571get_word c-src/tab.c /^static char *get_word(char **str, char delim)$/
1572GE y-src/parse.c 8
1573ggg c-src/h.h 10
1574ghi1 c-src/h.h 36
1575ghi2 c-src/h.h 39
1576giallo cp-src/c.C 40
1577glider cp-src/conway.cpp /^void glider(int x, int y)$/
1578\gloggingall tex-src/texinfo.tex /^\\def\\gloggingall{\\begingroup \\globaldefs = 1 \\logg/
1579/gn ps-src/rfc1245.ps /^\/gn { $/
1580gnu html-src/software.html /^Free software that I wrote for the GNU project or /
1581_GNU_SOURCE c-src/etags.c 94
1582gobble_input c-src/emacs/src/keyboard.c /^gobble_input (void)$/
1583goto-tag-location-function el-src/emacs/lisp/progmodes/etags.el /^(defvar goto-tag-location-function nil$/
1584goto_xy cp-src/screen.cpp /^void goto_xy(unsigned char x, unsigned char y)$/
1585/G ps-src/rfc1245.ps /^\/G { $/
1586/graymode ps-src/rfc1245.ps /^\/graymode true def$/
1587/grayness ps-src/rfc1245.ps /^\/grayness {$/
1588GREEN cp-src/screen.hpp 14
1589\group tex-src/texinfo.tex /^\\def\\group{\\begingroup$/
1590GROW_RAW_KEYBUF c-src/emacs/src/keyboard.c 119
1591\gtr tex-src/texinfo.tex /^\\def\\gtr{\\realbackslash gtr}%$/
1592\gtr tex-src/texinfo.tex /^\\def\\gtr{\\realbackslash gtr}$/
1593/guillemotleft ps-src/rfc1245.ps /^\/guillemotleft \/guillemotright \/ellipsis \/.notdef /
1594handle_async_input c-src/emacs/src/keyboard.c /^handle_async_input (void)$/
1595handle_input_available_signal c-src/emacs/src/keyboard.c /^handle_input_available_signal (int sig)$/
1596handle_interrupt c-src/emacs/src/keyboard.c /^handle_interrupt (bool in_signal_handler)$/
1597handle_interrupt_signal c-src/emacs/src/keyboard.c /^handle_interrupt_signal (int sig)$/
1598handleList pyt-src/server.py /^ def handleList(self, event):$/
1599handleNew pyt-src/server.py /^ def handleNew(self, event):$/
1600handler c-src/emacs/src/lisp.h 3023
1601handlertype c-src/emacs/src/lisp.h 3021
1602handle_user_signal c-src/emacs/src/keyboard.c /^handle_user_signal (int sig)$/
1603has_arg c-src/getopt.h 82
1604hash c-src/emacs/src/lisp.h 1843
1605hash c-src/etags.c /^hash (const char *str, int len)$/
1606hashfn c-src/emacs/src/lisp.h /^ EMACS_UINT (*hashfn) (struct hash_table_test *t,/
1607HASH_HASH c-src/emacs/src/lisp.h /^HASH_HASH (struct Lisp_Hash_Table *h, ptrdiff_t id/
1608HASH_INDEX c-src/emacs/src/lisp.h /^HASH_INDEX (struct Lisp_Hash_Table *h, ptrdiff_t i/
1609HASH_KEY c-src/emacs/src/lisp.h /^HASH_KEY (struct Lisp_Hash_Table *h, ptrdiff_t idx/
1610HASH_NEXT c-src/emacs/src/lisp.h /^HASH_NEXT (struct Lisp_Hash_Table *h, ptrdiff_t id/
1611HASH_TABLE_P c-src/emacs/src/lisp.h /^HASH_TABLE_P (Lisp_Object a)$/
1612HASH_TABLE_SIZE c-src/emacs/src/lisp.h /^HASH_TABLE_SIZE (struct Lisp_Hash_Table *h)$/
1613hash_table_test c-src/emacs/src/lisp.h 1805
1614HASH_VALUE c-src/emacs/src/lisp.h /^HASH_VALUE (struct Lisp_Hash_Table *h, ptrdiff_t i/
1615\hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}%$/
1616\hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}$/
1617HAVE_NTGUI c-src/etags.c 116
1618hdr c-src/emacs/src/gmalloc.c 1860
1619header c-src/emacs/src/lisp.h 1371
1620header c-src/emacs/src/lisp.h 1388
1621header c-src/emacs/src/lisp.h 1581
1622header c-src/emacs/src/lisp.h 1610
1623header c-src/emacs/src/lisp.h 1672
1624header c-src/emacs/src/lisp.h 1826
1625header_size c-src/emacs/src/lisp.h 1471
1626\HEADINGSafter tex-src/texinfo.tex /^\\def\\HEADINGSafter{\\let\\HEADINGShook=\\HEADINGSdoub/
1627\HEADINGSdouble tex-src/texinfo.tex /^\\def\\HEADINGSdouble{$/
1628\HEADINGSdoublex tex-src/texinfo.tex /^\\def\\HEADINGSdoublex{%$/
1629\HEADINGSoff tex-src/texinfo.tex /^\\def\\HEADINGSoff{$/
1630\HEADINGSon tex-src/texinfo.tex /^\\def\\HEADINGSon{\\HEADINGSdouble}$/
1631\HEADINGSon tex-src/texinfo.tex /^\\global\\def\\HEADINGSon{\\HEADINGSdouble}}$/
1632\HEADINGSon tex-src/texinfo.tex /^\\global\\def\\HEADINGSon{\\HEADINGSsingle}}$/
1633\HEADINGSsingleafter tex-src/texinfo.tex /^\\def\\HEADINGSsingleafter{\\let\\HEADINGShook=\\HEADIN/
1634\HEADINGSsingle tex-src/texinfo.tex /^\\def\\HEADINGSsingle{$/
1635\HEADINGSsinglex tex-src/texinfo.tex /^\\def\\HEADINGSsinglex{%$/
1636\headings tex-src/texinfo.tex /^\\def\\headings #1 {\\csname HEADINGS#1\\endcsname}$/
1637\heading tex-src/texinfo.tex /^\\def\\heading{\\parsearg\\secheadingi}$/
1638head_table c-src/emacs/src/keyboard.c 11027
1639_heapbase c-src/emacs/src/gmalloc.c 355
1640HEAP c-src/emacs/src/gmalloc.c 131
1641_heapindex c-src/emacs/src/gmalloc.c 364
1642_heapinfo c-src/emacs/src/gmalloc.c 358
1643_heaplimit c-src/emacs/src/gmalloc.c 367
1644heapsize c-src/emacs/src/gmalloc.c 361
1645hello scm-src/test.scm /^(define hello "Hello, Emacs!")$/
1646hello scm-src/test.scm /^(set! hello "Hello, world!")$/
1647hello-world scm-src/test.scm /^(define (hello-world)$/
1648help_char_p c-src/emacs/src/keyboard.c /^help_char_p (Lisp_Object c)$/
1649help c-src/etags.c 193
1650help_form_saved_window_configs c-src/emacs/src/keyboard.c 2156
1651helpPanel objcpp-src/SimpleCalc.M /^- helpPanel:sender$/
1652helpwin pyt-src/server.py /^def helpwin(helpdict):$/
1653hide_cursor cp-src/screen.cpp /^void hide_cursor(void)$/
1654hlds merc-src/accumulator.m /^:- import_module hlds.$/
1655/home/www/pub/etags.c.gz make-src/Makefile /^\/home\/www\/pub\/etags.c.gz: etags.c$/
1656/home/www/pub/software/unix/etags.tar.gz make-src/Makefile /^\/home\/www\/pub\/software\/unix\/etags.tar.gz: Makefile/
1657/H ps-src/rfc1245.ps /^\/H { $/
1658HTML_help c-src/etags.c 584
1659HTML_labels c-src/etags.c /^HTML_labels (FILE *inf)$/
1660HTMLSRC make-src/Makefile /^HTMLSRC=softwarelibero.html index.shtml algrthms.h/
1661HTML_suffixes c-src/etags.c 582
1662htmltreelist prol-src/natded.prolog /^htmltreelist([]).$/
1663/hx ps-src/rfc1245.ps /^\/hx { $/
1664hybrid_aligned_alloc c-src/emacs/src/gmalloc.c /^hybrid_aligned_alloc (size_t alignment, size_t siz/
1665hybrid_calloc c-src/emacs/src/gmalloc.c /^hybrid_calloc (size_t nmemb, size_t size)$/
1666hybrid_free c-src/emacs/src/gmalloc.c /^hybrid_free (void *ptr)$/
1667hybrid_get_current_dir_name c-src/emacs/src/gmalloc.c /^hybrid_get_current_dir_name (void)$/
1668hybrid_malloc c-src/emacs/src/gmalloc.c /^hybrid_malloc (size_t size)$/
1669hybrid_realloc c-src/emacs/src/gmalloc.c /^hybrid_realloc (void *ptr, size_t size)$/
1670hypothetical_mem prol-src/natded.prolog /^hypothetical_mem(fi(N),Ass,_):-$/
1671/iacute ps-src/rfc1245.ps /^\/iacute \/igrave \/icircumflex \/idieresis \/ntilde \/o/
1672ialpage tex-src/texinfo.tex /^ \\availdimen@=\\pageheight \\advance\\availdimen@ by/
1673ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\pa/
1674ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\parti/
1675ialpage tex-src/texinfo.tex /^\\newbox\\partialpage$/
1676ialpage= tex-src/texinfo.tex /^ \\output={\\global\\setbox\\partialpage=$/
1677i c.c 169
1678/Icircumflex ps-src/rfc1245.ps /^\/Icircumflex \/Idieresis \/Igrave \/Oacute \/Ocircumfl/
1679i cp-src/c.C 132
1680/ic ps-src/rfc1245.ps /^\/ic [ $/
1681i c-src/c.c 2
1682i c-src/emacs/src/lisp.h 4673
1683i c-src/emacs/src/lisp.h 4679
1684i c-src/emacs/src/lisp.h 567
1685identify_goal_type merc-src/accumulator.m /^:- pred identify_goal_type(pred_id::in, proc_id::i/
1686identify_out_and_out_prime merc-src/accumulator.m /^:- pred identify_out_and_out_prime(module_info::in/
1687identify_recursive_calls merc-src/accumulator.m /^:- pred identify_recursive_calls(pred_id::in, proc/
1688idx c-src/emacs/src/lisp.h 3150
1689IEEE_FLOATING_POINT c-src/emacs/src/lisp.h 2415
1690\ifclearfail tex-src/texinfo.tex /^\\def\\ifclearfail{\\begingroup\\ignoresections\\ifclea/
1691\ifclearfailxxx tex-src/texinfo.tex /^\\long\\def\\ifclearfailxxx #1\\end ifclear{\\endgroup\\/
1692\ifclear tex-src/texinfo.tex /^\\def\\ifclear{\\begingroup\\ignoresections\\parsearg\\i/
1693\ifclearxxx tex-src/texinfo.tex /^\\def\\ifclearxxx #1{\\endgroup$/
1694\ifinfo tex-src/texinfo.tex /^\\def\\ifinfo{\\begingroup\\ignoresections\\ifinfoxxx}$/
1695\ifinfoxxx tex-src/texinfo.tex /^\\long\\def\\ifinfoxxx #1\\end ifinfo{\\endgroup\\ignore/
1696\ifsetfail tex-src/texinfo.tex /^\\def\\ifsetfail{\\begingroup\\ignoresections\\ifsetfai/
1697\ifsetfailxxx tex-src/texinfo.tex /^\\long\\def\\ifsetfailxxx #1\\end ifset{\\endgroup\\igno/
1698\ifset tex-src/texinfo.tex /^\\def\\ifset{\\begingroup\\ignoresections\\parsearg\\ifs/
1699\ifsetxxx tex-src/texinfo.tex /^\\def\\ifsetxxx #1{\\endgroup$/
1700\iftex tex-src/texinfo.tex /^\\def\\iftex{}$/
1701\ifusingtt tex-src/texinfo.tex /^\\def\\ifusingtt#1#2{\\ifdim \\fontdimen3\\the\\font=0pt/
1702ignore_case c-src/etags.c 266
1703ignore_mouse_drag_p c-src/emacs/src/keyboard.c 1256
1704\ignoresections tex-src/texinfo.tex /^\\def\\ignoresections{%$/
1705\ignore tex-src/texinfo.tex /^\\def\\ignore{\\begingroup\\ignoresections$/
1706\ignorexxx tex-src/texinfo.tex /^\\long\\def\\ignorexxx #1\\end ignore{\\endgroup\\ignore/
1707\ii tex-src/texinfo.tex /^\\def\\ii#1{{\\it #1}} % italic font$/
1708ill=\relax tex-src/texinfo.tex /^\\let\\refill=\\relax$/
1709IMAGEP c-src/emacs/src/lisp.h /^IMAGEP (Lisp_Object x)$/
1710immediate_quit c-src/emacs/src/keyboard.c 174
1711impatto html-src/softwarelibero.html /^Impatto pratico del software libero$/
1712implementation merc-src/accumulator.m /^:- implementation.$/
1713inattribute c-src/etags.c 2400
1714inc cp-src/Range.h /^ double inc (void) const { return rng_inc; }$/
1715/inch ps-src/rfc1245.ps /^\/inch {72 mul} def$/
1716\include tex-src/texinfo.tex /^\\def\\include{\\parsearg\\includezzz}$/
1717\includezzz tex-src/texinfo.tex /^\\def\\includezzz #1{{\\def\\thisfile{#1}\\input #1$/
1718\indexbackslash tex-src/texinfo.tex /^ \\def\\indexbackslash{\\rawbackslashxx}$/
1719index c-src/emacs/src/lisp.h 1856
1720\indexdotfill tex-src/texinfo.tex /^\\def\\indexdotfill{\\cleaders$/
1721\indexdummies tex-src/texinfo.tex /^\\def\\indexdummies{%$/
1722\indexdummydots tex-src/texinfo.tex /^\\def\\indexdummydots{...}$/
1723\indexdummyfont tex-src/texinfo.tex /^\\def\\indexdummyfont#1{#1}$/
1724=\indexdummyfont tex-src/texinfo.tex /^\\let\\cite=\\indexdummyfont$/
1725\indexdummytex tex-src/texinfo.tex /^\\def\\indexdummytex{TeX}$/
1726\indexfonts tex-src/texinfo.tex /^\\def\\indexfonts{%$/
1727\indexnofonts tex-src/texinfo.tex /^\\def\\indexnofonts{%$/
1728\inENV tex-src/texinfo.tex /^\\newif\\ifENV \\ENVfalse \\def\\inENV{\\ifENV\\relax\\els/
1729infabsdir c-src/etags.c 206
1730infabsname c-src/etags.c 205
1731infiles make-src/Makefile /^infiles = $(filter-out ${NONSRCS},${SRCS}) srclist/
1732infname c-src/etags.c 204
1733\infoappendixsec tex-src/texinfo.tex /^\\def\\infoappendixsec{\\parsearg\\appendixseczzz}$/
1734\infoappendixsubsec tex-src/texinfo.tex /^\\def\\infoappendixsubsec{\\parsearg\\appendixsubseczz/
1735\infoappendixsubsubsec tex-src/texinfo.tex /^\\def\\infoappendixsubsubsec{\\parsearg\\appendixsubsu/
1736\infoappendix tex-src/texinfo.tex /^\\def\\infoappendix{\\parsearg\\appendixzzz}$/
1737\infochapter tex-src/texinfo.tex /^\\def\\infochapter{\\parsearg\\chapterzzz}$/
1738info c-src/emacs/src/gmalloc.c 157
1739infoPanel objcpp-src/SimpleCalc.M /^- infoPanel:sender$/
1740\inforef tex-src/texinfo.tex /^\\def\\inforef #1{\\inforefzzz #1,,,,**}$/
1741\inforefzzz tex-src/texinfo.tex /^\\def\\inforefzzz #1,#2,#3,#4**{See Info file \\file{/
1742\infosection tex-src/texinfo.tex /^\\def\\infosection{\\parsearg\\sectionzzz}$/
1743\infosubsection tex-src/texinfo.tex /^\\def\\infosubsection{\\parsearg\\subsectionzzz}$/
1744\infosubsubsection tex-src/texinfo.tex /^\\def\\infosubsubsection{\\parsearg\\subsubsectionzzz}/
1745\infotop tex-src/texinfo.tex /^\\def\\infotop{\\parsearg\\unnumberedzzz}$/
1746\infounnumberedsec tex-src/texinfo.tex /^\\def\\infounnumberedsec{\\parsearg\\unnumberedseczzz}/
1747\infounnumberedsubsec tex-src/texinfo.tex /^\\def\\infounnumberedsubsec{\\parsearg\\unnumberedsubs/
1748\infounnumberedsubsubsec tex-src/texinfo.tex /^\\def\\infounnumberedsubsubsec{\\parsearg\\unnumbereds/
1749\infounnumbered tex-src/texinfo.tex /^\\def\\infounnumbered{\\parsearg\\unnumberedzzz}$/
1750inita c.c /^static void inita () {}$/
1751initb c.c /^static void initb () {}$/
1752init_control c.c 239
1753init c-src/etags.c /^init (void)$/
1754Initialize_Cond/p ada-src/2ataspri.adb /^ procedure Initialize_Cond (Cond : in out Condit/
1755Initialize_Cond/p ada-src/2ataspri.ads /^ procedure Initialize_Cond (Cond : in out Condit/
1756initialize_goal_store merc-src/accumulator.m /^:- func initialize_goal_store(list(hlds_goal), ins/
1757Initialize_LL_Tasks/p ada-src/2ataspri.adb /^ procedure Initialize_LL_Tasks (T : TCB_Ptr) is$/
1758Initialize_LL_Tasks/p ada-src/2ataspri.ads /^ procedure Initialize_LL_Tasks (T : TCB_Ptr);$/
1759Initialize_Lock/p ada-src/2ataspri.adb /^ procedure Initialize_Lock$/
1760Initialize_Lock/p ada-src/2ataspri.ads /^ procedure Initialize_Lock (Prio : System.Any_Pr/
1761initialize-new-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun initialize-new-tags-table ()$/
1762initialize_random_junk y-src/cccp.y /^initialize_random_junk ()$/
1763InitializeStringPackage pas-src/common.pas /^procedure InitializeStringPackage;$/
1764Initialize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Initialize_TAS_Cell (Cell : out TAS_C/
1765Initialize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Initialize_TAS_Cell (Cell : out TA/
1766initial_kboard c-src/emacs/src/keyboard.c 84
1767\initial tex-src/texinfo.tex /^\\def\\initial #1{%$/
1768init_kboard c-src/emacs/src/keyboard.c /^init_kboard (KBOARD *kb, Lisp_Object type)$/
1769init_keyboard c-src/emacs/src/keyboard.c /^init_keyboard (void)$/
1770InitNameList pas-src/common.pas /^procedure InitNameList;$/
1771InitNameStringPool pas-src/common.pas /^procedure InitNameStringPool;$/
1772init objcpp-src/SimpleCalc.M /^- init$/
1773init objc-src/Subprocess.m /^ andStdErr:(BOOL)wantsStdErr$/
1774init objc-src/Subprocess.m /^- init:(const char *)subprocessString$/
1775__init__ pyt-src/server.py /^ def __init__(self):$/
1776__init__ pyt-src/server.py /^ def __init__(self, host, sitelist, master=None/
1777__init__ pyt-src/server.py /^ def __init__(self, master=None):$/
1778__init__ pyt-src/server.py /^ def __init__(self, Master, text, textvar, widt/
1779__init__ pyt-src/server.py /^ def __init__(self, newlegend, list, editor, ma/
1780__init__ pyt-src/server.py /^ def __init__(self, user, userlist, master=None/
1781init_registry cp-src/clheir.cpp /^void init_registry(void)$/
1782init_tool_bar_items c-src/emacs/src/keyboard.c /^init_tool_bar_items (Lisp_Object reuse)$/
1783Inner1/b ada-src/etags-test-for.ada /^ package body Inner1 is$/
1784Inner1/b ada-src/waroquiers.ada /^ package body Inner1 is$/
1785Inner1/s ada-src/etags-test-for.ada /^ package Inner1 is$/
1786Inner1/s ada-src/waroquiers.ada /^ package Inner1 is$/
1787Inner2/b ada-src/etags-test-for.ada /^ package body Inner2 is$/
1788Inner2/b ada-src/waroquiers.ada /^ package body Inner2 is$/
1789Inner2/s ada-src/etags-test-for.ada /^ package Inner2 is$/
1790Inner2/s ada-src/waroquiers.ada /^ package Inner2 is$/
1791input_available_clear_time c-src/emacs/src/keyboard.c 324
1792INPUT_EVENT_POS_MAX c-src/emacs/src/keyboard.c 3698
1793INPUT_EVENT_POS_MIN c-src/emacs/src/keyboard.c 3701
1794input_pending c-src/emacs/src/keyboard.c 239
1795input-pending-p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/
1796input_polling_used c-src/emacs/src/keyboard.c /^input_polling_used (void)$/
1797input_was_pending c-src/emacs/src/keyboard.c 287
1798insert-abbrev-table-description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/
1799insertion_type c-src/emacs/src/lisp.h 1989
1800insertname pas-src/common.pas /^function insertname;(*($/
1801INSERT_TREE_NODE pas-src/common.pas /^procedure INSERT_TREE_NODE;(*( $/
1802Install_Abort_Handler/p ada-src/2ataspri.adb /^ procedure Install_Abort_Handler (Handler : Abor/
1803Install_Abort_Handler/p ada-src/2ataspri.ads /^ procedure Install_Abort_Handler (Handler : Abor/
1804Install_Error_Handler/p ada-src/2ataspri.adb /^ procedure Install_Error_Handler (Handler : Syst/
1805Install_Error_Handler/p ada-src/2ataspri.ads /^ procedure Install_Error_Handler (Handler : Syst/
1806instance_method_equals= ruby-src/test.rb /^ def instance_method_equals=$/
1807instance_method_exclamation! ruby-src/test.rb /^ def instance_method_exclamation!$/
1808instance_method_question? ruby-src/test.rb /^ def instance_method_question?$/
1809instance_method ruby-src/test.rb /^ def instance_method$/
1810INSTANTIATE_MDIAGARRAY_FRIENDS cp-src/MDiagArray2.h /^#define INSTANTIATE_MDIAGARRAY_FRIENDS(T) \\$/
1811instruct c-src/etags.c 2527
1812instr y-src/parse.y 81
1813INT_BIT c-src/emacs/src/gmalloc.c 124
1814INT c-src/h.h 32
1815integer c-src/emacs/src/lisp.h 2127
1816integer_overflow y-src/cccp.y /^integer_overflow ()$/
1817INTEGERP c-src/emacs/src/lisp.h /^# define INTEGERP(x) lisp_h_INTEGERP (x)$/
1818INTEGER_TO_CONS c-src/emacs/src/lisp.h /^#define INTEGER_TO_CONS(i) \\$/
1819integertonmstr pas-src/common.pas /^function integertonmstr; (* (TheInteger : integer)/
1820integer y-src/cccp.y 112
1821intensity1 f-src/entry.for /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/
1822intensity1 f-src/entry.strange /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/
1823intensity1 f-src/entry.strange_suffix /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/
1824interface_locate c-src/c.c /^interface_locate(void)$/
1825interface merc-src/accumulator.m /^:- interface.$/
1826\internalBitem tex-src/texinfo.tex /^\\def\\internalBitem{\\smallbreak \\parsearg\\itemzzz}$/
1827\internalBitemx tex-src/texinfo.tex /^\\def\\internalBitemx{\\par \\parsearg\\itemzzz}$/
1828\internalBkitem tex-src/texinfo.tex /^\\def\\internalBkitem{\\smallbreak \\parsearg\\kitemzzz/
1829\internalBkitemx tex-src/texinfo.tex /^\\def\\internalBkitemx{\\par \\parsearg\\kitemzzz}$/
1830\internalBxitem tex-src/texinfo.tex /^\\def\\internalBxitem "#1"{\\def\\xitemsubtopix{#1} \\s/
1831\internalBxitemx tex-src/texinfo.tex /^\\def\\internalBxitemx "#1"{\\def\\xitemsubtopix{#1} \\/
1832internal_last_event_frame c-src/emacs/src/keyboard.c 228
1833\internalsetq tex-src/texinfo.tex /^\\def\\internalsetq #1#2{'xrdef {#1}{\\csname #2\\endc/
1834intern c-src/emacs/src/lisp.h /^intern (const char *str)$/
1835intern_c_string c-src/emacs/src/lisp.h /^intern_c_string (const char *str)$/
1836interned c-src/emacs/src/lisp.h 672
1837interpreters c-src/etags.c 197
1838interrupt_input_blocked c-src/emacs/src/keyboard.c 76
1839interrupt_input_blocked c-src/emacs/src/lisp.h 3048
1840interrupt_input c-src/emacs/src/keyboard.c 328
1841interrupts_deferred c-src/emacs/src/keyboard.c 331
1842INTERVAL c-src/emacs/src/lisp.h 1149
1843INTMASK c-src/emacs/src/lisp.h 437
1844int merc-src/accumulator.m /^:- import_module int.$/
1845intNumber go-src/test1.go 13
1846intoken c-src/etags.c /^#define intoken(c) (_itk[CHAR (c)]) \/* c can be in/
1847intspec c-src/emacs/src/lisp.h 1688
1848INTTYPEBITS c-src/emacs/src/lisp.h 249
1849INT_TYPE_SIZE y-src/cccp.y 91
1850intvar c-src/emacs/src/lisp.h 2277
1851INT y-src/cccp.c 6
1852invalidate_nodes c-src/etags.c /^invalidate_nodes (fdesc *badfdp, node **npp)$/
1853Invoking gzip tex-src/gzip.texi /^@node Invoking gzip, Advanced usage, Sample, Top$/
1854in_word_set c-src/etags.c /^in_word_set (register const char *str, register un/
1855io merc-src/accumulator.m /^:- import_module io.$/
1856IpAddrKind rs-src/test.rs 3
1857ipc3dChannelType cp-src/c.C 1
1858ipc3dCSC19 cp-src/c.C 6
1859ipc3dIslandHierarchy cp-src/c.C 1
1860ipc3dLinkControl cp-src/c.C 1
1861__ip c.c 159
1862/ip ps-src/rfc1245.ps /^\/ip { $/
1863/i ps-src/rfc1245.ps /^\/i \/j \/k \/l \/m \/n \/o \/p \/q \/r \/s \/t \/u \/v \/w \/x \/y/
1864irregular_location cp-src/clheir.hpp 47
1865irregular_location cp-src/clheir.hpp /^ irregular_location(double xi, double yi, doubl/
1866ISALNUM c-src/etags.c /^#define ISALNUM(c) isalnum (CHAR (c))$/
1867ISALPHA c-src/etags.c /^#define ISALPHA(c) isalpha (CHAR (c))$/
1868is_associative_construction merc-src/accumulator.m /^:- pred is_associative_construction(module_info::i/
1869isComment php-src/lce_functions.php /^ function isComment($class)$/
1870IsControlCharName pas-src/common.pas /^function IsControlCharName($/
1871IsControlChar pas-src/common.pas /^function IsControlChar; (*($/
1872is_curly_brace_form c-src/h.h 54
1873IS_DAEMON c-src/emacs/src/lisp.h 4257
1874IS_DAEMON c-src/emacs/src/lisp.h 4261
1875ISDIGIT c-src/etags.c /^#define ISDIGIT(c) isdigit (CHAR (c))$/
1876is_explicit c-src/h.h 49
1877is_func c-src/etags.c 221
1878isHoliday cp-src/functions.cpp /^bool isHoliday ( Date d ){$/
1879is_hor_space y-src/cccp.y 953
1880is_idchar y-src/cccp.y 948
1881is_idstart y-src/cccp.y 950
1882isLeap cp-src/functions.cpp /^bool isLeap ( int year ){$/
1883ISLOWER c-src/etags.c /^#define ISLOWER(c) islower (CHAR (c))$/
1884is_muldiv_operation cp-src/c.C /^is_muldiv_operation(pc)$/
1885ISO_FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5149
1886iso_lispy_function_keys c-src/emacs/src/keyboard.c 5151
1887isoperator prol-src/natded.prolog /^isoperator(Char):-$/
1888isoptab prol-src/natded.prolog /^isoptab('%').$/
1889is_ordset prol-src/ordsets.prolog /^is_ordset(X) :- var(X), !, fail.$/
1890is_recursive_case merc-src/accumulator.m /^:- pred is_recursive_case(list(hlds_goal)::in, pre/
1891Is_Set/f ada-src/2ataspri.adb /^ function Is_Set (Cell : in TAS_Cell) return Bo/
1892Is_Set/f ada-src/2ataspri.ads /^ function Is_Set (Cell : in TAS_Cell)/
1893ISUPPER c-src/etags.c /^# define ISUPPER(c) isupper (CHAR (c))$/
1894iswhite c-src/etags.c /^#define iswhite(c) (_wht[CHAR (c)]) \/* c is white /
1895\itemcontents tex-src/texinfo.tex /^\\def\\itemcontents{#1}%$/
1896\itemfont tex-src/texinfo.tex /^\\def\\itemfont{#2}%$/
1897\itemizeitem tex-src/texinfo.tex /^\\def\\itemizeitem{%$/
1898\itemize tex-src/texinfo.tex /^\\def\\itemize{\\parsearg\\itemizezzz}$/
1899\itemizey tex-src/texinfo.tex /^\\def\\itemizey #1#2{%$/
1900\itemizezzz tex-src/texinfo.tex /^\\def\\itemizezzz #1{%$/
1901item_properties c-src/emacs/src/keyboard.c 7568
1902\item tex-src/texinfo.tex /^\\def\\item{\\errmessage{@item while not in a table}}/
1903\itemx tex-src/texinfo.tex /^\\def\\itemx{\\errmessage{@itemx while not in a table/
1904\itemzzz tex-src/texinfo.tex /^\\def\\itemzzz #1{\\begingroup %$/
1905\i tex-src/texinfo.tex /^\\def\\i##1{\\realbackslash i {##1}}%$/
1906\i tex-src/texinfo.tex /^\\def\\i##1{\\realbackslash i {##1}}$/
1907JAVASRC make-src/Makefile /^JAVASRC=AWTEMul.java KeyEve.java SMan.java SysCol./
1908jmp c-src/emacs/src/lisp.h 3044
1909just_read_file c-src/etags.c /^just_read_file (FILE *inf)$/
1910kbd_buffer c-src/emacs/src/keyboard.c 291
1911kbd_buffer_events_waiting c-src/emacs/src/keyboard.c /^kbd_buffer_events_waiting (void)$/
1912kbd_buffer_get_event c-src/emacs/src/keyboard.c /^kbd_buffer_get_event (KBOARD **kbp,$/
1913kbd_buffer_nr_stored c-src/emacs/src/keyboard.c /^kbd_buffer_nr_stored (void)$/
1914KBD_BUFFER_SIZE c-src/emacs/src/keyboard.c 82
1915kbd_buffer_store_event c-src/emacs/src/keyboard.c /^kbd_buffer_store_event (register struct input_even/
1916kbd_buffer_store_event_hold c-src/emacs/src/keyboard.c /^kbd_buffer_store_event_hold (register struct input/
1917kbd_buffer_store_help_event c-src/emacs/src/keyboard.c /^kbd_buffer_store_help_event (Lisp_Object frame, Li/
1918kbd_buffer_unget_event c-src/emacs/src/keyboard.c /^kbd_buffer_unget_event (register struct input_even/
1919kbd_fetch_ptr c-src/emacs/src/keyboard.c 297
1920\kbdfoo tex-src/texinfo.tex /^\\def\\kbdfoo#1#2#3\\par{\\def\\one{#1}\\def\\three{#3}\\d/
1921kbd_store_ptr c-src/emacs/src/keyboard.c 302
1922\kbd tex-src/texinfo.tex /^\\def\\kbd#1{\\def\\look{#1}\\expandafter\\kbdfoo\\look??/
1923\kbd tex-src/texinfo.tex /^\\def\\kbd##1{\\realbackslash kbd {##1}}%$/
1924\kbd tex-src/texinfo.tex /^\\def\\kbd##1{\\realbackslash kbd {##1}}$/
1925kboard c-src/emacs/src/keyboard.c 860
1926kboard_stack c-src/emacs/src/keyboard.c 858
1927kboard_stack c-src/emacs/src/keyboard.c 864
1928KBYTES objc-src/PackInsp.m 58
1929key_and_value c-src/emacs/src/lisp.h 1868
1930keyremap c-src/emacs/src/keyboard.c 8742
1931keyremap c-src/emacs/src/keyboard.c 8754
1932keyremap_step c-src/emacs/src/keyboard.c /^keyremap_step (Lisp_Object *keybuf, int bufsize, v/
1933keys_of_keyboard c-src/emacs/src/keyboard.c /^keys_of_keyboard (void)$/
1934\key tex-src/texinfo.tex /^\\def\\key##1{\\realbackslash key {##1}}%$/
1935\key tex-src/texinfo.tex /^\\def\\key##1{\\realbackslash key {##1}}$/
1936\key tex-src/texinfo.tex /^\\def\\key #1{{\\tt \\exhyphenpenalty=10000\\uppercase{/
1937KEY_TO_CHAR c-src/emacs/src/keyboard.c /^#define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTE/
1938keyvalcgi prol-src/natded.prolog /^keyvalcgi(Key,Val):-$/
1939keyval prol-src/natded.prolog /^keyval(key(Key,Val)) --> [Key,'='], valseq(Val).$/
1940keyvalscgi prol-src/natded.prolog /^keyvalscgi(KeyVals),$/
1941keyvalseq prol-src/natded.prolog /^keyvalseq([KeyVal|KeyVals]) --> $/
1942keyword_parsing y-src/cccp.y 73
1943keywords y-src/cccp.y 114
1944keywords y-src/cccp.y 306
1945kind c-src/emacs/src/keyboard.c 11024
1946kind c-src/h.h 46
1947\kindex tex-src/texinfo.tex /^\\def\\kindex {\\kyindex}$/
1948\kitem tex-src/texinfo.tex /^\\def\\kitem{\\errmessage{@kitem while not in a table/
1949\kitemx tex-src/texinfo.tex /^\\def\\kitemx{\\errmessage{@kitemx while not in a tab/
1950\kitemzzz tex-src/texinfo.tex /^\\def\\kitemzzz #1{\\dosubind {kw}{\\code{#1}}{for {\\b/
1951kset_echo_string c-src/emacs/src/keyboard.c /^kset_echo_string (struct kboard *kb, Lisp_Object v/
1952kset_kbd_queue c-src/emacs/src/keyboard.c /^kset_kbd_queue (struct kboard *kb, Lisp_Object val/
1953kset_keyboard_translate_table c-src/emacs/src/keyboard.c /^kset_keyboard_translate_table (struct kboard *kb, /
1954kset_last_prefix_arg c-src/emacs/src/keyboard.c /^kset_last_prefix_arg (struct kboard *kb, Lisp_Obje/
1955kset_last_repeatable_command c-src/emacs/src/keyboard.c /^kset_last_repeatable_command (struct kboard *kb, L/
1956kset_local_function_key_map c-src/emacs/src/keyboard.c /^kset_local_function_key_map (struct kboard *kb, Li/
1957kset_overriding_terminal_local_map c-src/emacs/src/keyboard.c /^kset_overriding_terminal_local_map (struct kboard /
1958kset_real_last_command c-src/emacs/src/keyboard.c /^kset_real_last_command (struct kboard *kb, Lisp_Ob/
1959kset_system_key_syms c-src/emacs/src/keyboard.c /^kset_system_key_syms (struct kboard *kb, Lisp_Obje/
1960LabeledEntry pyt-src/server.py /^class LabeledEntry(Frame):$/
1961\labelspace tex-src/texinfo.tex /^\\def\\labelspace{\\hskip1em \\relax}$/
1962lang c-src/etags.c 208
1963lang c-src/etags.c 251
1964lang c-src/etags.c 259
1965Lang_function c-src/etags.c 182
1966Lang_function c-src/h.h 6
1967lang_names c-src/etags.c 718
1968language c-src/etags.c 199
1969last_abbrev_point c-src/abbrev.c 79
1970lasta c.c 272
1971lastargmargin tex-src/texinfo.tex /^\\newskip\\deflastargmargin \\deflastargmargin=18pt$/
1972lastargmargin tex-src/texinfo.tex /^\\setbox0=\\hbox{\\hskip \\deflastargmargin{\\rm #2}\\hs/
1973last_auto_save c-src/emacs/src/keyboard.c 214
1974lastb c.c 278
1975last_heapinfo c-src/emacs/src/gmalloc.c 402
1976last_mouse_button c-src/emacs/src/keyboard.c 5215
1977last_mouse_x c-src/emacs/src/keyboard.c 5216
1978last_mouse_y c-src/emacs/src/keyboard.c 5217
1979last_non_minibuf_size c-src/emacs/src/keyboard.c 207
1980last_point_position c-src/emacs/src/keyboard.c 217
1981last_state_size c-src/emacs/src/gmalloc.c 401
1982last-tag el-src/emacs/lisp/progmodes/etags.el /^(defvar last-tag nil$/
1983last_undo_boundary c-src/emacs/src/keyboard.c 1287
1984LATEST make-src/Makefile /^LATEST=17$/
1985lb c-src/etags.c 2923
1986\lbrb tex-src/texinfo.tex /^\\def\\lbrb{{\\bf\\char`\\[}} \\def\\rbrb{{\\bf\\char`\\]}}$/
1987lbs c-src/etags.c 2924
1988lce_bindtextdomain php-src/lce_functions.php /^ function lce_bindtextdomain($d_name, $d_path/
1989lce_bindtextdomain php-src/lce_functions.php /^ function lce_bindtextdomain($domain, $path)$/
1990LCE_COMMENT php-src/lce_functions.php 13
1991LCE_COMMENT_TOOL php-src/lce_functions.php 17
1992LCE_COMMENT_USER php-src/lce_functions.php 15
1993lce_dgettext php-src/lce_functions.php /^ function lce_dgettext($domain, $msgid)$/
1994LCE_FUNCTIONS php-src/lce_functions.php 4
1995lce_geteditcode php-src/lce_functions.php /^ function lce_geteditcode($type, $name, $text, $r/
1996lce_gettext php-src/lce_functions.php /^ function lce_gettext($msgid)$/
1997L_CELL y-src/parse.c 10
1998LCE_MSGID php-src/lce_functions.php 19
1999LCE_MSGSTR php-src/lce_functions.php 21
2000lce php-src/lce_functions.php /^ function lce()$/
2001lce_textdomain php-src/lce_functions.php /^ function lce_textdomain($domain)$/
2002LCE_TEXT php-src/lce_functions.php 23
2003LCE_UNKNOWN php-src/lce_functions.php 9
2004LCE_WS php-src/lce_functions.php 11
2005L_CONST y-src/parse.c 13
2006LDFLAGS make-src/Makefile /^LDFLAGS=#-static -lc_p$/
2007leasqr html-src/software.html /^Leasqr$/
2008left c-src/etags.c 216
2009left_shift y-src/cccp.y /^left_shift (a, b)$/
2010len c-src/etags.c 237
2011length c-src/etags.c 2495
2012length y-src/cccp.y 113
2013length y-src/cccp.y 44
2014LEQ y-src/cccp.c 14
2015/less ps-src/rfc1245.ps /^\/less \/equal \/greater \/question \/at \/A \/B \/C \/D \/E/
2016\less tex-src/texinfo.tex /^\\def\\less{\\realbackslash less}%$/
2017\less tex-src/texinfo.tex /^\\def\\less{\\realbackslash less}$/
2018let c-src/emacs/src/lisp.h 2981
2019letter tex-src/texinfo.tex /^ {#1}{Appendix \\appendixletter}{\\noexpand\\folio}}/
2020letter tex-src/texinfo.tex /^{#1}{\\appendixletter}{\\the\\secno}{\\noexpand\\folio}/
2021letter tex-src/texinfo.tex /^{#1}{\\appendixletter}{\\the\\secno}{\\the\\subsecno}{\\/
2022letter tex-src/texinfo.tex /^ {\\appendixletter}$/
2023letter tex-src/texinfo.tex /^ {\\appendixletter}{\\the\\secno}{\\the\\subsecno}{\\th/
2024letter tex-src/texinfo.tex /^\\chapmacro {#1}{Appendix \\appendixletter}%$/
2025letter tex-src/texinfo.tex /^\\gdef\\thissection{#1}\\secheading {#1}{\\appendixlet/
2026letter tex-src/texinfo.tex /^\\subsecheading {#1}{\\appendixletter}{\\the\\secno}{\\/
2027letter: tex-src/texinfo.tex /^\\xdef\\thischapter{Appendix \\appendixletter: \\noexp/
2028level c-src/emacs/src/lisp.h 3153
2029lex prol-src/natded.prolog /^lex(W,SynOut,Sem):-$/
2030lexptr y-src/cccp.y 332
2031LE y-src/parse.c 7
2032L_FN0 y-src/parse.c 14
2033L_FN1R y-src/parse.c 20
2034L_FN1 y-src/parse.c 15
2035L_FN2R y-src/parse.c 21
2036L_FN2 y-src/parse.c 16
2037L_FN3R y-src/parse.c 22
2038L_FN3 y-src/parse.c 17
2039L_FN4R y-src/parse.c 23
2040L_FN4 y-src/parse.c 18
2041L_FNNR y-src/parse.c 24
2042L_FNN y-src/parse.c 19
2043L_getit c-src/etags.c /^L_getit (void)$/
2044L_GE y-src/parse.c 27
2045__libc_atexit c-src/exit.c 30
2046__libc_atexit c-src/exit.strange_suffix 30
2047libs merc-src/accumulator.m /^:- import_module libs.$/
2048licenze html-src/softwarelibero.html /^Licenze d'uso di un programma$/
2049LIGHTBLUE cp-src/screen.hpp 21
2050LIGHTCYAN cp-src/screen.hpp 23
2051LIGHTGRAY cp-src/screen.hpp 19
2052LIGHTGREEN cp-src/screen.hpp 22
2053LIGHTMAGENTA cp-src/screen.hpp 25
2054LIGHTRED cp-src/screen.hpp 24
2055limit cp-src/Range.h /^ double limit (void) const { return rng_limit; }$/
2056linebuffer c-src/etags.c 239
2057linebuffer_init c-src/etags.c /^linebuffer_init (linebuffer *lbp)$/
2058linebuffer_setlen c-src/etags.c /^linebuffer_setlen (linebuffer *lbp, int toksize)$/
2059lineCount php-src/lce_functions.php /^ function lineCount($entry)$/
2060line c-src/etags.c 2493
2061lineno c-src/emacs/src/lisp.h 3147
2062lineno c-src/etags.c 2506
2063\linenumber tex-src/texinfo.tex /^ \\def\\linenumber{\\the\\inputlineno:\\space}$/
2064line perl-src/htlmify-cystic 37
2065linepos c-src/etags.c 2507
2066linepos c-src/etags.c 2922
2067line y-src/parse.y 87
2068links html-src/software.html /^Links to interesting software$/
2069Lisp_Bits c-src/emacs/src/lisp.h 239
2070Lisp_Boolfwd c-src/emacs/src/lisp.h 2284
2071Lisp_Bool_Vector c-src/emacs/src/lisp.h 1384
2072Lisp_Buffer_Local_Value c-src/emacs/src/lisp.h 2334
2073Lisp_Buffer_Objfwd c-src/emacs/src/lisp.h 2302
2074Lisp_Char_Table c-src/emacs/src/lisp.h 1575
2075Lisp_Compiled c-src/emacs/src/lisp.h 2429
2076Lisp_Cons c-src/emacs/src/lisp.h 475
2077lisp_eval_depth c-src/emacs/src/lisp.h 3045
2078Lisp_Finalizer c-src/emacs/src/lisp.h 2186
2079Lisp_Float c-src/emacs/src/lisp.h 2391
2080Lisp_Float c-src/emacs/src/lisp.h 477
2081Lisp_Free c-src/emacs/src/lisp.h 2201
2082Lisp_functions c-src/etags.c /^Lisp_functions (FILE *inf)$/
2083Lisp_Fwd_Bool c-src/emacs/src/lisp.h 505
2084Lisp_Fwd_Buffer_Obj c-src/emacs/src/lisp.h 507
2085Lisp_Fwd c-src/emacs/src/lisp.h 2368
2086Lisp_Fwd_Int c-src/emacs/src/lisp.h 504
2087Lisp_Fwd_Kboard_Obj c-src/emacs/src/lisp.h 508
2088Lisp_Fwd_Obj c-src/emacs/src/lisp.h 506
2089Lisp_Fwd_Type c-src/emacs/src/lisp.h 502
2090Lisp_Hash_Table c-src/emacs/src/lisp.h 1823
2091lisp_h_check_cons_list c-src/emacs/src/lisp.h /^# define lisp_h_check_cons_list() ((void) 0)$/
2092lisp_h_CHECK_LIST_CONS c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_LIST_CONS(x, y) CHECK_TYPE (C/
2093lisp_h_CHECK_NUMBER c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_NUMBER(x) CHECK_TYPE (INTEGER/
2094lisp_h_CHECK_SYMBOL c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_SYMBOL(x) CHECK_TYPE (SYMBOLP/
2095lisp_h_CHECK_TYPE c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_TYPE(ok, predicate, x) \\$/
2096lisp_h_CONSP c-src/emacs/src/lisp.h /^#define lisp_h_CONSP(x) (XTYPE (x) == Lisp_Cons)$/
2097Lisp_help c-src/etags.c 591
2098lisp_h_EQ c-src/emacs/src/lisp.h /^#define lisp_h_EQ(x, y) (XLI (x) == XLI (y))$/
2099lisp_h_FLOATP c-src/emacs/src/lisp.h /^#define lisp_h_FLOATP(x) (XTYPE (x) == Lisp_Float)/
2100lisp_h_INTEGERP c-src/emacs/src/lisp.h /^#define lisp_h_INTEGERP(x) ((XTYPE (x) & (Lisp_Int/
2101lisp_h_make_number c-src/emacs/src/lisp.h /^# define lisp_h_make_number(n) \\$/
2102lisp_h_MARKERP c-src/emacs/src/lisp.h /^#define lisp_h_MARKERP(x) (MISCP (x) && XMISCTYPE /
2103lisp_h_MISCP c-src/emacs/src/lisp.h /^#define lisp_h_MISCP(x) (XTYPE (x) == Lisp_Misc)$/
2104lisp_h_NILP c-src/emacs/src/lisp.h /^#define lisp_h_NILP(x) EQ (x, Qnil)$/
2105lisp_h_SET_SYMBOL_VAL c-src/emacs/src/lisp.h /^#define lisp_h_SET_SYMBOL_VAL(sym, v) \\$/
2106lisp_h_SYMBOL_CONSTANT_P c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOL_CONSTANT_P(sym) (XSYMBOL (sy/
2107lisp_h_SYMBOLP c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOLP(x) (XTYPE (x) == Lisp_Symbo/
2108lisp_h_SYMBOL_VAL c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOL_VAL(sym) \\$/
2109lisp_h_VECTORLIKEP c-src/emacs/src/lisp.h /^#define lisp_h_VECTORLIKEP(x) (XTYPE (x) == Lisp_V/
2110lisp_h_XCAR c-src/emacs/src/lisp.h /^#define lisp_h_XCAR(c) XCONS (c)->car$/
2111lisp_h_XCDR c-src/emacs/src/lisp.h /^#define lisp_h_XCDR(c) XCONS (c)->u.cdr$/
2112lisp_h_XCONS c-src/emacs/src/lisp.h /^#define lisp_h_XCONS(a) \\$/
2113lisp_h_XFASTINT c-src/emacs/src/lisp.h /^# define lisp_h_XFASTINT(a) XINT (a)$/
2114lisp_h_XHASH c-src/emacs/src/lisp.h /^#define lisp_h_XHASH(a) XUINT (a)$/
2115lisp_h_XIL c-src/emacs/src/lisp.h /^# define lisp_h_XIL(i) (i)$/
2116lisp_h_XIL c-src/emacs/src/lisp.h /^# define lisp_h_XIL(i) ((Lisp_Object) { i })$/
2117lisp_h_XINT c-src/emacs/src/lisp.h /^# define lisp_h_XINT(a) (XLI (a) >> INTTYPEBITS)$/
2118lisp_h_XLI c-src/emacs/src/lisp.h /^# define lisp_h_XLI(o) (o)$/
2119lisp_h_XLI c-src/emacs/src/lisp.h /^# define lisp_h_XLI(o) ((o).i)$/
2120lisp_h_XPNTR c-src/emacs/src/lisp.h /^#define lisp_h_XPNTR(a) \\$/
2121lisp_h_XSYMBOL c-src/emacs/src/lisp.h /^# define lisp_h_XSYMBOL(a) \\$/
2122lisp_h_XTYPE c-src/emacs/src/lisp.h /^# define lisp_h_XTYPE(a) ((enum Lisp_Type) (XLI (a/
2123lisp_h_XUNTAG c-src/emacs/src/lisp.h /^# define lisp_h_XUNTAG(a, type) ((void *) (intptr_/
2124LISP_INITIALLY c-src/emacs/src/lisp.h /^#define LISP_INITIALLY(i) (i)$/
2125LISP_INITIALLY c-src/emacs/src/lisp.h /^#define LISP_INITIALLY(i) {i}$/
2126LISP_INITIALLY_ZERO c-src/emacs/src/lisp.h 582
2127Lisp_Int0 c-src/emacs/src/lisp.h 461
2128Lisp_Int1 c-src/emacs/src/lisp.h 462
2129Lisp_Intfwd c-src/emacs/src/lisp.h 2274
2130Lisp_Kboard_Objfwd c-src/emacs/src/lisp.h 2362
2131LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^#define LISP_MACRO_DEFUN(name, type, argdecls, arg/
2132LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (CONSP, bool, (Lisp_Object x), (x/
2133LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (NILP, bool, (Lisp_Object x), (x)/
2134LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (SYMBOL_VAL, Lisp_Object, (struct/
2135LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XCAR, Lisp_Object, (Lisp_Object /
2136LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XCONS, struct Lisp_Cons *, (Lisp/
2137LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XHASH, EMACS_INT, (Lisp_Object a/
2138LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XLI, EMACS_INT, (Lisp_Object o),/
2139LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XPNTR, void *, (Lisp_Object a), /
2140LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^#define LISP_MACRO_DEFUN_VOID(name, argdecls, args/
2141LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (CHECK_LIST_CONS, (Lisp_Obje/
2142LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (CHECK_TYPE,$/
2143LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (SET_SYMBOL_VAL,$/
2144Lisp_Marker c-src/emacs/src/lisp.h 1978
2145Lisp_Misc_Any c-src/emacs/src/lisp.h 1971
2146Lisp_Misc c-src/emacs/src/lisp.h 2212
2147Lisp_Misc c-src/emacs/src/lisp.h 458
2148Lisp_Misc_Finalizer c-src/emacs/src/lisp.h 491
2149Lisp_Misc_Float c-src/emacs/src/lisp.h 494
2150Lisp_Misc_Free c-src/emacs/src/lisp.h 487
2151Lisp_Misc_Limit c-src/emacs/src/lisp.h 496
2152Lisp_Misc_Marker c-src/emacs/src/lisp.h 488
2153Lisp_Misc_Overlay c-src/emacs/src/lisp.h 489
2154Lisp_Misc_Save_Value c-src/emacs/src/lisp.h 490
2155Lisp_Misc_Type c-src/emacs/src/lisp.h 485
2156Lisp_Object c-src/emacs/src/lisp.h 567
2157Lisp_Object c-src/emacs/src/lisp.h 577
2158Lisp_Objfwd c-src/emacs/src/lisp.h 2294
2159Lisp_Overlay c-src/emacs/src/lisp.h 2021
2160Lisp_Save_Type c-src/emacs/src/lisp.h 2064
2161Lisp_Save_Value c-src/emacs/src/lisp.h 2110
2162Lisp_String c-src/emacs/src/lisp.h 466
2163Lisp_Sub_Char_Table c-src/emacs/src/lisp.h 1606
2164Lisp_Subr c-src/emacs/src/lisp.h 1670
2165Lisp_suffixes c-src/etags.c 589
2166Lisp_Symbol c-src/emacs/src/lisp.h 454
2167Lisp_Symbol c-src/emacs/src/lisp.h 654
2168\lisp tex-src/texinfo.tex /^\\def\\lisp{\\aboveenvbreak$/
2169Lisp_Type c-src/emacs/src/lisp.h 451
2170Lisp_Vector c-src/emacs/src/lisp.h 1369
2171Lisp_Vectorlike c-src/emacs/src/lisp.h 472
2172lispy_accent_codes c-src/emacs/src/keyboard.c 4634
2173lispy_accent_keys c-src/emacs/src/keyboard.c 4741
2174lispy_drag_n_drop_names c-src/emacs/src/keyboard.c 5181
2175lispy_function_keys c-src/emacs/src/keyboard.c 4768
2176lispy_function_keys c-src/emacs/src/keyboard.c 5065
2177lispy_kana_keys c-src/emacs/src/keyboard.c 5026
2178lispy_modifier_list c-src/emacs/src/keyboard.c /^lispy_modifier_list (int modifiers)$/
2179lispy_multimedia_keys c-src/emacs/src/keyboard.c 4962
2180lispy_wheel_names c-src/emacs/src/keyboard.c 5174
2181list2i c-src/emacs/src/lisp.h /^list2i (EMACS_INT x, EMACS_INT y)$/
2182list3i c-src/emacs/src/lisp.h /^list3i (EMACS_INT x, EMACS_INT y, EMACS_INT w)$/
2183list4i c-src/emacs/src/lisp.h /^list4i (EMACS_INT x, EMACS_INT y, EMACS_INT w, EMA/
2184LISTCONTENTSBUTTON objc-src/PackInsp.m 48
2185LISTCONTENTS objc-src/PackInsp.m 39
2186list c-src/emacs/src/gmalloc.c 186
2187LISTDESCRIPTIONBUTTON objc-src/PackInsp.m 49
2188ListEdit pyt-src/server.py /^class ListEdit(Frame):$/
2189list merc-src/accumulator.m /^:- import_module list.$/
2190list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun list-tags (file &optional _next-match)$/
2191list-tags-function el-src/emacs/lisp/progmodes/etags.el /^(defvar list-tags-function nil$/
2192list_to_ord_set prol-src/ordsets.prolog /^list_to_ord_set(List, Set) :-$/
2193LL_Assert/p ada-src/2ataspri.adb /^ procedure LL_Assert (B : Boolean; M : String) i/
2194LL_Assert/p ada-src/2ataspri.ads /^ procedure LL_Assert (B : Boolean; M : String);$/
2195L_LE y-src/parse.c 25
2196LL_Task_Procedure_Access/t ada-src/2ataspri.ads /^ type LL_Task_Procedure_Access is access procedu/
2197LL_Task_Procedure_Access/t ada-src/etags-test-for.ada /^ type LL_Task_Procedure_Access is access procedu/
2198LL_Wrapper/p ada-src/2ataspri.adb /^ procedure LL_Wrapper (T : TCB_Ptr);$/
2199LL_Wrapper/p ada-src/2ataspri.adb /^ procedure LL_Wrapper (T : TCB_Ptr) is$/
2200LL_Wrapper/p ada-src/etags-test-for.ada /^ procedure LL_Wrapper (T : TCB_Ptr);$/
2201L_NE y-src/parse.c 26
2202lno c-src/etags.c 223
2203/lnormalize ps-src/rfc1245.ps /^\/lnormalize { $/
2204loadContentsOf objc-src/PackInsp.m /^-loadContentsOf:(const char *)type inTable:(HashTa/
2205loadImage objc-src/PackInsp.m /^-loadImage$/
2206loadKeyValuesFrom objc-src/PackInsp.m /^-loadKeyValuesFrom:(const char *)type inTable:(Has/
2207load objc-src/PackInsp.m /^-load$/
2208loadPORManager php-src/lce_functions.php /^ function &loadPORManager()$/
2209local_if_set c-src/emacs/src/lisp.h 2338
2210LOCALIZE_ARCH objc-src/PackInsp.m /^#define LOCALIZE_ARCH(s) NXLoadLocalizedStringFrom/
2211LOCALIZE objc-src/PackInsp.m /^#define LOCALIZE(s) NXLoadLocalizedStringFromTabl/
2212Locate pas-src/common.pas /^function Locate; (*($/
2213location cp-src/clheir.hpp 33
2214location cp-src/clheir.hpp /^ location() { }$/
2215LOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define LOCK_ALIGNED_BLOCKS() \\$/
2216LOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define LOCK_ALIGNED_BLOCKS()$/
2217LOCK c-src/emacs/src/gmalloc.c /^#define LOCK() \\$/
2218LOCK c-src/emacs/src/gmalloc.c /^#define LOCK()$/
2219Lock/t ada-src/2ataspri.ads /^ type Lock is$/
2220Lock/t ada-src/2ataspri.ads /^ type Lock is private;$/
2221\loggingall tex-src/texinfo.tex /^\\def\\loggingall{\\tracingcommands2 \\tracingstats2 $/
2222LONG_TYPE_SIZE y-src/cccp.y 95
2223LOOKING_AT c-src/etags.c /^#define LOOKING_AT(cp, kw) \/* kw is the keyword, /
2224LOOKING_AT_NOCASE c-src/etags.c /^#define LOOKING_AT_NOCASE(cp, kw) \/* the keyword i/
2225lookup_call merc-src/accumulator.m /^:- pred lookup_call(accu_goal_store::in, accu_goal/
2226LOOKUP objc-src/PackInsp.m 176
2227LOOKUP objc-src/PackInsp.m /^#define LOOKUP(key, notfound) ([table isKey:key] ?/
2228lookup y-src/cccp.y /^lookup (name, len, hash)$/
2229LOOP_ON_INPUT_LINES c-src/etags.c /^#define LOOP_ON_INPUT_LINES(file_pointer, line_buf/
2230\losespace tex-src/texinfo.tex /^\\def\\losespace #1{#1}$/
2231lowcase c-src/etags.c /^#define lowcase(c) tolower (CHAR (c))$/
2232\lowercaseenumerate tex-src/texinfo.tex /^\\def\\lowercaseenumerate{%$/
2233LowerCaseNmStr pas-src/common.pas /^function LowerCaseNmStr; (*($/
2234/L ps-src/rfc1245.ps /^\/L { $/
2235/L ps-src/rfc1245.ps /^\/L \/M \/N \/O \/P \/Q \/R \/S \/T \/U \/V \/W \/X \/Y \/Z \/brac/
2236L_RANGE y-src/parse.c 11
2237LSH y-src/cccp.c 16
2238\l tex-src/texinfo.tex /^\\def\\l#1{{\\li #1}\\null} % $/
2239LTGT cp-src/MDiagArray2.h 144
2240LTGT cp-src/MDiagArray2.h 35
2241LTGT cp-src/MDiagArray2.h 39
2242LTGT cp-src/MDiagArray2.h 42
2243Lua_functions c-src/etags.c /^Lua_functions (FILE *inf)$/
2244Lua_help c-src/etags.c 600
2245LUASRC make-src/Makefile /^LUASRC=allegro.lua$/
2246Lua_suffixes c-src/etags.c 598
2247lucid_event_type_list_p c-src/emacs/src/keyboard.c /^lucid_event_type_list_p (Lisp_Object object)$/
2248L_VAR y-src/parse.c 12
2249\lvvmode tex-src/texinfo.tex /^\\def\\lvvmode{\\vbox to 0pt{}}$/
2250mabort c-src/emacs/src/gmalloc.c /^mabort (enum mcheck_status status)$/
2251mach_host_self c-src/machsyscalls.h /^SYSCALL (mach_host_self, -29,$/
2252Machine_Exceptions/t ada-src/2ataspri.ads /^ type Machine_Exceptions is new Interfaces.C.POS/
2253Machin_T/b ada-src/waroquiers.ada /^ protected body Machin_T is$/
2254Machin_T/t ada-src/etags-test-for.ada /^ protected Machin_T is$/
2255Machin_T/t ada-src/etags-test-for.ada /^ protected type Machin_T is$/
2256Machin_T/t ada-src/waroquiers.ada /^ protected type Machin_T is$/
2257mach_msg_trap c-src/machsyscalls.h /^SYSCALL (mach_msg_trap, -25,$/
2258mach_reply_port c-src/machsyscalls.h /^SYSCALL (mach_reply_port, -26,$/
2259mach_task_self c-src/machsyscalls.h /^SYSCALL (mach_task_self, -28,$/
2260mach_thread_self c-src/machsyscalls.h /^SYSCALL (mach_thread_self, -27,$/
2261MAGENTA cp-src/screen.hpp 17
2262MAGICBYTE c-src/emacs/src/gmalloc.c 1856
2263magic c-src/emacs/src/gmalloc.c 1863
2264MAGICFREE c-src/emacs/src/gmalloc.c 1855
2265MAGICWORD c-src/emacs/src/gmalloc.c 1854
2266maintaining.info make-src/Makefile /^maintaining.info: maintaining.texi$/
2267\majorheading tex-src/texinfo.tex /^\\def\\majorheading{\\parsearg\\majorheadingzzz}$/
2268\majorheadingzzz tex-src/texinfo.tex /^\\def\\majorheadingzzz #1{%$/
2269make-abbrev-table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/
2270make_coor prol-src/natded.prolog /^make_coor(s(_),Alpha,Sem1,Sem2,Alpha@Sem1@Sem2).$/
2271make_C_tag c-src/etags.c /^make_C_tag (bool isfun)$/
2272make_ctrl_char c-src/emacs/src/keyboard.c /^make_ctrl_char (int c)$/
2273MakeDispose pyt-src/server.py /^ def MakeDispose(self):$/
2274Makefile_filenames c-src/etags.c 603
2275Makefile_help c-src/etags.c 605
2276Makefile_targets c-src/etags.c /^Makefile_targets (FILE *inf)$/
2277make_fixnum_or_float c-src/emacs/src/lisp.h /^#define make_fixnum_or_float(val) \\$/
2278make_formatted_string c-src/emacs/src/lisp.h /^extern Lisp_Object make_formatted_string (char *, /
2279make_lisp_ptr c-src/emacs/src/lisp.h /^make_lisp_ptr (void *ptr, enum Lisp_Type type)$/
2280make_lisp_symbol c-src/emacs/src/lisp.h /^make_lisp_symbol (struct Lisp_Symbol *sym)$/
2281make_lispy_event c-src/emacs/src/keyboard.c /^make_lispy_event (struct input_event *event)$/
2282make_lispy_focus_in c-src/emacs/src/keyboard.c /^make_lispy_focus_in (Lisp_Object frame)$/
2283make_lispy_focus_out c-src/emacs/src/keyboard.c /^make_lispy_focus_out (Lisp_Object frame)$/
2284make_lispy_movement c-src/emacs/src/keyboard.c /^make_lispy_movement (struct frame *frame, Lisp_Obj/
2285make_lispy_position c-src/emacs/src/keyboard.c /^make_lispy_position (struct frame *f, Lisp_Object /
2286make_lispy_switch_frame c-src/emacs/src/keyboard.c /^make_lispy_switch_frame (Lisp_Object frame)$/
2287MAKE make-src/Makefile /^MAKE:=$(MAKE) --no-print-directory$/
2288make_number c-src/emacs/src/lisp.h /^# define make_number(n) lisp_h_make_number (n)$/
2289make_pointer_integer c-src/emacs/src/lisp.h /^make_pointer_integer (void *p)$/
2290make_scroll_bar_position c-src/emacs/src/keyboard.c /^make_scroll_bar_position (struct input_event *ev, /
2291MakeSitelist pyt-src/server.py /^ def MakeSitelist(self, master):$/
2292MAKESRC make-src/Makefile /^MAKESRC=Makefile$/
2293make_tag c-src/etags.c /^make_tag (const char *name, \/* tag name, or NULL /
2294make_uninit_sub_char_table c-src/emacs/src/lisp.h /^make_uninit_sub_char_table (int depth, int min_cha/
2295make_uninit_vector c-src/emacs/src/lisp.h /^make_uninit_vector (ptrdiff_t size)$/
2296malloc_atfork_handler_child c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_child (void)$/
2297malloc_atfork_handler_parent c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_parent (void)$/
2298malloc_atfork_handler_prepare c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_prepare (void)$/
2299malloc c-src/emacs/src/gmalloc.c 1715
2300malloc c-src/emacs/src/gmalloc.c 64
2301malloc c-src/emacs/src/gmalloc.c 68
2302malloc c-src/emacs/src/gmalloc.c /^extern void *malloc (size_t size) ATTRIBUTE_MALLOC/
2303_malloc c-src/emacs/src/gmalloc.c /^_malloc (size_t size)$/
2304malloc c-src/emacs/src/gmalloc.c /^malloc (size_t size)$/
2305malloc_enable_thread c-src/emacs/src/gmalloc.c /^malloc_enable_thread (void)$/
2306__malloc_extra_blocks c-src/emacs/src/gmalloc.c 381
2307MALLOCFLOOD c-src/emacs/src/gmalloc.c 1857
2308mallochook c-src/emacs/src/gmalloc.c /^mallochook (size_t size)$/
2309malloc_info c-src/emacs/src/gmalloc.c 167
2310malloc_initialize_1 c-src/emacs/src/gmalloc.c /^malloc_initialize_1 (void)$/
2311__malloc_initialize c-src/emacs/src/gmalloc.c /^__malloc_initialize (void)$/
2312__malloc_initialized c-src/emacs/src/gmalloc.c 379
2313_malloc_internal c-src/emacs/src/gmalloc.c /^_malloc_internal (size_t size)$/
2314_malloc_internal_nolock c-src/emacs/src/gmalloc.c /^_malloc_internal_nolock (size_t size)$/
2315_malloc_mutex c-src/emacs/src/gmalloc.c 517
2316_malloc_thread_enabled_p c-src/emacs/src/gmalloc.c 519
2317man manpage make-src/Makefile /^man manpage: etags.1.man$/
2318/manualpapersize ps-src/rfc1245.ps /^\/manualpapersize {$/
2319MANY c-src/emacs/src/lisp.h 2833
2320mao c-src/h.h 101
2321map c-src/emacs/src/keyboard.c 8748
2322map merc-src/accumulator.m /^:- import_module map.$/
2323mapping html-src/algrthms.html /^Mapping the Channel Symbols$/
2324mapsyn prol-src/natded.prolog /^mapsyn(A\/B,AM\/BM):-$/
2325map_word prol-src/natded.prolog /^map_word([[_]|Ws],Exp):-$/
2326MARKERP c-src/emacs/src/lisp.h /^# define MARKERP(x) lisp_h_MARKERP (x)$/
2327mark_kboards c-src/emacs/src/keyboard.c /^mark_kboards (void)$/
2328\math tex-src/texinfo.tex /^\\def\\math#1{\\implicitmath #1\\implicitmath}$/
2329MAX_ALLOCA c-src/emacs/src/lisp.h 4556
2330max_args c-src/emacs/src/lisp.h 1686
2331maxargs c-src/emacs/src/lisp.h 2831
2332max c.c /^__attribute__ ((always_inline)) max (int a, int b)/
2333max c.c /^max (int a, int b)$/
2334max cp-src/conway.cpp /^#define max(x,y) ((x > y) ? x : y)$/
2335max c-src/emacs/src/lisp.h 58
2336max c-src/emacs/src/lisp.h /^#define max(a, b) ((a) > (b) ? (a) : (b))$/
2337MAX_ENCODED_BYTES c-src/emacs/src/keyboard.c 2254
2338MAX_HASH_VALUE c-src/etags.c 2329
2339max_num_directions cp-src/clheir.hpp 31
2340max_num_generic_objects cp-src/clheir.cpp 9
2341MAXPATHLEN c-src/etags.c 115
2342/max ps-src/rfc1245.ps /^\/max {2 copy lt {exch} if pop} bind def$/
2343MAX_WORD_LENGTH c-src/etags.c 2327
2344maybe_gc c-src/emacs/src/lisp.h /^maybe_gc (void)$/
2345maybe merc-src/accumulator.m /^:- import_module maybe.$/
2346MAYBEREL y-src/parse.y /^#define MAYBEREL(p) (*(p)=='[' && (isdigit((p)[1])/
2347MBYTES objc-src/PackInsp.m 59
2348Mcccp y-src/cccp.y /^main ()$/
2349Mc cp-src/c.C /^int main (void) { my_function0(0); my_function1(1)/
2350mcCSC cp-src/c.C 6
2351mcheck c-src/emacs/src/gmalloc.c /^mcheck (void (*func) (enum mcheck_status))$/
2352MCHECK_DISABLED c-src/emacs/src/gmalloc.c 285
2353MCHECK_FREE c-src/emacs/src/gmalloc.c 287
2354MCHECK_HEAD c-src/emacs/src/gmalloc.c 288
2355MCHECK_OK c-src/emacs/src/gmalloc.c 286
2356mcheck_status c-src/emacs/src/gmalloc.c 283
2357MCHECK_TAIL c-src/emacs/src/gmalloc.c 289
2358mcheck_used c-src/emacs/src/gmalloc.c 2012
2359Mconway.cpp cp-src/conway.cpp /^void main(void)$/
2360mdbcomp merc-src/accumulator.m /^:- import_module mdbcomp.$/
2361MDiagArray2 cp-src/MDiagArray2.h 78
2362MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const Array<T>& a) : DiagArray2<T> /
2363MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const DiagArray2<T>& a) : DiagArray/
2364MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const MDiagArray2<T>& a) : DiagArra/
2365MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (int r, int c, const T& val) : DiagA/
2366MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (int r, int c) : DiagArray2<T> (r, c/
2367MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (T *d, int r, int c) : DiagArray2<T>/
2368~MDiagArray2 cp-src/MDiagArray2.h /^ ~MDiagArray2 (void) { }$/
2369MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (void) : DiagArray2<T> () { }$/
2370me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/
2371me22b lua-src/test.lua /^ local function test.me22b (one)$/
2372memalign c-src/emacs/src/gmalloc.c /^memalign (size_t alignment, size_t size)$/
2373member_lessthan_goalid merc-src/accumulator.m /^:- pred member_lessthan_goalid(accu_goal_store::in/
2374member prol-src/natded.prolog /^member(X,[X|_]).$/
2375memclear c-src/emacs/src/lisp.h /^memclear (void *p, ptrdiff_t nbytes)$/
2376menu_bar_item c-src/emacs/src/keyboard.c /^menu_bar_item (Lisp_Object key, Lisp_Object item, /
2377menu_bar_items c-src/emacs/src/keyboard.c /^menu_bar_items (Lisp_Object old)$/
2378menu_bar_items_index c-src/emacs/src/keyboard.c 7369
2379menu_bar_items_vector c-src/emacs/src/keyboard.c 7368
2380menu_bar_one_keymap_changed_items c-src/emacs/src/keyboard.c 7363
2381menu_item_eval_property_1 c-src/emacs/src/keyboard.c /^menu_item_eval_property_1 (Lisp_Object arg)$/
2382menu_item_eval_property c-src/emacs/src/keyboard.c /^menu_item_eval_property (Lisp_Object sexpr)$/
2383menu_separator_name_p c-src/emacs/src/keyboard.c /^menu_separator_name_p (const char *label)$/
2384\menu tex-src/texinfo.tex /^\\long\\def\\menu #1\\end menu{}$/
2385Metags c-src/etags.c /^main (int argc, char **argv)$/
2386metasource c-src/etags.c 198
2387Mfail cp-src/fail.C /^main()$/
2388min_args c-src/emacs/src/lisp.h 1686
2389min_char c-src/emacs/src/lisp.h 1621
2390min cp-src/conway.cpp /^#define min(x,y) ((x > y) ? y : x)$/
2391min c-src/emacs/src/gmalloc.c /^#define min(a, b) ((a) < (b) ? (a) : (b))$/
2392min c-src/emacs/src/lisp.h 57
2393min c-src/emacs/src/lisp.h /^#define min(a, b) ((a) < (b) ? (a) : (b))$/
2394MIN_HASH_VALUE c-src/etags.c 2328
2395/min ps-src/rfc1245.ps /^\/min {2 copy gt {exch} if pop} bind def$/
2396minus cp-src/functions.cpp /^void Date::minus ( int days , int month , int year/
2397\minus tex-src/texinfo.tex /^\\def\\minus{$-$}$/
2398MIN_WORD_LENGTH c-src/etags.c 2326
2399MISCP c-src/emacs/src/lisp.h /^# define MISCP(x) lisp_h_MISCP (x)$/
2400miti html-src/softwarelibero.html /^Sfatiamo alcuni miti$/
2401Mkai-test.pl perl-src/kai-test.pl /^package main;$/
2402modifier_names c-src/emacs/src/keyboard.c 6319
2403modifier_symbols c-src/emacs/src/keyboard.c 6327
2404modify_event_symbol c-src/emacs/src/keyboard.c /^modify_event_symbol (ptrdiff_t symbol_num, int mod/
2405module_class_method ruby-src/test.rb /^ def ModuleExample.module_class_method$/
2406ModuleExample ruby-src/test.rb /^module ModuleExample$/
2407module_instance_method ruby-src/test.rb /^ def module_instance_method$/
2408more_aligned_int c.c 165
2409morecore_nolock c-src/emacs/src/gmalloc.c /^morecore_nolock (size_t size)$/
2410morecore_recursing c-src/emacs/src/gmalloc.c 604
2411More_Lisp_Bits c-src/emacs/src/lisp.h 801
2412more= ruby-src/test1.ru /^ :more$/
2413MOST_NEGATIVE_FIXNUM c-src/emacs/src/lisp.h 835
2414MOST_POSITIVE_FIXNUM c-src/emacs/src/lisp.h 834
2415mouse_syms c-src/emacs/src/keyboard.c 4627
2416move cp-src/clheir.cpp /^void agent::move(int direction)$/
2417MOVE c-src/sysdep.h /^#define MOVE(x,y) movl x, y$/
2418MoveLayerAfter lua-src/allegro.lua /^function MoveLayerAfter (this_one)$/
2419MoveLayerBefore lua-src/allegro.lua /^function MoveLayerBefore (this_one)$/
2420MoveLayerBottom lua-src/allegro.lua /^function MoveLayerBottom ()$/
2421MoveLayerTop lua-src/allegro.lua /^function MoveLayerTop ()$/
2422mprobe c-src/emacs/src/gmalloc.c /^mprobe (void *ptr)$/
2423/M ps-src/rfc1245.ps /^\/M {newpath moveto} bind def$/
2424MSDOS c-src/etags.c 100
2425MSDOS c-src/etags.c 106
2426MSDOS c-src/etags.c 107
2427MSDOS c-src/etags.c 110
2428msgid php-src/lce_functions.php /^ function msgid($line, $class)$/
2429MSGSEL f-src/entry.for /^ ENTRY MSGSEL ( TYPE )$/
2430MSGSEL f-src/entry.strange /^ ENTRY MSGSEL ( TYPE )$/
2431MSGSEL f-src/entry.strange_suffix /^ ENTRY MSGSEL ( TYPE )$/
2432msgstr php-src/lce_functions.php /^ function msgstr($line, $class)$/
2433/ms ps-src/rfc1245.ps /^\/ms { $/
2434mstats c-src/emacs/src/gmalloc.c 308
2435Mtest1.go go-src/test1.go 1
2436Mtest1.go go-src/test1.go /^func main() {$/
2437Mtest.go go-src/test.go 1
2438Mtest.go go-src/test.go /^func main() {$/
2439Mtest.rs rs-src/test.rs /^fn main() {$/
2440mtg html-src/software.html /^MTG$/
2441mt prol-src/natded.prolog /^mt:-$/
2442multibyte c-src/emacs/src/regex.h 403
2443MULTI_LETTER_MOD c-src/emacs/src/keyboard.c 6231
2444MULTI_LETTER_MOD c-src/emacs/src/keyboard.c 6764
2445MULTI_LETTER_MOD c-src/emacs/src/keyboard.c /^#define MULTI_LETTER_MOD(BIT, NAME, LEN) \\$/
2446MULTI_LETTER_MOD c-src/emacs/src/keyboard.c /^#define MULTI_LETTER_MOD(BIT, NAME, LEN) \\$/
2447multi_line c-src/etags.c 267
2448Mx.cc cp-src/x.cc /^main(int argc, char *argv[])$/
2449\mylbrace tex-src/texinfo.tex /^\\def\\mylbrace {{\\tt \\char '173}}$/
2450mypi forth-src/test-forth.fth /^synonym mypi fconst$/
2451my_printf c.c /^my_printf (void *my_object, const char *my_format,/
2452\myrbrace tex-src/texinfo.tex /^\\def\\myrbrace {{\\tt \\char '175}}$/
2453my_struct c.c 226
2454my_struct c-src/h.h 91
2455my_typedef c.c 228
2456my_typedef c-src/h.h 93
2457name c-src/emacs/src/keyboard.c 7241
2458name c-src/emacs/src/lisp.h 1808
2459name c-src/emacs/src/lisp.h 3144
2460name c-src/emacs/src/lisp.h 682
2461name c-src/etags.c 192
2462name c-src/etags.c 218
2463name c-src/etags.c 2271
2464name c-src/etags.c 261
2465name c-src/getopt.h 76
2466name c-src/getopt.h 78
2467named c-src/etags.c 2505
2468NameHasChar pas-src/common.pas /^function NameHasChar; (* (TheName : NameString; Th/
2469name perl-src/htlmify-cystic 357
2470namestringequal pas-src/common.pas /^function namestringequal;(*(var Name1,Name2 : Name/
2471NameStringLess pas-src/common.pas /^function NameStringLess;(*(var Name1,Name2 : NameS/
2472name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Function}%$/
2473name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Macro}%$/
2474name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Special Form}%$/
2475name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{User Option}%$/
2476name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Variable}%$/
2477name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\deftpargs{#3}\\endgrou/
2478name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defunargs{#3}\\endgrou/
2479name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defvarargs{#3}\\endgro/
2480name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defcvtype{} of #1}%$/
2481name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defoptype{} on #1}%$/
2482name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{Instance Variable of #1}%/
2483name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{Method on #1}%$/
2484name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#1} #2}{Function}%$/
2485name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#1} #2}{Variable}%$/
2486name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#2} #3}{#1}%$/
2487name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#2} #3}{#1}$/
2488NAME y-src/cccp.c 8
2489name y-src/cccp.y 113
2490name y-src/cccp.y 43
2491nargs c-src/emacs/src/lisp.h 2987
2492NATNUMP c-src/emacs/src/lisp.h /^NATNUMP (Lisp_Object x)$/
2493/nbluet ps-src/rfc1245.ps /^\/nbluet 256 array def$/
2494n c-src/exit.c 28
2495n c-src/exit.strange_suffix 28
2496NDEBUG c-src/etags.c 88
2497need_adjustment c-src/emacs/src/lisp.h 1986
2498\need tex-src/texinfo.tex /^\\def\\need{\\parsearg\\needx}$/
2499\needx tex-src/texinfo.tex /^\\def\\needx#1{%$/
2500NEG y-src/parse.c 9
2501neighbors cp-src/clheir.hpp 59
2502nelem cp-src/Range.h /^ int nelem (void) const { return rng_nelem; }$/
2503nestlev c-src/etags.c 2525
2504\newcodeindex tex-src/texinfo.tex /^\\def\\newcodeindex #1{$/
2505\newindex tex-src/texinfo.tex /^\\def\\newindex #1{$/
2506NewLayer lua-src/allegro.lua /^function NewLayer (name, x, y, w, h)$/
2507NewLayerSet lua-src/allegro.lua /^function NewLayerSet (name)$/
2508newlb c-src/etags.c 2930
2509newlinepos c-src/etags.c 2932
2510NewNameString pas-src/common.pas /^procedure NewNameString; (* (var NSP: NameStringPo/
2511new objc-src/PackInsp.m /^+new$/
2512new perl-src/htlmify-cystic 163
2513new_tag perl-src/htlmify-cystic 18
2514newtextstring pas-src/common.pas /^function newtextstring; (*: TextString;*)$/
2515next_alive cp-src/conway.hpp 7
2516next_almost_prime c-src/emacs/src/lisp.h /^extern EMACS_INT next_almost_prime (EMACS_INT) ATT/
2517NEXT_ALMOST_PRIME_LIMIT c-src/emacs/src/lisp.h 3573
2518next c.c 174
2519next c-src/emacs/src/gmalloc.c 164
2520next c-src/emacs/src/gmalloc.c 188
2521next c-src/emacs/src/gmalloc.c 198
2522next c-src/emacs/src/keyboard.c 7246
2523next c-src/emacs/src/keyboard.c 861
2524next c-src/emacs/src/lisp.h 1848
2525next c-src/emacs/src/lisp.h 2009
2526next c-src/emacs/src/lisp.h 2037
2527next c-src/emacs/src/lisp.h 2192
2528next c-src/emacs/src/lisp.h 3028
2529next c-src/emacs/src/lisp.h 3134
2530next c-src/emacs/src/lisp.h 700
2531next c-src/etags.c 203
2532next-file el-src/emacs/lisp/progmodes/etags.el /^(defun next-file (&optional initialize novisit)$/
2533next-file-list el-src/emacs/lisp/progmodes/etags.el /^(defvar next-file-list nil$/
2534next_free c-src/emacs/src/lisp.h 1851
2535nextfree c-src/emacs/src/lisp.h 3029
2536\next tex-src/texinfo.tex /^\\def\\next##1{}\\next}$/
2537next_weak c-src/emacs/src/lisp.h 1875
2538next y-src/cccp.y 42
2539NE y-src/parse.c 6
2540nfree c-src/emacs/src/gmalloc.c 150
2541/ngrayt ps-src/rfc1245.ps /^\/ngrayt 256 array def$/
2542/ngreent ps-src/rfc1245.ps /^\/ngreent 256 array def$/
2543NIL_IS_ZERO c-src/emacs/src/lisp.h 1515
2544NILP c-src/emacs/src/lisp.h /^# define NILP(x) lisp_h_NILP (x)$/
2545nl c-src/etags.c 2521
2546NmStrToErrStr pas-src/common.pas /^function NmStrToErrStr;(*($/
2547NmStrToInteger pas-src/common.pas /^function NmStrToInteger; (* (Str : NameString) : i/
2548\nm tex-src/testenv.tex /^\\newcommand{\\nm}[2]{\\nomenclature{#1}{#2}}$/
2549no_argument c-src/getopt.h 89
2550nocase_tail c-src/etags.c /^nocase_tail (const char *cp)$/
2551node c-src/etags.c 225
2552noderef tex-src/texinfo.tex /^\\appendixnoderef %$/
2553node_st c-src/etags.c 214
2554\node tex-src/texinfo.tex /^\\def\\node{\\ENVcheck\\parsearg\\nodezzz}$/
2555\nodexxx[ tex-src/texinfo.tex /^\\def\\nodexxx[#1,#2]{\\gdef\\lastnode{#1}}$/
2556\nodezzz tex-src/texinfo.tex /^\\def\\nodezzz#1{\\nodexxx [#1,]}$/
2557\nofillexdent tex-src/texinfo.tex /^\\def\\nofillexdent{\\parsearg\\nofillexdentyyy}$/
2558\nofillexdentyyy tex-src/texinfo.tex /^\\def\\nofillexdentyyy #1{{\\advance \\leftskip by -\\e/
2559nofonts% tex-src/texinfo.tex /^{\\chapternofonts%$/
2560nofonts tex-src/texinfo.tex /^{\\indexnofonts$/
2561no_lang_help c-src/etags.c 707
2562none_help c-src/etags.c 703
2563NONPOINTER_BITS c-src/emacs/src/lisp.h 78
2564NONPOINTER_BITS c-src/emacs/src/lisp.h 80
2565NONSRCS make-src/Makefile /^NONSRCS=entry.strange lists.erl clheir.hpp.gz$/
2566\normalbackslash tex-src/texinfo.tex /^\\def\\normalbackslash{{\\tt\\rawbackslashxx}}$/
2567\normalcaret tex-src/texinfo.tex /^\\def\\normalcaret{^}$/
2568\normaldoublequote tex-src/texinfo.tex /^\\def\\normaldoublequote{"}$/
2569\normalgreater tex-src/texinfo.tex /^\\def\\normalgreater{>}$/
2570normalize_fresh prol-src/natded.prolog /^normalize_fresh(M,N):-$/
2571normalize prol-src/natded.prolog /^normalize(M,MNorm):-$/
2572/normalize ps-src/rfc1245.ps /^\/normalize {$/
2573normalize_tree prol-src/natded.prolog /^normalize_tree(tree(Rule,Syn:Sem,Trees),$/
2574normalize_trees prol-src/natded.prolog /^normalize_trees([],[]).$/
2575\normalless tex-src/texinfo.tex /^\\def\\normalless{<}$/
2576\normalplus tex-src/texinfo.tex /^\\def\\normalplus{+}$/
2577\normaltilde tex-src/texinfo.tex /^\\def\\normaltilde{~}$/
2578\normalunderscore tex-src/texinfo.tex /^\\def\\normalunderscore{_}$/
2579\normalverticalbar tex-src/texinfo.tex /^\\def\\normalverticalbar{|}$/
2580nosave pyt-src/server.py /^ def nosave(self):$/
2581no_sub c-src/emacs/src/regex.h 387
2582notag2 c-src/dostorture.c 26
2583notag2 c-src/torture.c 26
2584notag4 c-src/dostorture.c 45
2585notag4 c-src/torture.c 45
2586not_bol c-src/emacs/src/regex.h 391
2587/.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/.notdef \/.not/
2588/.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/space \/exclam/
2589not_eol c-src/emacs/src/regex.h 394
2590NOTEQUAL y-src/cccp.c 13
2591no tex-src/texinfo.tex /^\\global\\advance \\appendixno by 1 \\message{Appendix/
2592no tex-src/texinfo.tex /^\\ifnum\\secno=0 Appendix\\xreftie'char\\the\\appendixn/
2593no tex-src/texinfo.tex /^\\newcount \\appendixno \\appendixno = `\\@$/
2594no.\the\secno tex-src/texinfo.tex /^\\else \\ifnum \\subsecno=0 Section\\xreftie'char\\the\\/
2595no.\the\secno.\the\subsecno tex-src/texinfo.tex /^Section\\xreftie'char\\the\\appendixno.\\the\\secno.\\th/
2596no.\the\secno.\the\subsecno.\the\subsubsecno tex-src/texinfo.tex /^Section\\xreftie'char\\the\\appendixno.\\the\\secno.\\th/
2597notinname c-src/etags.c /^#define notinname(c) (_nin[CHAR (c)]) \/* c is not /
2598not_single_kboard_state c-src/emacs/src/keyboard.c /^not_single_kboard_state (KBOARD *kboard)$/
2599npending c-src/emacs/src/keyboard.c 7244
2600/N ps-src/rfc1245.ps /^\/N { $/
2601/nredt ps-src/rfc1245.ps /^\/nredt 256 array def$/
2602\nsbot tex-src/texinfo.tex /^\\def\\nsbot{\\vbox$/
2603\nstop tex-src/texinfo.tex /^\\def\\nstop{\\vbox$/
2604/Ntilde ps-src/rfc1245.ps /^\/Ntilde \/Odieresis \/Udieresis \/aacute \/agrave \/aci/
2605ntool_bar_items c-src/emacs/src/keyboard.c 7974
2606NULL_PTR y-src/cccp.y 63
2607NULL y-src/cccp.y 51
2608\numberedsec tex-src/texinfo.tex /^\\outer\\def\\numberedsec{\\parsearg\\seczzz}$/
2609\numberedsubsec tex-src/texinfo.tex /^\\outer\\def\\numberedsubsec{\\parsearg\\numberedsubsec/
2610\numberedsubseczzz tex-src/texinfo.tex /^\\def\\numberedsubseczzz #1{\\seccheck{subsection}%$/
2611\numberedsubsubsec tex-src/texinfo.tex /^\\outer\\def\\numberedsubsubsec{\\parsearg\\numberedsub/
2612\numberedsubsubseczzz tex-src/texinfo.tex /^\\def\\numberedsubsubseczzz #1{\\seccheck{subsubsecti/
2613numberKeys objcpp-src/SimpleCalc.M /^- numberKeys:sender$/
2614number_len c-src/etags.c /^static int number_len (long) ATTRIBUTE_CONST;$/
2615/numbersign ps-src/rfc1245.ps /^\/numbersign \/dollar \/percent \/ampersand \/quotesing/
2616numbervars prol-src/natded.prolog /^numbervars(X):-$/
2617num_columns cp-src/conway.cpp 16
2618\numericenumerate tex-src/texinfo.tex /^\\def\\numericenumerate{%$/
2619num_input_events c-src/emacs/src/keyboard.c 210
2620NUM_MOD_NAMES c-src/emacs/src/keyboard.c 6325
2621numOfChannels cp-src/c.C 1
2622NUM_RECENT_KEYS c-src/emacs/src/keyboard.c 91
2623num_regs c-src/emacs/src/regex.h 430
2624num_rows cp-src/conway.cpp 15
2625NUMSTATS objc-src/PackInsp.h 36
2626nvars c-src/emacs/src/lisp.h 3140
2627Objc_help c-src/etags.c 613
2628OBJCPPSRC make-src/Makefile /^OBJCPPSRC=SimpleCalc.H SimpleCalc.M$/
2629OBJCSRC make-src/Makefile /^OBJCSRC=Subprocess.h Subprocess.m PackInsp.h PackI/
2630Objc_suffixes c-src/etags.c 609
2631objdef c-src/etags.c 2484
2632object c-src/emacs/src/lisp.h 2128
2633object_registry cp-src/clheir.cpp 10
2634OBJS make-src/Makefile /^OBJS=${GETOPTOBJS} ${REGEXOBJS} ${CHECKOBJS}$/
2635objtag c-src/etags.c 2453
2636objvar c-src/emacs/src/lisp.h 2297
2637obstack_chunk_alloc y-src/parse.y 47
2638obstack_chunk_free y-src/parse.y 48
2639ocatseen c-src/etags.c 2477
2640/ocircumflex ps-src/rfc1245.ps /^\/ocircumflex \/odieresis \/otilde \/uacute \/ugrave \/u/
2641octave_MDiagArray2_h cp-src/MDiagArray2.h 29
2642octave_Range_h cp-src/Range.h 24
2643\oddfooting tex-src/texinfo.tex /^\\def\\oddfooting{\\parsearg\\oddfootingxxx}$/
2644\oddheading tex-src/texinfo.tex /^\\def\\oddheading{\\parsearg\\oddheadingxxx}$/
2645oediff make-src/Makefile /^oediff: OTAGS ETAGS ${infiles}$/
2646offset c-src/emacs/src/lisp.h 2305
2647offset c-src/emacs/src/lisp.h 2365
2648offset c-src/etags.c 2494
2649oignore c-src/etags.c 2483
2650oimplementation c-src/etags.c 2474
2651oinbody c-src/etags.c 2478
2652ok objc-src/PackInsp.m /^-ok:sender$/
2653ok_to_echo_at_next_pause c-src/emacs/src/keyboard.c 159
2654old_value c-src/emacs/src/lisp.h 2980
2655omethodcolon c-src/etags.c 2481
2656omethodparm c-src/etags.c 2482
2657omethodsign c-src/etags.c 2479
2658omethodtag c-src/etags.c 2480
2659\onepageout tex-src/texinfo.tex /^\\def\\onepageout#1{\\hoffset=\\normaloffset$/
2660onone c-src/etags.c 2472
2661oparenseen c-src/etags.c 2476
2662OPENBUTTON objc-src/PackInsp.m 47
2663\opencontents tex-src/texinfo.tex /^\\def\\opencontents{\\openout \\contentsfile = \\jobnam/
2664open-dribble-file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/
2665\openindices tex-src/texinfo.tex /^\\def\\openindices{%$/
2666openInWorkspace objc-src/PackInsp.m /^static void openInWorkspace(const char *filename)$/
2667open objc-src/PackInsp.m /^-open:sender$/
2668operationKeys objcpp-src/SimpleCalc.M /^- operationKeys:sender$/
2669operator+ cp-src/c.C /^ A operator+(A& a) {};$/
2670operator+ cp-src/c.C /^const A& A::operator+(const A&) { }$/
2671operator - cp-src/c.C /^void operator -(int, int) {}$/
2672operator+ cp-src/c.C /^void operator+(int, int) {}$/
2673operator = cp-src/functions.cpp /^Date & Date::operator = ( Date d ){$/
2674operator += cp-src/functions.cpp /^Date & Date::operator += ( int days ){$/
2675operator -= cp-src/functions.cpp /^Date & Date::operator -= ( int days ){$/
2676operator ++ cp-src/functions.cpp /^Date & Date::operator ++ ( void ){$/
2677operator -- cp-src/functions.cpp /^Date & Date::operator -- ( void ){$/
2678operator - cp-src/functions.cpp /^int Date::operator - ( Date d ){$/
2679operator < cp-src/functions.cpp /^int Date::operator < ( Date d ) {$/
2680operator == cp-src/functions.cpp /^int Date::operator == ( Date d ) {$/
2681operator > cp-src/functions.cpp /^int Date::operator > ( Date d ) {$/
2682operator >> cp-src/functions.cpp /^istream& operator >> ( istream &i, Date & dd ){$/
2683operator << cp-src/functions.cpp /^ostream& operator << ( ostream &c, Date d ) {$/
2684operator = cp-src/MDiagArray2.h /^ MDiagArray2<T>& operator = (const MDiagArray2<T>/
2685OperatorFun c-src/h.h 88
2686operator int cp-src/c.C /^void operator int(int, int) {}$/
2687operator int cp-src/fail.C /^ operator int() const {return x;}$/
2688operator MArray2<T> cp-src/MDiagArray2.h /^ operator MArray2<T> () const$/
2689operator y-src/cccp.y 438
2690\opnr tex-src/texinfo.tex /^\\def\\opnr{{\\sf\\char`\\(}} \\def\\clnr{{\\sf\\char`\\)}} /
2691opparsebody\Edefop\defopx\defopheader\defoptype tex-src/texinfo.tex /^\\defopparsebody\\Edefop\\defopx\\defopheader\\defoptyp/
2692oprotocol c-src/etags.c 2473
2693/O ps-src/rfc1245.ps /^\/O {closepath} bind def$/
2694optional_argument c-src/getopt.h 91
2695option c-src/getopt.h 73
2696OPTIONS make-src/Makefile /^OPTIONS=--members --declarations --regex=@regexfil/
2697opvarparsebody\Edefcv\defcvx\defcvarheader\defcvtype tex-src/texinfo.tex /^\\defopvarparsebody\\Edefcv\\defcvx\\defcvarheader\\def/
2698ord_add_element prol-src/ordsets.prolog /^ord_add_element([], Element, [Element]).$/
2699ord_del_element prol-src/ordsets.prolog /^ord_del_element([], _, []).$/
2700ord_disjoint prol-src/ordsets.prolog /^ord_disjoint(Set1, Set2) :-$/
2701/ordfeminine ps-src/rfc1245.ps /^\/ordfeminine \/ordmasculine \/.notdef \/ae \/oslash \/q/
2702ord_intersection2 prol-src/ordsets.prolog /^ord_intersection2(1, [Set|Sets], Set0, Sets0) :- !/
2703ord_intersection3 prol-src/ordsets.prolog /^ord_intersection3(<, _, Set1, Head2, Tail2, Inters/
2704ord_intersection4 prol-src/ordsets.prolog /^ord_intersection4(<, _, Set1, Head2, Tail2, Inters/
2705ord_intersection prol-src/ordsets.prolog /^ord_intersection([], _, []).$/
2706ord_intersection prol-src/ordsets.prolog /^ord_intersection([], Set2, [], Set2).$/
2707ord_intersection prol-src/ordsets.prolog /^ord_intersection(Sets, Intersection) :- $/
2708ord_intersect prol-src/ordsets.prolog /^ord_intersect([Head1|Tail1], [Head2|Tail2]) :-$/
2709ord_member prol-src/ordsets.prolog /^ord_member(X, [E|Es]) :-$/
2710ord_seteq prol-src/ordsets.prolog /^ord_seteq(Set1, Set2) :-$/
2711ord_setproduct prol-src/ordsets.prolog /^ord_setproduct([], _, []).$/
2712ord_subset prol-src/ordsets.prolog /^ord_subset([], _).$/
2713ord_subtract prol-src/ordsets.prolog /^ord_subtract(Set1, Set2, Union) :-$/
2714ord_symdiff prol-src/ordsets.prolog /^ord_symdiff([], Set2, Set2).$/
2715ord_union4 prol-src/ordsets.prolog /^ord_union4(<, Head, Set1, Head2, Tail2, [Head|Unio/
2716ord_union_all prol-src/ordsets.prolog /^ord_union_all(1, [Set|Sets], Set, Sets) :- !.$/
2717ord_union prol-src/ordsets.prolog /^ord_union(Set1, Set2, Union) :-$/
2718ord_union prol-src/ordsets.prolog /^ord_union([], Union) :- !, Union = [].$/
2719OR y-src/cccp.c 10
2720oss html-src/softwarelibero.html /^Il movimento open source$/
2721otagseen c-src/etags.c 2475
2722OTAGS make-src/Makefile /^OTAGS: oetags ${SRCS} srclist$/
2723/Otilde ps-src/rfc1245.ps /^\/Otilde \/OE \/oe \/endash \/emdash \/quotedblleft \/quo/
2724output_file perl-src/htlmify-cystic 35
2725output_files perl-src/htlmify-cystic 32
2726outputtable html-src/algrthms.html /^Output$/
2727outputTime cp-src/c.C 9
2728outsyn prol-src/natded.prolog /^outsyn(['Any'],_).$/
2729OVERLAYP c-src/emacs/src/lisp.h /^OVERLAYP (Lisp_Object x)$/
2730Overview tex-src/gzip.texi /^@node Overview, Sample, Copying, Top$/
2731PackageInspector objc-src/PackInsp.h /^@interface PackageInspector:WMInspector$/
2732\pagebody tex-src/texinfo.tex /^\\def\\pagebody#1{\\vbox to\\pageheight{\\boxmaxdepth=\\/
2733/pagedimen ps-src/rfc1245.ps /^\/pagedimen { $/
2734pagesize c-src/emacs/src/gmalloc.c 1703
2735\pagesofar tex-src/texinfo.tex /^\\def\\pagesofar{\\unvbox\\partialpage %$/
2736\page tex-src/texinfo.tex /^ \\def\\page{%$/
2737\page tex-src/texinfo.tex /^\\def\\page{\\par\\vfill\\supereject}$/
2738pair merc-src/accumulator.m /^:- import_module pair.$/
2739/papersize ps-src/rfc1245.ps /^\/papersize {$/
2740/paragraph ps-src/rfc1245.ps /^\/paragraph \/germandbls \/registered \/copyright \/tra/
2741/parenright ps-src/rfc1245.ps /^\/parenright \/asterisk \/plus \/comma \/hyphen \/period/
2742parent c-src/emacs/src/keyboard.c 8745
2743parent c-src/emacs/src/lisp.h 1590
2744\parseargline tex-src/texinfo.tex /^\\def\\parseargline{\\begingroup \\obeylines \\parsearg/
2745\parsearg tex-src/texinfo.tex /^\\def\\parsearg #1{\\let\\next=#1\\begingroup\\obeylines/
2746\parseargx tex-src/texinfo.tex /^\\def\\parseargx{%$/
2747parse_c_expression y-src/cccp.y /^parse_c_expression (string)$/
2748parse_cgi prol-src/natded.prolog /^parse_cgi(TokenList,KeyVals):-$/
2749parse_error y-src/parse.y 82
2750parse_escape y-src/cccp.y /^parse_escape (string_ptr)$/
2751parseFromVars php-src/lce_functions.php /^ function parseFromVars($prefix)$/
2752parse_hash y-src/parse.y 64
2753parse_menu_item c-src/emacs/src/keyboard.c /^parse_menu_item (Lisp_Object item, int inmenubar)$/
2754parse_modifiers c-src/emacs/src/keyboard.c /^parse_modifiers (Lisp_Object symbol)$/
2755parse_modifiers_uncached c-src/emacs/src/keyboard.c /^parse_modifiers_uncached (Lisp_Object symbol, ptrd/
2756parse_number y-src/cccp.y /^parse_number (olen)$/
2757parse prol-src/natded.prolog /^parse(Ws,Cat):-$/
2758parse_return_error y-src/cccp.y 70
2759parse_return y-src/parse.y 74
2760parse_solitary_modifier c-src/emacs/src/keyboard.c /^parse_solitary_modifier (Lisp_Object symbol)$/
2761parse_tool_bar_item c-src/emacs/src/keyboard.c /^parse_tool_bar_item (Lisp_Object key, Lisp_Object /
2762parse_tree merc-src/accumulator.m /^:- import_module parse_tree.$/
2763Pascal_functions c-src/etags.c /^Pascal_functions (FILE *inf)$/
2764Pascal_help c-src/etags.c 621
2765Pascal_suffixes c-src/etags.c 619
2766PASSRC make-src/Makefile /^PASSRC=common.pas$/
2767pat c-src/etags.c 262
2768pattern c-src/etags.c 260
2769p c-src/emacs/src/lisp.h 4673
2770p c-src/emacs/src/lisp.h 4679
2771pD c-src/emacs/src/lisp.h 165
2772pD c-src/emacs/src/lisp.h 167
2773pD c-src/emacs/src/lisp.h 169
2774pD c-src/emacs/src/lisp.h 171
2775pdlcount c-src/emacs/src/lisp.h 3046
2776PDT c-src/h.h /^ Date 04 May 87 235311 PDT (Mon)$/
2777pending-delete-mode el-src/TAGTEST.EL /^(defalias 'pending-delete-mode 'delete-selection-m/
2778pending_funcalls c-src/emacs/src/keyboard.c 4377
2779pending_signals c-src/emacs/src/keyboard.c 80
2780/periodcentered ps-src/rfc1245.ps /^\/periodcentered \/quotesinglbase \/quotedblbase \/per/
2781Perl_functions c-src/etags.c /^Perl_functions (FILE *inf)$/
2782Perl_help c-src/etags.c 630
2783Perl_interpreters c-src/etags.c 628
2784PERLSRC make-src/Makefile /^PERLSRC=htlmify-cystic yagrip.pl kai-test.pl mirro/
2785Perl_suffixes c-src/etags.c 626
2786p/f ada-src/etags-test-for.ada /^function p ("p");$/
2787p/f ada-src/etags-test-for.ada /^ function p pragma Import (C,$/
2788pfatal c-src/etags.c /^pfatal (const char *s1)$/
2789pfdset c-src/h.h 57
2790pfnote c-src/etags.c /^pfnote (char *name, bool is_func, char *linestart,/
2791/PF ps-src/rfc1245.ps /^\/PF { $/
2792PHP_functions c-src/etags.c /^PHP_functions (FILE *inf)$/
2793PHP_help c-src/etags.c 639
2794PHPSRC make-src/Makefile /^PHPSRC=lce_functions.php ptest.php sendmail.php$/
2795PHP_suffixes c-src/etags.c 637
2796pI c-src/emacs/src/lisp.h 106
2797pI c-src/emacs/src/lisp.h 94
2798pI c-src/emacs/src/lisp.h 99
2799\pindex tex-src/texinfo.tex /^\\def\\pindex {\\pgindex}$/
2800pinned c-src/emacs/src/lisp.h 679
2801Pkg1/b ada-src/etags-test-for.ada /^package body Pkg1 is$/
2802Pkg1/b ada-src/waroquiers.ada /^package body Pkg1 is$/
2803Pkg1_Func1/f ada-src/etags-test-for.ada /^ function Pkg1_Func1 return Boolean;$/
2804Pkg1_Func1/f ada-src/etags-test-for.ada /^function Pkg1_Func1 return Boolean is$/
2805Pkg1_Func1/f ada-src/etags-test-for.ada /^ function Pkg1_Func1 return Boolean is separate;$/
2806Pkg1_Func1/f ada-src/waroquiers.ada /^ function Pkg1_Func1 return Boolean;$/
2807Pkg1_Func1/f ada-src/waroquiers.ada /^function Pkg1_Func1 return Boolean is$/
2808Pkg1_Func1/f ada-src/waroquiers.ada /^ function Pkg1_Func1 return Boolean is separate;$/
2809Pkg1_Func2/f ada-src/etags-test-for.ada /^ function Pkg1_Func2 (Ijk : Integer; Z : Integer)/
2810Pkg1_Func2/f ada-src/waroquiers.ada /^ function Pkg1_Func2 (Ijk : Integer; Z : Integer)/
2811Pkg1_Pkg1/b ada-src/etags-test-for.ada /^package body Pkg1_Pkg1 is$/
2812Pkg1_Pkg1/b ada-src/etags-test-for.ada /^ package body Pkg1_Pkg1 is separate;$/
2813Pkg1_Pkg1/b ada-src/waroquiers.ada /^package body Pkg1_Pkg1 is$/
2814Pkg1_Pkg1/b ada-src/waroquiers.ada /^ package body Pkg1_Pkg1 is separate;$/
2815Pkg1_Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Pkg1_Proc1;$/
2816Pkg1_Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Pkg1_Proc1 is$/
2817Pkg1_Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Pkg1_Proc1;$/
2818Pkg1_Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Pkg1_Proc1 is$/
2819Pkg1_Pkg1/s ada-src/etags-test-for.ada /^ package Pkg1_Pkg1 is$/
2820Pkg1_Pkg1/s ada-src/waroquiers.ada /^ package Pkg1_Pkg1 is$/
2821Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc1;$/
2822Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc1 is$/
2823Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc1;$/
2824Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc1 is$/
2825Pkg1_Proc2/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc2 (I : Integer);$/
2826Pkg1_Proc2/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc2 (I : Integer) is$/
2827Pkg1_Proc2/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc2 (I : Integer);$/
2828Pkg1_Proc2/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc2 (I : Integer) is$/
2829Pkg1/s ada-src/etags-test-for.ada /^package Pkg1 is$/
2830Pkg1/s ada-src/waroquiers.ada /^package Pkg1 is$/
2831plainc c-src/etags.c 2934
2832plain_C_entries c-src/etags.c /^plain_C_entries (FILE *inf)$/
2833plain_C_suffixes c-src/etags.c 643
2834\plainsecheading tex-src/texinfo.tex /^\\def\\plainsecheading #1{\\secheadingi {#1}}$/
2835plist c-src/emacs/src/lisp.h 2040
2836plist c-src/emacs/src/lisp.h 697
2837plus cp-src/functions.cpp /^void Date::plus ( int days , int month , int year /
2838plus go-src/test1.go 5
2839plusvalseq prol-src/natded.prolog /^plusvalseq([]) --> [].$/
2840pMd c-src/emacs/src/lisp.h 150
2841pMd c-src/emacs/src/lisp.h 155
2842pMu c-src/emacs/src/lisp.h 151
2843pMu c-src/emacs/src/lisp.h 156
2844p_next c-src/etags.c 258
2845POEntryAD php-src/lce_functions.php 29
2846POEntry php-src/lce_functions.php 105
2847POEntry php-src/lce_functions.php /^ function POEntry()$/
2848pointer c-src/emacs/src/lisp.h 2125
2849point forth-src/test-forth.fth /^BEGIN-STRUCTURE point \\ create the named structure/
2850\point tex-src/texinfo.tex /^\\def\\point{$\\star$}$/
2851poll_for_input_1 c-src/emacs/src/keyboard.c /^poll_for_input_1 (void)$/
2852poll_for_input c-src/emacs/src/keyboard.c /^poll_for_input (struct atimer *timer)$/
2853poll_suppress_count c-src/emacs/src/keyboard.c 1908
2854poll_suppress_count c-src/emacs/src/lisp.h 3047
2855poll_timer c-src/emacs/src/keyboard.c 1915
2856popclass_above c-src/etags.c /^popclass_above (int bracelev)$/
2857pop_kboard c-src/emacs/src/keyboard.c /^pop_kboard (void)$/
2858pop-tag-mark el-src/emacs/lisp/progmodes/etags.el /^(defalias 'pop-tag-mark 'xref-pop-marker-stack)$/
2859POReader php-src/lce_functions.php 163
2860POReader php-src/lce_functions.php /^ function POReader($domain, $filename)$/
2861PORManager php-src/lce_functions.php 498
2862PORManager php-src/lce_functions.php /^ function PORManager()$/
2863position_to_Time c-src/emacs/src/keyboard.c /^position_to_Time (ptrdiff_t pos)$/
2864posix_memalign c-src/emacs/src/gmalloc.c /^posix_memalign (void **memptr, size_t alignment, s/
2865posn-at-point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/
2866posn-at-x-y c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, /
2867possible_sum_sign y-src/cccp.y /^#define possible_sum_sign(a, b, sum) ((((a) ^ (b))/
2868PostControls pyt-src/server.py /^ def PostControls(self):$/
2869post pyt-src/server.py /^ def post(self):$/
2870POSTSCRIPTFLAGS make-src/Makefile /^POSTSCRIPTFLAGS=--language=none --regex='#\/[^ \\t{]/
2871pot_etags_version c-src/etags.c 81
2872pp1 c-src/dostorture.c /^int pp1($/
2873pp1 c-src/torture.c /^int pp1($/
2874pp2 c-src/dostorture.c /^pp2$/
2875pp2 c-src/torture.c /^pp2$/
2876pp3 c-src/dostorture.c /^pp3(int bar)$/
2877pp3 c-src/torture.c /^pp3(int bar)$/
2878pp_bas_cat prol-src/natded.prolog /^pp_bas_cat(Cat):-$/
2879pp_cat prol-src/natded.prolog /^pp_cat(Syn:Sem):-$/
2880pp_exp prol-src/natded.prolog /^pp_exp('NIL'):-$/
2881pp_exps prol-src/natded.prolog /^pp_exps([]).$/
2882pp_html_fitch_tree prol-src/natded.prolog /^pp_html_fitch_tree(tree(der,Root,[ders(Words)]),M,/
2883pp_html_table_fitch_tree prol-src/natded.prolog /^pp_html_table_fitch_tree(T):-$/
2884pp_html_table_tree prol-src/natded.prolog /^pp_html_table_tree(T):-$/
2885pp_html_tree prol-src/natded.prolog /^pp_html_tree(ass(Syn,V,'$VAR'(N))):-$/
2886pp_html_trees prol-src/natded.prolog /^pp_html_trees([T|Ts],N,M):-$/
2887pp_lam_bracket prol-src/natded.prolog /^pp_lam_bracket(A^B):-$/
2888pp_lam_paren prol-src/natded.prolog /^pp_lam_paren(Var^Alpha):-$/
2889pp_lam prol-src/natded.prolog /^pp_lam(Var^Alpha):-$/
2890pp_paren prol-src/natded.prolog /^pp_paren(C):-$/
2891pp_rule prol-src/natded.prolog /^pp_rule(fe):-write('\/E').$/
2892/P ps-src/rfc1245.ps /^\/P { $/
2893pp_syn_back prol-src/natded.prolog /^pp_syn_back(A\/B):-$/
2894pp_syn_paren prol-src/natded.prolog /^pp_syn_paren(A\/B):-$/
2895pp_syn prol-src/natded.prolog /^pp_syn(A\/B):-$/
2896pp_tree prol-src/natded.prolog /^pp_tree(T):-$/
2897pp_trees prol-src/natded.prolog /^pp_trees([T|Ts],Column):-$/
2898pp_word_list prol-src/natded.prolog /^pp_word_list([]).$/
2899pp_word_list_rest prol-src/natded.prolog /^pp_word_list_rest([]).$/
2900pp_word prol-src/natded.prolog /^pp_word(W):-$/
2901Pre_Call_State/t ada-src/2ataspri.ads /^ type Pre_Call_State is new System.Address;$/
2902.PRECIOUS make-src/Makefile /^.PRECIOUS: ETAGS CTAGS ETAGS16 CTAGS16 ETAGS17 CTA/
2903predicate c-src/emacs/src/lisp.h 2307
2904prev c.c 175
2905prev c-src/emacs/src/gmalloc.c 165
2906prev c-src/emacs/src/gmalloc.c 189
2907prev c-src/emacs/src/lisp.h 2191
2908\primary tex-src/texinfo.tex /^\\def\\primary #1{\\line{#1\\hfil}}$/
2909PrintAdd go-src/test1.go /^func (n intNumber) PrintAdd() {$/
2910PrintAdd go-src/test1.go /^func (s str) PrintAdd() {$/
2911printClassification php-src/lce_functions.php /^ function printClassification()$/
2912\printedmanual tex-src/texinfo.tex /^\\def\\printedmanual{\\ignorespaces #5}%$/
2913\printedmanual tex-src/texinfo.tex /^section ``\\printednodename'' in \\cite{\\printedmanu/
2914\printednodename tex-src/texinfo.tex /^\\def\\printednodename{\\ignorespaces #1}%$/
2915\printednodename tex-src/texinfo.tex /^\\def\\printednodename{\\ignorespaces #3}%$/
2916print_help c-src/etags.c /^print_help (argument *argbuffer)$/
2917\printindex tex-src/texinfo.tex /^\\def\\printindex{\\parsearg\\doprintindex}$/
2918print_language_names c-src/etags.c /^print_language_names (void)$/
2919printmax_t c-src/emacs/src/lisp.h 148
2920printmax_t c-src/emacs/src/lisp.h 153
2921\print tex-src/texinfo.tex /^\\def\\print{\\leavevmode\\lower.1ex\\hbox to 1em{\\hfil/
2922\print tex-src/texinfo.tex /^\\def\\print{\\realbackslash print}$/
2923PRINT_UNDOCUMENTED_OPTIONS_HELP c-src/etags.c 804
2924print_version c-src/etags.c /^print_version (void)$/
2925Private objc-src/Subprocess.m /^@interface Subprocess(Private)$/
2926Private_T/b ada-src/etags-test-for.ada /^ task body Private_T is$/
2927Private_T/b ada-src/waroquiers.ada /^ task body Private_T is$/
2928Private_T/k ada-src/etags-test-for.ada /^ task Private_T;$/
2929Private_T/k ada-src/waroquiers.ada /^ task Private_T;$/
2930Private_T/p ada-src/etags-test-for.ada /^ procedure Private_T;$/
2931Private_T/p ada-src/etags-test-for.ada /^ procedure Private_T is$/
2932Private_T/p ada-src/waroquiers.ada /^ procedure Private_T;$/
2933Private_T/p ada-src/waroquiers.ada /^ procedure Private_T is$/
2934Private_T/t ada-src/etags-test-for.ada /^ type Private_T is$/
2935Private_T/t ada-src/etags-test-for.ada /^ type Private_T is private;$/
2936Private_T/t ada-src/waroquiers.ada /^ type Private_T is$/
2937Private_T/t ada-src/waroquiers.ada /^ type Private_T is private;$/
2938Problems tex-src/gzip.texi /^@node Problems, Concept Index, Tapes, Top$/
2939proc c-src/h.h 87
2940process_file c-src/etags.c /^process_file (FILE *fh, char *fn, language *lang)$/
2941process_file_name c-src/etags.c /^process_file_name (char *file, language *lang)$/
2942PROCESSP c-src/emacs/src/lisp.h /^PROCESSP (Lisp_Object a)$/
2943process_pending_signals c-src/emacs/src/keyboard.c /^process_pending_signals (void)$/
2944process_special_events c-src/emacs/src/keyboard.c /^process_special_events (void)$/
2945process_tool_bar_item c-src/emacs/src/keyboard.c /^process_tool_bar_item (Lisp_Object key, Lisp_Objec/
2946Proc/t ada-src/2ataspri.ads /^ type Proc is access procedure (Addr : System.Ad/
2947prof make-src/Makefile /^prof: ETAGS$/
2948prolog_atom c-src/etags.c /^prolog_atom (char *s, size_t pos)$/
2949Prolog_functions c-src/etags.c /^Prolog_functions (FILE *inf)$/
2950Prolog_help c-src/etags.c 654
2951prolog_pr c-src/etags.c /^prolog_pr (char *s, char *last)$/
2952prolog_skip_comment c-src/etags.c /^prolog_skip_comment (linebuffer *plb, FILE *inf)$/
2953Prolog_suffixes c-src/etags.c 652
2954PROLSRC make-src/Makefile /^PROLSRC=ordsets.prolog natded.prolog$/
2955PROP c-src/emacs/src/keyboard.c 8379
2956PROP c-src/emacs/src/keyboard.c /^#define PROP(IDX) AREF (tool_bar_item_properties, /
2957prop c-src/etags.c 209
2958PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) \/* empty *\/$/
2959PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) protect_malloc_/
2960protect_malloc_state c-src/emacs/src/gmalloc.c /^protect_malloc_state (int protect_p)$/
2961PRTPKG f-src/entry.for /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/
2962PRTPKG f-src/entry.strange /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/
2963PRTPKG f-src/entry.strange_suffix /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/
2964PSEUDO c-src/sysdep.h /^#define PSEUDO(name, syscall_name, args) /
2965PSEUDOVECSIZE c-src/emacs/src/lisp.h /^#define PSEUDOVECSIZE(type, nonlispfield) \\$/
2966PSEUDOVECTOR_AREA_BITS c-src/emacs/src/lisp.h 818
2967PSEUDOVECTOR_FLAG c-src/emacs/src/lisp.h 774
2968PSEUDOVECTORP c-src/emacs/src/lisp.h /^PSEUDOVECTORP (Lisp_Object a, int code)$/
2969PSEUDOVECTOR_REST_BITS c-src/emacs/src/lisp.h 813
2970PSEUDOVECTOR_REST_MASK c-src/emacs/src/lisp.h 814
2971PSEUDOVECTOR_SIZE_BITS c-src/emacs/src/lisp.h 808
2972PSEUDOVECTOR_SIZE_MASK c-src/emacs/src/lisp.h 809
2973PSEUDOVECTOR_TYPEP c-src/emacs/src/lisp.h /^PSEUDOVECTOR_TYPEP (struct vectorlike_header *a, i/
2974PS_functions c-src/etags.c /^PS_functions (FILE *inf)$/
2975PS_help c-src/etags.c 649
2976PSSRC make-src/Makefile /^PSSRC=rfc1245.ps$/
2977PS_suffixes c-src/etags.c 647
2978pthread_mutexattr_setprio_ceiling/f ada-src/2ataspri.adb /^ function pthread_mutexattr_setprio_ceiling$/
2979pthread_mutexattr_setprotocol/f ada-src/2ataspri.adb /^ function pthread_mutexattr_setprotocol$/
2980PTY_LENGTH objc-src/Subprocess.m 21
2981PTY_TEMPLATE objc-src/Subprocess.m 20
2982Public_T/t ada-src/etags-test-for.ada /^ type Public_T is$/
2983Public_T/t ada-src/waroquiers.ada /^ type Public_T is$/
2984purpose c-src/emacs/src/lisp.h 1594
2985pushclass_above c-src/etags.c /^pushclass_above (int bracelev, char *str, int len)/
2986PUSH_C_STR c-src/emacs/src/keyboard.c /^#define PUSH_C_STR(str, listvar) \\$/
2987PUSH_HANDLER c-src/emacs/src/lisp.h /^#define PUSH_HANDLER(c, tag_ch_val, handlertype) \\/
2988push_kboard c-src/emacs/src/keyboard.c /^push_kboard (struct kboard *k)$/
2989put_entries c-src/etags.c /^put_entries (register node *np)$/
2990PVEC_BOOL_VECTOR c-src/emacs/src/lisp.h 787
2991PVEC_BUFFER c-src/emacs/src/lisp.h 788
2992PVEC_CHAR_TABLE c-src/emacs/src/lisp.h 796
2993PVEC_COMPILED c-src/emacs/src/lisp.h 795
2994PVEC_FONT c-src/emacs/src/lisp.h 798
2995PVEC_FRAME c-src/emacs/src/lisp.h 785
2996PVEC_FREE c-src/emacs/src/lisp.h 783
2997PVEC_HASH_TABLE c-src/emacs/src/lisp.h 789
2998PVEC_NORMAL_VECTOR c-src/emacs/src/lisp.h 782
2999PVEC_OTHER c-src/emacs/src/lisp.h 793
3000PVEC_PROCESS c-src/emacs/src/lisp.h 784
3001PVEC_SUB_CHAR_TABLE c-src/emacs/src/lisp.h 797
3002PVEC_SUBR c-src/emacs/src/lisp.h 792
3003PVEC_TERMINAL c-src/emacs/src/lisp.h 790
3004pvec_type c-src/emacs/src/lisp.h 780
3005PVEC_TYPE_MASK c-src/emacs/src/lisp.h 819
3006PVEC_WINDOW_CONFIGURATION c-src/emacs/src/lisp.h 791
3007PVEC_WINDOW c-src/emacs/src/lisp.h 786
3008p.x forth-src/test-forth.fth /^ 1 CELLS +FIELD p.x \\ A single cell filed name/
3009\pxref tex-src/texinfo.tex /^\\def\\pxref#1{see \\xrefX[#1,,,,,,,]}$/
3010p.y forth-src/test-forth.fth /^ 1 CELLS +FIELD p.y \\ A single cell field name/
3011Python_functions c-src/etags.c /^Python_functions (FILE *inf)$/
3012Python_help c-src/etags.c 660
3013Python_suffixes c-src/etags.c 658
3014PYTSRC make-src/Makefile /^PYTSRC=server.py$/
3015quantizing html-src/algrthms.html /^Quantizing the Received$/
3016questo ../c/c.web 34
3017quiettest make-src/Makefile /^quiettest:$/
3018quit_char c-src/emacs/src/keyboard.c 192
3019QUIT c-src/emacs/src/lisp.h 3101
3020QUITP c-src/emacs/src/lisp.h 3112
3021quit_throw_to_read_char c-src/emacs/src/keyboard.c /^quit_throw_to_read_char (bool from_signal)$/
3022\quotation tex-src/texinfo.tex /^\\def\\quotation{%$/
3023/quoteleft ps-src/rfc1245.ps /^\/quoteleft \/quoteright \/.notdef \/.notdef \/ydieresi/
3024qux1 ruby-src/test1.ru /^ :qux1)$/
3025qux ruby-src/test1.ru /^ alias_method :qux, :tee, attr_accessor(:bogus)/
3026qux= ruby-src/test1.ru /^ def qux=(tee)$/
3027r0 c-src/sysdep.h 54
3028r1 c-src/sysdep.h 55
3029r_alloc c-src/emacs/src/lisp.h /^extern void *r_alloc (void **, size_t) ATTRIBUTE_A/
3030Range cp-src/Range.h 35
3031Range cp-src/Range.h /^ Range (const Range& r)$/
3032Range cp-src/Range.h /^ Range (double b, double l)$/
3033Range cp-src/Range.h /^ Range (double b, double l, double i)$/
3034Range cp-src/Range.h /^ Range (void)$/
3035RANGED_INTEGERP c-src/emacs/src/lisp.h /^RANGED_INTEGERP (intmax_t lo, Lisp_Object x, intma/
3036range_exp_list y-src/parse.y 273
3037range_exp y-src/parse.y 269
3038\rawbackslashxx tex-src/texinfo.tex /^\\def\\rawbackslashxx{\\indexbackslash}%$/
3039\rawbackslashxx tex-src/texinfo.tex /^\\def\\rawbackslashxx{\\indexbackslash}% \\indexbacksl/
3040raw_keybuf_count c-src/emacs/src/keyboard.c 117
3041raw_keybuf c-src/emacs/src/keyboard.c 116
3042rbtp c.c 240
3043RCSid objc-src/PackInsp.m 30
3044read1 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/
3045read2 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/
3046readable_events c-src/emacs/src/keyboard.c /^readable_events (int flags)$/
3047READABLE_EVENTS_DO_TIMERS_NOW c-src/emacs/src/keyboard.c 346
3048READABLE_EVENTS_FILTER_EVENTS c-src/emacs/src/keyboard.c 347
3049READABLE_EVENTS_IGNORE_SQUEEZABLES c-src/emacs/src/keyboard.c 348
3050\readauxfile tex-src/texinfo.tex /^\\def\\readauxfile{%$/
3051read_char c-src/emacs/src/keyboard.c /^read_char (int commandflag, Lisp_Object map,$/
3052read_char_help_form_unwind c-src/emacs/src/keyboard.c /^read_char_help_form_unwind (void)$/
3053read_char_minibuf_menu_prompt c-src/emacs/src/keyboard.c /^read_char_minibuf_menu_prompt (int commandflag,$/
3054read_char_x_menu_prompt c-src/emacs/src/keyboard.c /^read_char_x_menu_prompt (Lisp_Object map,$/
3055read cp-src/conway.hpp /^ char read() { return alive; }$/
3056read_decoded_event_from_main_queue c-src/emacs/src/keyboard.c /^read_decoded_event_from_main_queue (struct timespe/
3057read_event_from_main_queue c-src/emacs/src/keyboard.c /^read_event_from_main_queue (struct timespec *end_t/
3058read_key_sequence_cmd c-src/emacs/src/keyboard.c 232
3059read-key-sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/
3060read_key_sequence c-src/emacs/src/keyboard.c /^read_key_sequence (Lisp_Object *keybuf, int bufsiz/
3061read_key_sequence_remapped c-src/emacs/src/keyboard.c 233
3062read-key-sequence-vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/
3063read_key_sequence_vs c-src/emacs/src/keyboard.c /^read_key_sequence_vs (Lisp_Object prompt, Lisp_Obj/
3064readline c-src/etags.c /^readline (linebuffer *lbp, FILE *stream)$/
3065readline_internal c-src/etags.c /^readline_internal (linebuffer *lbp, register FILE /
3066Read_Lock/p ada-src/2ataspri.adb /^ procedure Read_Lock (L : in out Lock; Ceiling_V/
3067Read_Lock/p ada-src/2ataspri.ads /^ procedure Read_Lock (L : in out Lock; Ceiling_V/
3068read_menu_command c-src/emacs/src/keyboard.c /^read_menu_command (void)$/
3069read php-src/lce_functions.php /^ function read()$/
3070read_toc perl-src/htlmify-cystic /^sub read_toc ()$/
3071ReadVacation cp-src/functions.cpp /^void ReadVacation ( char *filename ) {$/
3072realloc c-src/emacs/src/gmalloc.c 1716
3073realloc c-src/emacs/src/gmalloc.c 65
3074realloc c-src/emacs/src/gmalloc.c 69
3075_realloc c-src/emacs/src/gmalloc.c /^_realloc (void *ptr, size_t size)$/
3076realloc c-src/emacs/src/gmalloc.c /^realloc (void *ptr, size_t size)$/
3077reallochook c-src/emacs/src/gmalloc.c /^reallochook (void *ptr, size_t size)$/
3078_realloc_internal c-src/emacs/src/gmalloc.c /^_realloc_internal (void *ptr, size_t size)$/
3079_realloc_internal_nolock c-src/emacs/src/gmalloc.c /^_realloc_internal_nolock (void *ptr, size_t size)$/
3080RE_BACKSLASH_ESCAPE_IN_LISTS c-src/emacs/src/regex.h 47
3081RE_BK_PLUS_QM c-src/emacs/src/regex.h 52
3082RECC_ALNUM c-src/emacs/src/regex.h 610
3083RECC_ALPHA c-src/emacs/src/regex.h 610
3084RECC_ASCII c-src/emacs/src/regex.h 617
3085RECC_BLANK c-src/emacs/src/regex.h 615
3086RECC_CNTRL c-src/emacs/src/regex.h 613
3087RECC_DIGIT c-src/emacs/src/regex.h 614
3088RECC_ERROR c-src/emacs/src/regex.h 609
3089RECC_GRAPH c-src/emacs/src/regex.h 611
3090RECC_LOWER c-src/emacs/src/regex.h 612
3091RECC_MULTIBYTE c-src/emacs/src/regex.h 616
3092RECC_NONASCII c-src/emacs/src/regex.h 616
3093RECC_PRINT c-src/emacs/src/regex.h 611
3094RECC_PUNCT c-src/emacs/src/regex.h 613
3095RECC_SPACE c-src/emacs/src/regex.h 615
3096RECC_UNIBYTE c-src/emacs/src/regex.h 617
3097RECC_UPPER c-src/emacs/src/regex.h 612
3098RECC_WORD c-src/emacs/src/regex.h 610
3099RECC_XDIGIT c-src/emacs/src/regex.h 614
3100recent_keys c-src/emacs/src/keyboard.c 100
3101recent-keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, /
3102recent_keys_index c-src/emacs/src/keyboard.c 94
3103RE_CHAR_CLASSES c-src/emacs/src/regex.h 58
3104RE_CONTEXT_INDEP_ANCHORS c-src/emacs/src/regex.h 72
3105RE_CONTEXT_INDEP_OPS c-src/emacs/src/regex.h 80
3106RE_CONTEXT_INVALID_OPS c-src/emacs/src/regex.h 84
3107record_asynch_buffer_change c-src/emacs/src/keyboard.c /^record_asynch_buffer_change (void)$/
3108record_auto_save c-src/emacs/src/keyboard.c /^record_auto_save (void)$/
3109record_char c-src/emacs/src/keyboard.c /^record_char (Lisp_Object c)$/
3110record_menu_key c-src/emacs/src/keyboard.c /^record_menu_key (Lisp_Object c)$/
3111record_single_kboard_state c-src/emacs/src/keyboard.c /^record_single_kboard_state ()$/
3112record_xmalloc c-src/emacs/src/lisp.h /^extern void *record_xmalloc (size_t) ATTRIBUTE_ALL/
3113recover_top_level_message c-src/emacs/src/keyboard.c 138
3114Rectangle.getPos lua-src/test.lua /^function Rectangle.getPos ()$/
3115recursion-depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/
3116recursive_edit_1 c-src/emacs/src/keyboard.c /^recursive_edit_1 (void)$/
3117recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/
3118recursive_edit_unwind c-src/emacs/src/keyboard.c /^recursive_edit_unwind (Lisp_Object buffer)$/
3119RED cp-src/screen.hpp 16
3120RE_DEBUG c-src/emacs/src/regex.h 161
3121redirect c-src/emacs/src/lisp.h 663
3122RE_DOT_NEWLINE c-src/emacs/src/regex.h 88
3123RE_DOT_NOT_NULL c-src/emacs/src/regex.h 92
3124reduce prol-src/natded.prolog /^reduce((X^M)@N,L):- % beta reduction$/
3125reduce_subterm prol-src/natded.prolog /^reduce_subterm(M,M2):-$/
3126RE_DUP_MAX c-src/emacs/src/regex.h 253
3127RE_DUP_MAX c-src/emacs/src/regex.h 256
3128/ReEncode ps-src/rfc1245.ps /^\/ReEncode { $/
3129refreshPort pyt-src/server.py /^ def refreshPort(self):$/
3130RE_FRUGAL c-src/emacs/src/regex.h 147
3131\ref tex-src/texinfo.tex /^\\def\\ref#1{\\xrefX[#1,,,,,,,]}$/
3132\refx tex-src/texinfo.tex /^\\def\\refx#1#2{%$/
3133REG_BADBR c-src/emacs/src/regex.h 313
3134REG_BADPAT c-src/emacs/src/regex.h 305
3135REG_BADRPT c-src/emacs/src/regex.h 316
3136REG_EBRACE c-src/emacs/src/regex.h 312
3137REG_EBRACK c-src/emacs/src/regex.h 310
3138REG_ECOLLATE c-src/emacs/src/regex.h 306
3139REG_ECTYPE c-src/emacs/src/regex.h 307
3140REG_EEND c-src/emacs/src/regex.h 319
3141REG_EESCAPE c-src/emacs/src/regex.h 308
3142REG_ENOSYS c.c 279
3143REG_ENOSYS c-src/emacs/src/regex.h 297
3144REG_EPAREN c-src/emacs/src/regex.h 311
3145REG_ERANGE c-src/emacs/src/regex.h 314
3146REG_ERANGEX c-src/emacs/src/regex.h 322
3147REG_ERPAREN c-src/emacs/src/regex.h 321
3148reg_errcode_t c.c 279
3149reg_errcode_t c-src/emacs/src/regex.h 323
3150REG_ESIZE c-src/emacs/src/regex.h 320
3151REG_ESPACE c-src/emacs/src/regex.h 315
3152REG_ESUBREG c-src/emacs/src/regex.h 309
3153regex c-src/etags.c 219
3154regexfile make-src/Makefile /^regexfile: Makefile$/
3155_REGEX_H c-src/emacs/src/regex.h 21
3156REGEX make-src/Makefile /^REGEX=\/[ \\t]*DEFVAR_[A-Z_ \\t\\n(]+"\\([^"]+\\)"\/$/
3157REGEXOBJS make-src/Makefile /^REGEXOBJS=regex.o$/
3158regex.o make-src/Makefile /^regex.o: emacs\/src\/regex.c$/
3159regexp c-src/etags.c 256
3160regexp c-src/etags.c 268
3161regex_tag_multiline c-src/etags.c /^regex_tag_multiline (void)$/
3162regex_t c-src/emacs/src/regex.h 416
3163REG_EXTENDED c-src/emacs/src/regex.h 263
3164REG_ICASE c-src/emacs/src/regex.h 267
3165registerAction objcpp-src/SimpleCalc.M /^- registerAction:(SEL)action$/
3166register_heapinfo c-src/emacs/src/gmalloc.c /^register_heapinfo (void)$/
3167regmatch_t c-src/emacs/src/regex.h 451
3168REG_NEWLINE c-src/emacs/src/regex.h 272
3169REG_NOERROR c-src/emacs/src/regex.h 300
3170REG_NOMATCH c-src/emacs/src/regex.h 301
3171REG_NOSUB c-src/emacs/src/regex.h 276
3172REG_NOTBOL c-src/emacs/src/regex.h 286
3173REG_NOTEOL c-src/emacs/src/regex.h 289
3174regoff_t c-src/emacs/src/regex.h 423
3175regs_allocated c-src/emacs/src/regex.h 379
3176regs cp-src/screen.cpp 16
3177regs c-src/etags.c 263
3178regset c-src/h.h 31
3179REGS_FIXED c-src/emacs/src/regex.h 378
3180REGS_REALLOCATE c-src/emacs/src/regex.h 377
3181REGS_UNALLOCATED c-src/emacs/src/regex.h 376
3182reg_syntax_t c-src/emacs/src/regex.h 43
3183regular_top_level_message c-src/emacs/src/keyboard.c 143
3184rehash_size c-src/emacs/src/lisp.h 1835
3185rehash_threshold c-src/emacs/src/lisp.h 1839
3186RE_HAT_LISTS_NOT_NEWLINE c-src/emacs/src/regex.h 96
3187RE_INTERVALS c-src/emacs/src/regex.h 101
3188re_iswctype c-src/emacs/src/regex.h 602
3189relative_filename c-src/etags.c /^relative_filename (char *file, char *dir)$/
3190=\relax tex-src/texinfo.tex /^\\let\\appendix=\\relax$/
3191=\relax tex-src/texinfo.tex /^\\let\\chapter=\\relax$/
3192=\relax tex-src/texinfo.tex /^\\let\\section=\\relax$/
3193=\relax tex-src/texinfo.tex /^\\let\\subsection=\\relax$/
3194=\relax tex-src/texinfo.tex /^\\let\\subsubsection=\\relax$/
3195release distrib make-src/Makefile /^release distrib: web$/
3196RELEASELIST make-src/Makefile /^RELEASELIST=pot@gnu.org xemacs-review@xemacs.org j/
3197ReleaseNameString pas-src/common.pas /^procedure ReleaseNameString; (* (var NSP: NameStri/
3198RE_LIMITED_OPS c-src/emacs/src/regex.h 105
3199removeexp prol-src/natded.prolog /^removeexp(E,E,'NIL'):-!.$/
3200RemoveLayer lua-src/allegro.lua /^function RemoveLayer ()$/
3201RemoveUnderlineControl pas-src/common.pas /^function RemoveUnderlineControl; (*($/
3202RE_NEWLINE_ALT c-src/emacs/src/regex.h 109
3203RE_NO_BK_BRACES c-src/emacs/src/regex.h 114
3204RE_NO_BK_PARENS c-src/emacs/src/regex.h 118
3205RE_NO_BK_REFS c-src/emacs/src/regex.h 122
3206RE_NO_BK_VBAR c-src/emacs/src/regex.h 126
3207RE_NO_EMPTY_RANGES c-src/emacs/src/regex.h 132
3208RE_NO_GNU_OPS c-src/emacs/src/regex.h 144
3209RE_NO_NEWLINE_ANCHOR c-src/emacs/src/regex.h 153
3210RE_NO_POSIX_BACKTRACKING c-src/emacs/src/regex.h 140
3211RE_NREGS c-src/emacs/src/regex.h 440
3212re_nsub c-src/emacs/src/regex.h 364
3213reorder_modifiers c-src/emacs/src/keyboard.c /^reorder_modifiers (Lisp_Object symbol)$/
3214re_pattern_buffer c-src/emacs/src/regex.h 335
3215re_pattern_buffer c-src/h.h 119
3216ReprOfChar pas-src/common.pas /^function ReprOfChar; (*( ch : char) : NameString;*/
3217__repr__ pyt-src/server.py /^ def __repr__(self):$/
3218request c.c /^request request (a, b)$/
3219requeued_events_pending_p c-src/emacs/src/keyboard.c /^requeued_events_pending_p (void)$/
3220required_argument c-src/getopt.h 90
3221require merc-src/accumulator.m /^:- import_module require.$/
3222re_registers c-src/emacs/src/regex.h 428
3223\resetmathfonts tex-src/texinfo.tex /^\\def\\resetmathfonts{%$/
3224reset-this-command-lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/
3225RE_SHY_GROUPS c-src/emacs/src/regex.h 150
3226restore_getcjmp c-src/emacs/src/keyboard.c /^restore_getcjmp (sys_jmp_buf temp)$/
3227restore_kboard_configuration c-src/emacs/src/keyboard.c /^restore_kboard_configuration (int was_locked)$/
3228/restorematrix ps-src/rfc1245.ps /^\/restorematrix {$/
3229_Restrict_arr_ c-src/emacs/src/regex.h 555
3230_Restrict_arr_ c-src/emacs/src/regex.h 557
3231_Restrict_ c-src/emacs/src/regex.h 540
3232_Restrict_ c-src/emacs/src/regex.h 542
3233_Restrict_ c-src/emacs/src/regex.h 544
3234\result tex-src/texinfo.tex /^\\def\\result{\\leavevmode\\raise.15ex\\hbox to 1em{\\hf/
3235\result tex-src/texinfo.tex /^\\def\\result{\\realbackslash result}$/
3236RESUME_POLLING c-src/emacs/src/keyboard.c 2170
3237RE_SYNTAX_AWK c-src/emacs/src/regex.h 186
3238RE_SYNTAX_ED c-src/emacs/src/regex.h 216
3239RE_SYNTAX_EGREP c-src/emacs/src/regex.h 206
3240RE_SYNTAX_EMACS c-src/emacs/src/regex.h 183
3241RE_SYNTAX_GNU_AWK c-src/emacs/src/regex.h 193
3242RE_SYNTAX_GREP c-src/emacs/src/regex.h 201
3243RE_SYNTAX_POSIX_AWK c-src/emacs/src/regex.h 197
3244RE_SYNTAX_POSIX_BASIC c-src/emacs/src/regex.h 225
3245_RE_SYNTAX_POSIX_COMMON c-src/emacs/src/regex.h 221
3246RE_SYNTAX_POSIX_EGREP c-src/emacs/src/regex.h 212
3247RE_SYNTAX_POSIX_EXTENDED c-src/emacs/src/regex.h 234
3248RE_SYNTAX_POSIX_MINIMAL_BASIC c-src/emacs/src/regex.h 231
3249RE_SYNTAX_POSIX_MINIMAL_EXTENDED c-src/emacs/src/regex.h 242
3250RE_SYNTAX_SED c-src/emacs/src/regex.h 218
3251RE_TRANSLATE_TYPE c-src/emacs/src/regex.h 332
3252return_to_command_loop c-src/emacs/src/keyboard.c 135
3253RETURN_UNGCPRO c-src/emacs/src/lisp.h /^#define RETURN_UNGCPRO(expr) \\$/
3254RE_UNMATCHED_RIGHT_PAREN_ORD c-src/emacs/src/regex.h 136
3255reverse prol-src/natded.prolog /^reverse([],Ws,Ws).$/
3256revert objc-src/PackInsp.m /^-revert:sender$/
3257re_wchar_t c-src/emacs/src/regex.h 600
3258re_wchar_t c-src/emacs/src/regex.h 623
3259re_wctype c-src/emacs/src/regex.h 601
3260re_wctype_t c-src/emacs/src/regex.h 599
3261re_wctype_t c-src/emacs/src/regex.h 618
3262re_wctype_to_bit c-src/emacs/src/regex.h /^# define re_wctype_to_bit(cc) 0$/
3263/RF ps-src/rfc1245.ps /^\/RF { $/
3264right c-src/etags.c 216
3265right_shift y-src/cccp.y /^right_shift (a, b)$/
3266ring1 c.c 241
3267ring2 c.c 242
3268rm_eo c-src/emacs/src/regex.h 450
3269rm_so c-src/emacs/src/regex.h 449
3270\rm tex-src/texinfo.tex /^\\def\\rm{\\realbackslash rm }%$/
3271rng_base cp-src/Range.h 79
3272rng_inc cp-src/Range.h 81
3273rng_limit cp-src/Range.h 80
3274rng_nelem cp-src/Range.h 83
3275rosso cp-src/c.C 40
3276/R ps-src/rfc1245.ps /^\/R { $/
3277/RR ps-src/rfc1245.ps /^\/RR { $/
3278RSH y-src/cccp.c 17
3279rsyncfromfly make-src/Makefile /^rsyncfromfly:$/
3280rsynctofly make-src/Makefile /^rsynctofly:$/
3281RTE/s ada-src/2ataspri.adb /^ package RTE renames Interfaces.C.POSIX_RTE;$/
3282\r tex-src/texinfo.tex /^\\def\\r##1{\\realbackslash r {##1}}%$/
3283\r tex-src/texinfo.tex /^\\def\\r##1{\\realbackslash r {##1}}$/
3284\r tex-src/texinfo.tex /^\\def\\r#1{{\\rm #1}} % roman font$/
3285rtint c-src/h.h 60
3286rtint c-src/h.h 68
3287rtstr c-src/h.h 61
3288rtstr c-src/h.h 69
3289rtunion_def c-src/h.h 58
3290rtunion_def c-src/h.h 64
3291rtx c-src/h.h 62
3292rtxnp c-src/h.h 71
3293rtxp c-src/h.h 70
3294` ruby-src/test.rb /^ def `(command)$/
3295+ ruby-src/test.rb /^ def +(y)$/
3296<< ruby-src/test.rb /^ def <<(y)$/
3297<= ruby-src/test.rb /^ def <=(y)$/
3298<=> ruby-src/test.rb /^ def <=>(y)$/
3299== ruby-src/test.rb /^ def ==(y)$/
3300=== ruby-src/test.rb /^ def ===(y)$/
3301[] ruby-src/test.rb /^ def [](y)$/
3302[]= ruby-src/test.rb /^ def []=(y, val)$/
3303RUN make-src/Makefile /^RUN=$/
3304RUN make-src/Makefile /^RUN=time --quiet --format '%U + %S: %E'$/
3305RXINCLUDE make-src/Makefile /^RXINCLUDE=-Iemacs\/src$/
3306s1 cp-src/c.C 32
3307/s1 ps-src/rfc1245.ps /^\/s1 1 string def$/
3308s2 cp-src/c.C 35
3309SAFE_ALLOCA c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA(size) ((size) <= sa_avail \\/
3310SAFE_ALLOCA_LISP c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA_LISP(buf, nelt) \\$/
3311SAFE_ALLOCA_STRING c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA_STRING(ptr, string) \\$/
3312SAFE_FREE c-src/emacs/src/lisp.h /^#define SAFE_FREE() \\$/
3313SAFE_NALLOCA c-src/emacs/src/lisp.h /^#define SAFE_NALLOCA(buf, multiplier, nitems) \\/
3314safe_run_hook_funcall c-src/emacs/src/keyboard.c /^safe_run_hook_funcall (ptrdiff_t nargs, Lisp_Objec/
3315safe_run_hooks_1 c-src/emacs/src/keyboard.c /^safe_run_hooks_1 (ptrdiff_t nargs, Lisp_Object *ar/
3316safe_run_hooks c-src/emacs/src/keyboard.c /^safe_run_hooks (Lisp_Object hook)$/
3317safe_run_hooks_error c-src/emacs/src/keyboard.c /^safe_run_hooks_error (Lisp_Object error, ptrdiff_t/
3318Sample tex-src/gzip.texi /^@node Sample, Invoking gzip, Overview, Top$/
3319\samp tex-src/texinfo.tex /^\\def\\samp##1{\\realbackslash samp {##1}}%$/
3320\samp tex-src/texinfo.tex /^\\def\\samp##1{\\realbackslash samp {##1}}$/
3321\samp tex-src/texinfo.tex /^\\def\\samp #1{`\\tclose{#1}'\\null}$/
3322/sangle ps-src/rfc1245.ps /^\/sangle 1 0 dmatrix defaultmatrix dtransform exch /
3323SAVE_FUNCPOINTER c-src/emacs/src/lisp.h 2049
3324save_getcjmp c-src/emacs/src/keyboard.c /^save_getcjmp (sys_jmp_buf temp)$/
3325SAVE_INTEGER c-src/emacs/src/lisp.h 2048
3326/savematrix ps-src/rfc1245.ps /^\/savematrix {$/
3327savenstr c-src/etags.c /^savenstr (const char *cp, int len)$/
3328SAVE_OBJECT c-src/emacs/src/lisp.h 2051
3329SAVE_POINTER c-src/emacs/src/lisp.h 2050
3330save pyt-src/server.py /^ def save(self):$/
3331SAVE_SLOT_BITS c-src/emacs/src/lisp.h 2055
3332savestr c-src/etags.c /^savestr (const char *cp)$/
3333SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2062
3334SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2114
3335SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2123
3336save_type c-src/emacs/src/lisp.h /^save_type (struct Lisp_Save_Value *v, int n)$/
3337SAVE_TYPE_FUNCPTR_PTR_OBJ c-src/emacs/src/lisp.h 2076
3338SAVE_TYPE_INT_INT c-src/emacs/src/lisp.h 2066
3339SAVE_TYPE_INT_INT_INT c-src/emacs/src/lisp.h 2067
3340SAVE_TYPE_MEMORY c-src/emacs/src/lisp.h 2080
3341SAVE_TYPE_OBJ_OBJ c-src/emacs/src/lisp.h 2069
3342SAVE_TYPE_OBJ_OBJ_OBJ c-src/emacs/src/lisp.h 2070
3343SAVE_TYPE_OBJ_OBJ_OBJ_OBJ c-src/emacs/src/lisp.h 2071
3344SAVE_TYPE_PTR_INT c-src/emacs/src/lisp.h 2073
3345SAVE_TYPE_PTR_OBJ c-src/emacs/src/lisp.h 2074
3346SAVE_TYPE_PTR_PTR c-src/emacs/src/lisp.h 2075
3347SAVE_UNUSED c-src/emacs/src/lisp.h 2047
3348SAVE_VALUEP c-src/emacs/src/lisp.h /^SAVE_VALUEP (Lisp_Object x)$/
3349SAVE_VALUE_SLOTS c-src/emacs/src/lisp.h 2058
3350say go-src/test.go /^func say(msg string) {$/
3351__sbrk c-src/emacs/src/gmalloc.c 1513
3352SBYTES c-src/emacs/src/lisp.h /^SBYTES (Lisp_Object string)$/
3353scan_separators c-src/etags.c /^scan_separators (char *name)$/
3354S c.c 156
3355SCHARS c-src/emacs/src/lisp.h /^SCHARS (Lisp_Object string)$/
3356Scheme_functions c-src/etags.c /^Scheme_functions (FILE *inf)$/
3357Scheme_help c-src/etags.c 667
3358Scheme_suffixes c-src/etags.c 665
3359scolonseen c-src/etags.c 2447
3360scratch c-src/sysdep.h 56
3361SCREEN_FP cp-src/screen.hpp /^#define SCREEN_FP(x,y) \\$/
3362SCREEN_START cp-src/screen.hpp 33
3363scroll_bar_parts c-src/emacs/src/keyboard.c 5189
3364s c-src/emacs/src/lisp.h 4672
3365s c-src/emacs/src/lisp.h 4678
3366\sc tex-src/texinfo.tex /^\\def\\sc#1{{\\smallcaps#1}} % smallcaps font$/
3367SDATA c-src/emacs/src/lisp.h /^SDATA (Lisp_Object string)$/
3368SDTrefGetInteger pas-src/common.pas /^function SDTrefGetInteger : integer;$/
3369SDTrefIsEnd pas-src/common.pas /^function SDTrefIsEnd : Boolean;$/
3370SDTrefRecToString pas-src/common.pas /^procedure SDTrefRecToString (* ($/
3371SDTrefSkipSpaces pas-src/common.pas /^procedure SDTrefSkipSpaces;$/
3372SDTrefStringToRec pas-src/common.pas /^procedure SDTrefStringToRec (* ($/
3373\seccheck tex-src/texinfo.tex /^\\def\\seccheck#1{\\if \\pageno<0 %$/
3374\secentryfonts tex-src/texinfo.tex /^\\def\\secentryfonts{\\textfonts}$/
3375\secentry tex-src/texinfo.tex /^ \\def\\secentry ##1##2##3##4{}$/
3376\secentry tex-src/texinfo.tex /^\\def\\secentry#1#2#3#4{\\dosecentry{#2.#3\\labelspace/
3377\secfonts tex-src/texinfo.tex /^\\def\\secfonts{%$/
3378\secheadingbreak tex-src/texinfo.tex /^\\def\\secheadingbreak{\\dobreak \\secheadingskip {-10/
3379\secheadingi tex-src/texinfo.tex /^\\def\\secheadingi #1{{\\advance \\secheadingskip by \\/
3380\secheading tex-src/texinfo.tex /^\\def\\secheading #1#2#3{\\secheadingi {#2.#3\\enspace/
3381\secondary tex-src/texinfo.tex /^\\def\\secondary #1#2{$/
3382sec=\relax tex-src/texinfo.tex /^\\let\\appendixsec=\\relax$/
3383section_href perl-src/htlmify-cystic /^sub section_href ($)$/
3384section_name perl-src/htlmify-cystic 12
3385section_name perl-src/htlmify-cystic /^sub section_name ($)$/
3386section perl-src/htlmify-cystic 25
3387section=\relax tex-src/texinfo.tex /^\\let\\appendixsection=\\relax$/
3388section_toc perl-src/htlmify-cystic 15
3389section_url_base perl-src/htlmify-cystic /^sub section_url_base ()$/
3390section_url_name perl-src/htlmify-cystic /^sub section_url_name ()$/
3391section_url perl-src/htlmify-cystic /^sub section_url ()$/
3392\seczzz tex-src/texinfo.tex /^\\def\\seczzz #1{\\seccheck{section}%$/
3393select_last prol-src/natded.prolog /^select_last([X],X,[]).$/
3394SelectLayer lua-src/allegro.lua /^function SelectLayer (layer)$/
3395select prol-src/natded.prolog /^select(X,[X|Xs],Xs).$/
3396select-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table ()$/
3397select-tags-table-mode el-src/emacs/lisp/progmodes/etags.el /^(define-derived-mode select-tags-table-mode specia/
3398select-tags-table-mode-map el-src/emacs/lisp/progmodes/etags.el /^(defvar select-tags-table-mode-map ; Doc string?$/
3399select-tags-table-quit el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table-quit ()$/
3400select-tags-table-select el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table-select (button)$/
3401Self/f ada-src/2ataspri.adb /^ function Self return TCB_Ptr is$/
3402Self/f ada-src/2ataspri.ads /^ function Self return TCB_Ptr;$/
3403send objc-src/Subprocess.m /^- send:(const char *)string$/
3404send objc-src/Subprocess.m /^- send:(const char *)string withNewline:(BOOL)want/
3405separator_names c-src/emacs/src/keyboard.c 7372
3406serializeToVars php-src/lce_functions.php /^ function serializeToVars($prefix)$/
3407ServerEdit pyt-src/server.py /^class ServerEdit(Frame):$/
3408Server pyt-src/server.py /^class Server:$/
3409set_base cp-src/Range.h /^ void set_base (double b) { rng_base = b; }$/
3410\setchapternewpage tex-src/texinfo.tex /^\\def\\setchapternewpage #1 {\\csname CHAPPAG#1\\endcs/
3411\setchapterstyle tex-src/texinfo.tex /^\\def\\setchapterstyle #1 {\\csname CHAPF#1\\endcsname/
3412set_char_table_contents c-src/emacs/src/lisp.h /^set_char_table_contents (Lisp_Object table, ptrdif/
3413set_char_table_defalt c-src/emacs/src/lisp.h /^set_char_table_defalt (Lisp_Object table, Lisp_Obj/
3414set_char_table_extras c-src/emacs/src/lisp.h /^set_char_table_extras (Lisp_Object table, ptrdiff_/
3415set_char_table_purpose c-src/emacs/src/lisp.h /^set_char_table_purpose (Lisp_Object table, Lisp_Ob/
3416set cp-src/conway.hpp /^ void set(void) { alive = 1; }$/
3417setDate cp-src/functions.cpp /^void Date::setDate ( int d , int m , int y ){$/
3418\setdeffont tex-src/texinfo.tex /^\\def\\setdeffont #1 {\\csname DEF#1\\endcsname}$/
3419setDelegate objc-src/Subprocess.m /^- setDelegate:anObject$/
3420\setfilename tex-src/texinfo.tex /^\\def\\setfilename{%$/
3421set_hash_key_slot c-src/emacs/src/lisp.h /^set_hash_key_slot (struct Lisp_Hash_Table *h, ptrd/
3422set_hash_value_slot c-src/emacs/src/lisp.h /^set_hash_value_slot (struct Lisp_Hash_Table *h, pt/
3423set_inc cp-src/Range.h /^ void set_inc (double i) { rng_inc = i; }$/
3424set-input-interrupt-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/
3425set-input-meta-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/
3426set-input-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/
3427set_limit cp-src/Range.h /^ void set_limit (double l) { rng_limit = l; }$/
3428/setmanualfeed ps-src/rfc1245.ps /^\/setmanualfeed {$/
3429set merc-src/accumulator.m /^:- import_module set.$/
3430set-output-flow-control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/
3431set_overlay_plist c-src/emacs/src/lisp.h /^set_overlay_plist (Lisp_Object overlay, Lisp_Objec/
3432Set_Own_Priority/p ada-src/2ataspri.adb /^ procedure Set_Own_Priority (Prio : System.Any_P/
3433Set_Own_Priority/p ada-src/2ataspri.ads /^ procedure Set_Own_Priority (Prio : System.Any_P/
3434/setpapername ps-src/rfc1245.ps /^\/setpapername { $/
3435/setpattern ps-src/rfc1245.ps /^\/setpattern {$/
3436set_poll_suppress_count c-src/emacs/src/keyboard.c /^set_poll_suppress_count (int count)$/
3437Set_Priority/p ada-src/2ataspri.adb /^ procedure Set_Priority$/
3438Set_Priority/p ada-src/2ataspri.ads /^ procedure Set_Priority (T : TCB_Ptr; Prio : Sys/
3439set_prop c-src/emacs/src/keyboard.c /^set_prop (ptrdiff_t idx, Lisp_Object val)$/
3440SETPRT f-src/entry.for /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/
3441SETPRT f-src/entry.strange /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/
3442SETPRT f-src/entry.strange_suffix /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/
3443set-quit-char c-src/emacs/src/keyboard.c /^DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_/
3444\setref tex-src/texinfo.tex /^\\def\\setref#1{%$/
3445setref tex-src/texinfo.tex /^\\expandafter\\expandafter\\expandafter\\appendixsetre/
3446setRevertButtonTitle objc-src/PackInsp.m /^-setRevertButtonTitle$/
3447set_save_integer c-src/emacs/src/lisp.h /^set_save_integer (Lisp_Object obj, int n, ptrdiff_/
3448set_save_pointer c-src/emacs/src/lisp.h /^set_save_pointer (Lisp_Object obj, int n, void *va/
3449set_string_intervals c-src/emacs/src/lisp.h /^set_string_intervals (Lisp_Object s, INTERVAL i)$/
3450set_sub_char_table_contents c-src/emacs/src/lisp.h /^set_sub_char_table_contents (Lisp_Object table, pt/
3451SET_SYMBOL_BLV c-src/emacs/src/lisp.h /^SET_SYMBOL_BLV (struct Lisp_Symbol *sym, struct Li/
3452set_symbol_function c-src/emacs/src/lisp.h /^set_symbol_function (Lisp_Object sym, Lisp_Object /
3453SET_SYMBOL_FWD c-src/emacs/src/lisp.h /^SET_SYMBOL_FWD (struct Lisp_Symbol *sym, union Lis/
3454set_symbol_next c-src/emacs/src/lisp.h /^set_symbol_next (Lisp_Object sym, struct Lisp_Symb/
3455set_symbol_plist c-src/emacs/src/lisp.h /^set_symbol_plist (Lisp_Object sym, Lisp_Object pli/
3456SET_SYMBOL_VAL c-src/emacs/src/lisp.h /^# define SET_SYMBOL_VAL(sym, v) lisp_h_SET_SYMBOL_/
3457\set tex-src/texinfo.tex /^\\def\\set{\\parsearg\\setxxx}$/
3458\settitle tex-src/texinfo.tex /^\\def\\settitle{\\parsearg\\settitlezzz}$/
3459\settitlezzz tex-src/texinfo.tex /^\\def\\settitlezzz #1{\\gdef\\thistitle{#1}}$/
3460setup cp-src/c.C 5
3461set_upto merc-src/accumulator.m /^:- func set_upto(accu_case, int) = set(accu_goal_i/
3462set_waiting_for_input c-src/emacs/src/keyboard.c /^set_waiting_for_input (struct timespec *time_to_cl/
3463\setxxx tex-src/texinfo.tex /^\\def\\setxxx #1{$/
3464/SF ps-src/rfc1245.ps /^\/SF { $/
3465\sf tex-src/texinfo.tex /^\\def\\sf{\\fam=\\sffam \\tensf}$/
3466\sf tex-src/texinfo.tex /^\\def\\sf{\\realbackslash sf}%$/
3467shift cp-src/functions.cpp /^void Date::shift ( void ){\/\/Shift this date to pre/
3468\shortchapentry tex-src/texinfo.tex /^\\def\\shortchapentry#1#2#3{%$/
3469\shortunnumberedentry tex-src/texinfo.tex /^\\def\\shortunnumberedentry#1#2{%$/
3470should_attempt_accu_transform_2 merc-src/accumulator.m /^:- pred should_attempt_accu_transform_2(module_inf/
3471should_attempt_accu_transform merc-src/accumulator.m /^:- pred should_attempt_accu_transform(module_info:/
3472shouldLoad objc-src/PackInsp.m /^-(BOOL)shouldLoad$/
3473should_see_this_array_type cp-src/c.C 156
3474should_see_this_function_pointer cp-src/c.C 153
3475should_see_this_one_enclosed_in_extern_C cp-src/c.C 149
3476show erl-src/gs_dialog.erl /^show(Module, Title, Message, Args) ->$/
3477showError objc-src/Subprocess.m /^showError (const char *errorString, id theDelegate/
3478show_help_echo c-src/emacs/src/keyboard.c /^show_help_echo (Lisp_Object help, Lisp_Object wind/
3479showInfo objc-src/PackInsp.m /^-showInfo:sender$/
3480sig c-src/emacs/src/keyboard.c 7238
3481signal_handler1 c-src/h.h 83
3482signal_handler c-src/h.h 82
3483signal_handler_t c-src/h.h 94
3484SimpleCalc objcpp-src/SimpleCalc.H /^@interface SimpleCalc:Object$/
3485simulation html-src/software.html /^Software that I wrote for supporting my research a/
3486\singlecodeindexer tex-src/texinfo.tex /^\\def\\singlecodeindexer #1{\\doind{\\indexname}{\\code/
3487\singleindexer tex-src/texinfo.tex /^\\def\\singleindexer #1{\\doind{\\indexname}{#1}}$/
3488single_kboard c-src/emacs/src/keyboard.c 89
3489single_kboard_state c-src/emacs/src/keyboard.c /^single_kboard_state ()$/
3490SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c 6212
3491SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c 6763
3492SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c /^#define SINGLE_LETTER_MOD(BIT) \\$/
3493\singlespace tex-src/texinfo.tex /^\\def\\singlespace{%$/
3494site cp-src/conway.hpp 5
3495site cp-src/conway.hpp /^ site(int xi, int yi): x(xi), y(yi), alive(0) {/
3496size c-src/emacs/src/gmalloc.c 156
3497size c-src/emacs/src/gmalloc.c 163
3498size c-src/emacs/src/gmalloc.c 1862
3499size c-src/emacs/src/lisp.h 1364
3500size c-src/emacs/src/lisp.h 1390
3501size c-src/etags.c 236
3502size c-src/etags.c 2522
3503SIZEFORMAT objc-src/PackInsp.m 57
3504skeyseen c-src/etags.c 2445
3505SkipBlanks pas-src/common.pas /^function SkipBlanks; (*($/
3506SkipChars pas-src/common.pas /^function SkipChars; (*($/
3507skip_name c-src/etags.c /^skip_name (char *cp)$/
3508skip_non_spaces c-src/etags.c /^skip_non_spaces (char *cp)$/
3509skip_spaces c-src/etags.c /^skip_spaces (char *cp)$/
3510SkipSpaces pas-src/common.pas /^procedure SkipSpaces; (* (Str : NameString; var I /
3511\sl tex-src/texinfo.tex /^\\def\\sl{\\realbackslash sl }%$/
3512\smallbook tex-src/texinfo.tex /^\\def\\smallbook{$/
3513\smalllispx tex-src/texinfo.tex /^\\def\\smalllispx{\\aboveenvbreak\\begingroup\\inENV$/
3514\smartitalic tex-src/texinfo.tex /^\\def\\smartitalic#1{{\\sl #1}\\futurelet\\next\\smartit/
3515=\smartitalic tex-src/texinfo.tex /^\\let\\cite=\\smartitalic$/
3516\smartitalicx tex-src/texinfo.tex /^\\def\\smartitalicx{\\ifx\\next,\\else\\ifx\\next-\\else\\i/
3517snarf-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar snarf-tag-function nil$/
3518snone c-src/etags.c 2443
3519solutions merc-src/accumulator.m /^:- import_module solutions.$/
3520some_mouse_moved c-src/emacs/src/keyboard.c /^some_mouse_moved (void)$/
3521#some-storage forth-src/test-forth.fth /^2000 buffer: #some-storage$/
3522spacer c-src/emacs/src/lisp.h 1975
3523spacer c-src/emacs/src/lisp.h 1982
3524spacer c-src/emacs/src/lisp.h 2036
3525spacer c-src/emacs/src/lisp.h 2205
3526space tex-src/texinfo.tex /^ {#2\\labelspace #1}\\dotfill\\doshortpageno{#3}}%/
3527space tex-src/texinfo.tex /^ \\dosubsubsecentry{#2.#3.#4.#5\\labelspace#1}{#6}}/
3528specbinding c-src/emacs/src/lisp.h 2955
3529specbind_tag c-src/emacs/src/lisp.h 2943
3530specialsymbol prol-src/natded.prolog /^specialsymbol(C1,C2,S):-$/
3531SPECPDL_BACKTRACE c-src/emacs/src/lisp.h 2948
3532SPECPDL_INDEX c-src/emacs/src/lisp.h /^SPECPDL_INDEX (void)$/
3533SPECPDL_LET c-src/emacs/src/lisp.h 2949
3534SPECPDL_LET_DEFAULT c-src/emacs/src/lisp.h 2952
3535SPECPDL_LET_LOCAL c-src/emacs/src/lisp.h 2951
3536SPECPDL_UNWIND c-src/emacs/src/lisp.h 2944
3537SPECPDL_UNWIND_INT c-src/emacs/src/lisp.h 2946
3538SPECPDL_UNWIND_PTR c-src/emacs/src/lisp.h 2945
3539SPECPDL_UNWIND_VOID c-src/emacs/src/lisp.h 2947
3540splitexp prol-src/natded.prolog /^splitexp(E,E,('NIL','NIL')):-!.$/
3541\splitoff tex-src/texinfo.tex /^\\def\\splitoff#1#2\\endmark{\\def\\first{#1}\\def\\rest{/
3542/S ps-src/rfc1245.ps /^\/S { $/
3543\sp tex-src/texinfo.tex /^\\def\\sp{\\parsearg\\spxxx}$/
3544\spxxx tex-src/texinfo.tex /^\\def\\spxxx #1{\\par \\vskip #1\\baselineskip}$/
3545Square.something:Bar lua-src/test.lua /^function Square.something:Bar ()$/
3546srclist make-src/Makefile /^srclist: Makefile$/
3547SRCS make-src/Makefile /^SRCS=Makefile ${ADASRC} ${ASRC} ${CSRC} ${CPSRC} $/
3548SREF c-src/emacs/src/lisp.h /^SREF (Lisp_Object string, ptrdiff_t index)$/
3549ss3 c.c 255
3550SSDATA c-src/emacs/src/lisp.h /^SSDATA (Lisp_Object string)$/
3551SSET c-src/emacs/src/lisp.h /^SSET (Lisp_Object string, ptrdiff_t index, unsigne/
3552sss1 c.c 252
3553sss2 c.c 253
3554sstab prol-src/natded.prolog /^sstab(2,'C',',').$/
3555stack c.c 155
3556STACK_CONS c-src/emacs/src/lisp.h /^#define STACK_CONS(a, b) \\$/
3557stagseen c-src/etags.c 2446
3558standalone make-src/Makefile /^standalone:$/
3559\startcontents tex-src/texinfo.tex /^\\def\\startcontents#1{%$/
3560start c-src/emacs/src/keyboard.c 8753
3561start c-src/emacs/src/lisp.h 2038
3562start c-src/emacs/src/regex.h 431
3563StartDay cp-src/functions.cpp /^Date StartDay(Date a,int days){\/\/Function to calcu/
3564\startenumeration tex-src/texinfo.tex /^\\def\\startenumeration#1{%$/
3565start php-src/lce_functions.php /^ function start($line, $class)$/
3566start_polling c-src/emacs/src/keyboard.c /^start_polling (void)$/
3567=starts-with-equals! scm-src/test.scm /^(define =starts-with-equals! #t)$/
3568start_up prol-src/natded.prolog /^start_up:-$/
3569start y-src/cccp.y 143
3570STATE_ABORT php-src/lce_functions.php 25
3571STATE_COMPRESSD objc-src/PackInsp.m 54
3572STATE_INSTALLED objc-src/PackInsp.m 53
3573STATE_LOOP php-src/lce_functions.php 27
3574STATE_OK php-src/lce_functions.php 26
3575state_protected_p c-src/emacs/src/gmalloc.c 400
3576STAT_EQ objc-src/PackInsp.m /^#define STAT_EQ(s1, s2) ((s1)->st_ino == (s2)->st_/
3577statetable html-src/algrthms.html /^Next$/
3578STATE_UNINSTALLED objc-src/PackInsp.m 52
3579staticetags make-src/Makefile /^staticetags:$/
3580st_C_attribute c-src/etags.c 2209
3581st_C_class c-src/etags.c 2212
3582st_C_define c-src/etags.c 2213
3583st_C_enum c-src/etags.c 2213
3584st_C_extern c-src/etags.c 2213
3585st_C_gnumacro c-src/etags.c 2208
3586st_C_ignore c-src/etags.c 2209
3587st_C_javastruct c-src/etags.c 2210
3588st_C_objend c-src/etags.c 2207
3589st_C_objimpl c-src/etags.c 2207
3590st_C_objprot c-src/etags.c 2207
3591st_C_operator c-src/etags.c 2211
3592st_C_struct c-src/etags.c 2213
3593st_C_template c-src/etags.c 2212
3594st_C_typedef c-src/etags.c 2213
3595STDIN c-src/etags.c 408
3596STDIN c-src/etags.c 411
3597step cp-src/clheir.hpp /^ virtual void step(void) { }$/
3598step cp-src/conway.hpp /^ void step(void) { alive = next_alive; }$/
3599step_everybody cp-src/clheir.cpp /^void step_everybody(void)$/
3600st_none c-src/etags.c 2206
3601STOP_POLLING c-src/emacs/src/keyboard.c 2166
3602stop_polling c-src/emacs/src/keyboard.c /^stop_polling (void)$/
3603stored_goal_plain_call merc-src/accumulator.m /^:- inst stored_goal_plain_call for goal_store.stor/
3604store_info merc-src/accumulator.m /^:- type store_info$/
3605store_user_signal_events c-src/emacs/src/keyboard.c /^store_user_signal_events (void)$/
3606strcaseeq c-src/etags.c /^#define strcaseeq(s,t) (assert ((s)!=NULL && (t)!=/
3607streq c-src/etags.c /^#define streq(s,t) (assert ((s)!=NULL || (t)!=NULL/
3608str go-src/test1.go 9
3609STRING_BYTES_BOUND c-src/emacs/src/lisp.h 1261
3610STRING_BYTES c-src/emacs/src/lisp.h /^STRING_BYTES (struct Lisp_String *s)$/
3611string_intervals c-src/emacs/src/lisp.h /^string_intervals (Lisp_Object s)$/
3612string merc-src/accumulator.m /^:- import_module string.$/
3613STRING_MULTIBYTE c-src/emacs/src/lisp.h /^STRING_MULTIBYTE (Lisp_Object str)$/
3614STRING_SET_CHARS c-src/emacs/src/lisp.h /^STRING_SET_CHARS (Lisp_Object string, ptrdiff_t ne/
3615STRING_SET_MULTIBYTE c-src/emacs/src/lisp.h /^#define STRING_SET_MULTIBYTE(STR) \\$/
3616STRING_SET_UNIBYTE c-src/emacs/src/lisp.h /^#define STRING_SET_UNIBYTE(STR) \\$/
3617stripLine php-src/lce_functions.php /^ function stripLine($line, $class)$/
3618stripname pas-src/common.pas /^function stripname; (* ($/
3619StripPath pas-src/common.pas /^function StripPath; (*($/
3620strncaseeq c-src/etags.c /^#define strncaseeq(s,t,n) (assert ((s)!=NULL && (t/
3621strneq c-src/etags.c /^#define strneq(s,t,n) (assert ((s)!=NULL || (t)!=N/
3622__str__ pyt-src/server.py /^ def __str__(self):$/
3623structdef c-src/etags.c 2448
3624stuff_buffered_input c-src/emacs/src/keyboard.c /^stuff_buffered_input (Lisp_Object stuffstring)$/
3625SUB_CHAR_TABLE_OFFSET c-src/emacs/src/lisp.h 1701
3626SUB_CHAR_TABLE_P c-src/emacs/src/lisp.h /^SUB_CHAR_TABLE_P (Lisp_Object a)$/
3627\subheading tex-src/texinfo.tex /^\\def\\subheading{\\parsearg\\subsecheadingi}$/
3628subprocessDone objc-src/PackInsp.m /^-subprocessDone:(Subprocess *)sender$/
3629subprocess objc-src/PackInsp.m /^-subprocess:(Subprocess *)sender output:(char *)bu/
3630Subprocess objc-src/Subprocess.h 41
3631Subprocess objc-src/Subprocess.h /^@interface Subprocess:Object$/
3632SUBRP c-src/emacs/src/lisp.h /^SUBRP (Lisp_Object a)$/
3633\subsecentry tex-src/texinfo.tex /^ \\def\\subsecentry ##1##2##3##4##5{}$/
3634\subsecentry tex-src/texinfo.tex /^\\def\\subsecentry#1#2#3#4#5{\\dosubsecentry{#2.#3.#4/
3635\subsecfonts tex-src/texinfo.tex /^\\def\\subsecfonts{%$/
3636\subsecheadingbreak tex-src/texinfo.tex /^\\def\\subsecheadingbreak{\\dobreak \\subsecheadingski/
3637\subsecheadingi tex-src/texinfo.tex /^\\def\\subsecheadingi #1{{\\advance \\subsecheadingski/
3638\subsecheading tex-src/texinfo.tex /^\\def\\subsecheading #1#2#3#4{\\subsecheadingi {#2.#3/
3639subsec=\relax tex-src/texinfo.tex /^\\let\\appendixsubsec=\\relax$/
3640subsection_marker perl-src/htlmify-cystic 161
3641subsection perl-src/htlmify-cystic 26
3642subsection=\relax tex-src/texinfo.tex /^\\let\\appendixsubsection=\\relax$/
3643substitute c-src/etags.c /^substitute (char *in, char *out, struct re_registe/
3644subst prol-src/natded.prolog /^subst(var(Y),var(X),M,N):-$/
3645SubString pas-src/common.pas /^function SubString; (*($/
3646\subsubheading tex-src/texinfo.tex /^\\def\\subsubheading{\\parsearg\\subsubsecheadingi}$/
3647\subsubsecentry tex-src/texinfo.tex /^ \\def\\subsubsecentry ##1##2##3##4##5##6{}$/
3648\subsubsecentry tex-src/texinfo.tex /^\\def\\subsubsecentry#1#2#3#4#5#6{%$/
3649\subsubsecfonts tex-src/texinfo.tex /^\\def\\subsubsecfonts{\\subsecfonts} % Maybe this sho/
3650\subsubsecheadingi tex-src/texinfo.tex /^\\def\\subsubsecheadingi #1{{\\advance \\subsecheading/
3651\subsubsecheading tex-src/texinfo.tex /^\\def\\subsubsecheading #1#2#3#4#5{\\subsubsecheading/
3652subsubsec=\relax tex-src/texinfo.tex /^\\let\\appendixsubsubsec=\\relax$/
3653subsubsection perl-src/htlmify-cystic 27
3654subsubsection=\relax tex-src/texinfo.tex /^\\let\\appendixsubsubsection=\\relax$/
3655\subtitlefont tex-src/texinfo.tex /^ \\def\\subtitlefont{\\subtitlerm \\normalbaselinesk/
3656\subtitle tex-src/texinfo.tex /^ \\def\\subtitle{\\parsearg\\subtitlezzz}%$/
3657\subtitlezzz tex-src/texinfo.tex /^ \\def\\subtitlezzz##1{{\\subtitlefont \\rightline{#/
3658subtle ruby-src/test1.ru /^ :tee ; attr_reader :subtle$/
3659subtree prol-src/natded.prolog /^subtree(T,T).$/
3660suffix c-src/etags.c 186
3661suffixes c-src/etags.c 195
3662suggest_asking_for_help c-src/etags.c /^suggest_asking_for_help (void)$/
3663\summarycontents tex-src/texinfo.tex /^\\outer\\def\\summarycontents{%$/
3664\supereject tex-src/texinfo.tex /^\\def\\supereject{\\par\\penalty -20000\\footnoteno =0 /
3665suspend-emacs c-src/emacs/src/keyboard.c /^DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_e/
3666sval y-src/cccp.y 116
3667swallow_events c-src/emacs/src/keyboard.c /^swallow_events (bool do_display)$/
3668switch_line_buffers c-src/etags.c /^#define switch_line_buffers() (curndx = 1 - curndx/
3669sxhash_combine c-src/emacs/src/lisp.h /^sxhash_combine (EMACS_UINT x, EMACS_UINT y)$/
3670SXHASH_REDUCE c-src/emacs/src/lisp.h /^SXHASH_REDUCE (EMACS_UINT x)$/
3671SYMBOL_BLV c-src/emacs/src/lisp.h /^SYMBOL_BLV (struct Lisp_Symbol *sym)$/
3672SYMBOL_CONSTANT_P c-src/emacs/src/lisp.h /^# define SYMBOL_CONSTANT_P(sym) lisp_h_SYMBOL_CONS/
3673symbol c-src/emacs/src/lisp.h 2980
3674SYMBOL_FORWARDED c-src/emacs/src/lisp.h 651
3675SYMBOL_FWD c-src/emacs/src/lisp.h /^SYMBOL_FWD (struct Lisp_Symbol *sym)$/
3676SYMBOL_INDEX c-src/emacs/src/lisp.h /^#define SYMBOL_INDEX(sym) i##sym$/
3677symbol_interned c-src/emacs/src/lisp.h 639
3678SYMBOL_INTERNED c-src/emacs/src/lisp.h 642
3679SYMBOL_INTERNED_IN_INITIAL_OBARRAY c-src/emacs/src/lisp.h 643
3680SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P c-src/emacs/src/lisp.h /^SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P (Lisp_Object /
3681SYMBOL_INTERNED_P c-src/emacs/src/lisp.h /^SYMBOL_INTERNED_P (Lisp_Object sym)$/
3682SYMBOL_LOCALIZED c-src/emacs/src/lisp.h 650
3683symbol_name c-src/emacs/src/lisp.h 1687
3684SYMBOL_NAME c-src/emacs/src/lisp.h /^SYMBOL_NAME (Lisp_Object sym)$/
3685SYMBOLP c-src/emacs/src/lisp.h /^# define SYMBOLP(x) lisp_h_SYMBOLP (x)$/
3686SYMBOL_PLAINVAL c-src/emacs/src/lisp.h 648
3687symbol_redirect c-src/emacs/src/lisp.h 646
3688SYMBOL_UNINTERNED c-src/emacs/src/lisp.h 641
3689SYMBOL_VAL c-src/emacs/src/lisp.h /^# define SYMBOL_VAL(sym) lisp_h_SYMBOL_VAL (sym)$/
3690SYMBOL_VARALIAS c-src/emacs/src/lisp.h 649
3691syms_of_abbrev c-src/abbrev.c /^syms_of_abbrev ()$/
3692syms_of_keyboard c-src/emacs/src/keyboard.c /^syms_of_keyboard (void)$/
3693sym_type c-src/etags.c 2204
3694synchronize_system_messages_locale c-src/emacs/src/lisp.h /^INLINE void synchronize_system_messages_locale (vo/
3695synchronize_system_time_locale c-src/emacs/src/lisp.h /^INLINE void synchronize_system_time_locale (void) /
3696\syncodeindex tex-src/texinfo.tex /^\\def\\syncodeindex #1 #2 {%$/
3697\synindex tex-src/texinfo.tex /^\\def\\synindex #1 #2 {%$/
3698syntax c-src/emacs/src/regex.h 350
3699SYSCALL c-src/machsyscalls.c /^#define SYSCALL(name, number, type, args, typed_ar/
3700syscall_error c-src/sysdep.h 34
3701sys_jmp_buf c-src/emacs/src/lisp.h 2906
3702sys_jmp_buf c-src/emacs/src/lisp.h 2910
3703sys_jmp_buf c-src/emacs/src/lisp.h 2916
3704sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) _longjmp (j, v)$/
3705sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) longjmp (j, v)$/
3706sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) siglongjmp (j, v)$/
3707sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) _setjmp (j)$/
3708sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) setjmp (j)$/
3709sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) sigsetjmp (j, 0)$/
3710System.Task_Primitives/b ada-src/2ataspri.adb /^package body System.Task_Primitives is$/
3711System.Task_Primitives/s ada-src/2ataspri.ads /^package System.Task_Primitives is$/
3712t1 cp-src/c.C 34
3713t2 cp-src/c.C 38
3714T2 cp-src/fail.C 16
3715T3 c.c 163
3716tab_count_words c-src/tab.c /^int tab_count_words(char **tab)$/
3717tab_delete_first c-src/tab.c /^int tab_delete_first(char **tab)$/
3718tab_fill c-src/tab.c /^char **tab_fill(char *str, char delim)$/
3719tab_free c-src/tab.c /^void tab_free(char **tab)$/
3720\table tex-src/texinfo.tex /^\\def\\table{\\begingroup\\inENV\\obeylines\\obeyspaces\\/
3721\tablez tex-src/texinfo.tex /^\\def\\tablez #1#2#3#4#5#6{%$/
3722tag1 c-src/dostorture.c /^(*tag1 (sig, handler)) ()$/
3723tag1 c-src/h.h 110
3724tag1 c-src/torture.c /^(*tag1 (sig, handler)) ()$/
3725tag2 c-src/dostorture.c /^(*tag2 (sig, handler)) ()$/
3726tag2 c-src/torture.c /^(*tag2 (sig, handler)) ()$/
3727tag3 c-src/dostorture.c /^(*tag3 (int sig, void (*handler) (int))) (int)$/
3728tag3 c-src/torture.c /^(*tag3 (int sig, void (*handler) (int))) (int)$/
3729tag4 c-src/dostorture.c /^(*tag4 (int sig, void (*handler) (int))) (int)$/
3730tag4 c-src/torture.c /^(*tag4 (int sig, void (*handler) (int))) (int)$/
3731tag5 c-src/dostorture.c /^tag5 (handler, arg)$/
3732tag5 c-src/torture.c /^tag5 (handler, arg)$/
3733tag6 c-src/dostorture.c /^tag6 (void (*handler) (void *), void *arg)$/
3734tag6 c-src/torture.c /^tag6 (void (*handler) (void *), void *arg)$/
3735tag-any-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-any-match-p (_tag)$/
3736tag-exact-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-exact-file-name-match-p (tag)$/
3737tag-exact-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-exact-match-p (tag)$/
3738tag-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-file-name-match-p (tag)$/
3739tag-find-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun tag-find-file-of-tag (file) ; Doc string?$/
3740tag-find-file-of-tag-noselect el-src/emacs/lisp/progmodes/etags.el /^(defun tag-find-file-of-tag-noselect (file)$/
3741taggedfname c-src/etags.c 207
3742tag-implicit-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-implicit-name-match-p (tag)$/
3743tag-lines-already-matched el-src/emacs/lisp/progmodes/etags.el /^(defvar tag-lines-already-matched nil$/
3744tag_or_ch c-src/emacs/src/lisp.h 3026
3745tag-partial-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-partial-file-name-match-p (_tag)$/
3746TAG_PTR c-src/emacs/src/lisp.h /^#define TAG_PTR(tag, ptr) \\$/
3747tag-re-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-re-match-p (re)$/
3748tags-add-tables el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-add-tables 'ask-user$/
3749tags-apropos-additional-actions el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-additional-actions nil$/
3750tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun tags-apropos (regexp)$/
3751tags-apropos-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-apropos-function nil$/
3752tags-apropos-verbose el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-verbose nil$/
3753tags-case-fold-search el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-case-fold-search 'default$/
3754tags-complete-tags-table-file el-src/emacs/lisp/progmodes/etags.el /^(defun tags-complete-tags-table-file (string predi/
3755tags-completion-at-point-function el-src/emacs/lisp/progmodes/etags.el /^(defun tags-completion-at-point-function ()$/
3756tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-completion-table ()$/
3757tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-completion-table nil$/
3758tags-completion-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-completion-table-function nil$/
3759tags-compression-info-list el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-compression-info-list$/
3760tags-expand-table-name el-src/emacs/lisp/progmodes/etags.el /^(defun tags-expand-table-name (file)$/
3761tags-file-name el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-file-name nil$/
3762tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defun tags-included-tables ()$/
3763tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-included-tables nil$/
3764tags-included-tables-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-included-tables-function nil$/
3765tags-lazy-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-lazy-completion-table ()$/
3766tags-location-ring el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-location-ring (make-ring xref-marker-/
3767tags-loop-continue el-src/emacs/lisp/progmodes/etags.el /^(defun tags-loop-continue (&optional first-time)$/
3768tags-loop-eval el-src/emacs/lisp/progmodes/etags.el /^(defun tags-loop-eval (form)$/
3769tags-loop-operate el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-loop-operate nil$/
3770tags-loop-revert-buffers el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-loop-revert-buffers nil$/
3771tags-loop-scan el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-loop-scan$/
3772TAGS make-src/Makefile /^TAGS: etags.c$/
3773tags make-src/Makefile /^tags: TAGS$/
3774tags-next-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-next-table ()$/
3775tags-query-replace el-src/emacs/lisp/progmodes/etags.el /^(defun tags-query-replace (from to &optional delim/
3776tags-recognize-empty-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-recognize-empty-tags-table ()$/
3777tags-reset-tags-tables el-src/emacs/lisp/progmodes/etags.el /^(defun tags-reset-tags-tables ()$/
3778tags-revert-without-query el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-revert-without-query nil$/
3779tags-search el-src/emacs/lisp/progmodes/etags.el /^(defun tags-search (regexp &optional file-list-for/
3780tags-select-tags-table el-src/emacs/lisp/progmodes/etags.el /^(define-button-type 'tags-select-tags-table$/
3781tags-table-check-computed-list el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-check-computed-list ()$/
3782tags-table-computed-list el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-computed-list nil$/
3783tags-table-computed-list-for el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-computed-list-for nil$/
3784tags-table-extend-computed-list el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-extend-computed-list ()$/
3785tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-files ()$/
3786tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-files nil$/
3787tags-table-files-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-files-function nil$/
3788tags-table-format-functions el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-format-functions '(etags-recogn/
3789tags-table-including el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-including (this-file core-only)$/
3790tags-table-list el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-table-list nil$/
3791tags-table-list-member el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-list-member (file list)$/
3792tags-table-list-pointer el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-list-pointer nil$/
3793tags-table-list-started-at el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-list-started-at nil$/
3794tags-table-mode el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-mode ()$/
3795tags-table-set-list el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-set-list nil$/
3796tags-tag-face el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-tag-face 'default$/
3797tags-verify-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-verify-table (file)$/
3798tags-with-face el-src/emacs/lisp/progmodes/etags.el /^(defmacro tags-with-face (face &rest body)$/
3799tag-symbol-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-symbol-match-p (tag)$/
3800TAG_SYMOFFSET c-src/emacs/src/lisp.h /^#define TAG_SYMOFFSET(offset) \\$/
3801tag-word-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-word-match-p (tag)$/
3802Tapes tex-src/gzip.texi /^@node Tapes, Problems, Environment, Top$/
3803target_multibyte c-src/emacs/src/regex.h 407
3804TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is$/
3805TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is private;$/
3806Task_Control_Block/t ada-src/2ataspri.ads /^ type Task_Control_Block is record$/
3807Task_Storage_Size/t ada-src/2ataspri.ads /^ type Task_Storage_Size is new Interfaces.C.size/
3808Task_Type/b ada-src/etags-test-for.ada /^ task body Task_Type is$/
3809Task_Type/b ada-src/waroquiers.ada /^ task body Task_Type is$/
3810Task_Type/k ada-src/etags-test-for.ada /^ task type Task_Type is$/
3811Task_Type/k ada-src/waroquiers.ada /^ task type Task_Type is$/
3812TCB_Ptr/t ada-src/2ataspri.ads /^ type TCB_Ptr is access all Task_Control_Block;$/
3813TCLFLAGS make-src/Makefile /^TCLFLAGS=--lang=none --regex='\/proc[ \\t]+\\([^ \\t]+/
3814\tclose tex-src/texinfo.tex /^\\def\\tclose##1{\\realbackslash tclose {##1}}%$/
3815\tclose tex-src/texinfo.tex /^\\def\\tclose##1{\\realbackslash tclose {##1}}$/
3816\tclose tex-src/texinfo.tex /^\\def\\tclose#1{{\\rm \\tcloserm=\\fontdimen2\\font \\tt /
3817tcpdump html-src/software.html /^tcpdump$/
3818t cp-src/c.C 52
3819T cp-src/fail.C 14
3820teats cp-src/c.C 127
3821tee ruby-src/test1.ru /^ attr_accessor :tee$/
3822tee= ruby-src/test1.ru /^ attr_accessor :tee$/
3823temporarily_switch_to_single_kboard c-src/emacs/src/keyboard.c /^temporarily_switch_to_single_kboard (struct frame /
3824tend c-src/etags.c 2432
3825TERMINALP c-src/emacs/src/lisp.h /^TERMINALP (Lisp_Object a)$/
3826terminateInput objc-src/Subprocess.m /^- terminateInput$/
3827terminate objc-src/Subprocess.m /^- terminate:sender$/
3828term merc-src/accumulator.m /^:- import_module term.$/
3829test1 rs-src/test.rs /^fn test1() {$/
3830Test_Abort/p ada-src/2ataspri.adb /^ procedure Test_Abort is$/
3831Test_Abort/p ada-src/2ataspri.ads /^ procedure Test_Abort;$/
3832Test_And_Set/p ada-src/2ataspri.adb /^ procedure Test_And_Set (Cell : in out TAS_Cell;/
3833Test_And_Set/p ada-src/2ataspri.ads /^ procedure Test_And_Set (Cell : in out TAS_Cell;/
3834test-begin scm-src/test.scm /^(define-syntax test-begin$/
3835test cp-src/c.C 86
3836test_crlf1 test_crlf.c /^void test_crlf1()$/
3837test_crlf2 tset_crlf.c /^void test_crlf2()$/
3838test c-src/emacs/src/lisp.h 1871
3839test erl-src/gs_dialog.erl /^test() ->$/
3840test go-src/test1.go /^func test(p plus) {$/
3841test make-src/Makefile /^test:$/
3842test.me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/
3843test.me22b lua-src/test.lua /^ local function test.me22b (one)$/
3844TEST php-src/ptest.php 1
3845test php-src/ptest.php /^test $/
3846test_undefined c-src/emacs/src/keyboard.c /^test_undefined (Lisp_Object binding)$/
3847TEX_clgrp c-src/etags.c 4922
3848TeX_commands c-src/etags.c /^TeX_commands (FILE *inf)$/
3849TEX_decode_env c-src/etags.c /^TEX_decode_env (const char *evarname, const char */
3850TEX_defenv c-src/etags.c 4912
3851TEX_esc c-src/etags.c 4920
3852TeX_help c-src/etags.c 674
3853Texinfo_help c-src/etags.c 688
3854Texinfo_nodes c-src/etags.c /^Texinfo_nodes (FILE *inf)$/
3855Texinfo_suffixes c-src/etags.c 686
3856\texinfoversion tex-src/texinfo.tex /^\\def\\texinfoversion{2.73}$/
3857TEX_LESC c-src/etags.c 4986
3858TEX_mode c-src/etags.c /^TEX_mode (FILE *inf)$/
3859TEX_opgrp c-src/etags.c 4921
3860TEX_SESC c-src/etags.c 4987
3861TEXSRC make-src/Makefile /^TEXSRC=testenv.tex gzip.texi texinfo.tex nonewline/
3862\' tex-src/texinfo.tex /^\\def\\'{{'}}$/
3863\@ tex-src/texinfo.tex /^\\def\\@{@}%$/
3864\` tex-src/texinfo.tex /^\\def\\`{{`}}$/
3865\ tex-src/texinfo.tex /^\\def\\ {{\\fontdimen2\\font=\\tclosesave{} }}%$/
3866\* tex-src/texinfo.tex /^\\def\\*{\\hfil\\break\\hbox{}\\ignorespaces}$/
3867_ tex-src/texinfo.tex /^\\def_{\\ifusingtt\\normalunderscore\\_}$/
3868\_ tex-src/texinfo.tex /^\\def\\_{\\lvvmode \\kern.06em \\vbox{\\hrule width.3em /
3869\_ tex-src/texinfo.tex /^\\def\\_{{\\realbackslash _}}%$/
3870\: tex-src/texinfo.tex /^\\def\\:{\\spacefactor=1000 }$/
3871\. tex-src/texinfo.tex /^\\def\\.{.\\spacefactor=3000 }$/
3872\@ tex-src/texinfo.tex /^\\def\\@{{\\tt \\char '100}}$/
3873| tex-src/texinfo.tex /^\\def|{{\\tt \\char '174}}$/
3874~ tex-src/texinfo.tex /^\\def~{{\\tt \\char '176}}$/
3875+ tex-src/texinfo.tex /^\\def+{{\\tt \\char 43}}$/
3876> tex-src/texinfo.tex /^\\def>{{\\tt \\gtr}}$/
3877^ tex-src/texinfo.tex /^\\def^{{\\tt \\hat}}$/
3878< tex-src/texinfo.tex /^\\def<{{\\tt \\less}}$/
3879\ tex-src/texinfo.tex /^\\gdef\\sepspaces{\\def {\\ }}}$/
3880= tex-src/texinfo.tex /^\\global\\def={{\\tt \\char 61}}}$/
3881= tex-src/texinfo.tex /^\\global\\let\\section = \\appendixsec$/
3882= tex-src/texinfo.tex /^\\global\\let\\section = \\numberedsec$/
3883= tex-src/texinfo.tex /^\\global\\let\\section = \\unnumberedsec$/
3884= tex-src/texinfo.tex /^\\global\\let\\subsection = \\appendixsubsec$/
3885= tex-src/texinfo.tex /^\\global\\let\\subsection = \\numberedsubsec$/
3886= tex-src/texinfo.tex /^\\global\\let\\subsection = \\unnumberedsubsec$/
3887= tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\appendixsubsubsec$/
3888= tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\numberedsubsubsec$/
3889= tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\unnumberedsubsubsec$/
3890TeX_suffixes c-src/etags.c 672
3891\tex tex-src/texinfo.tex /^\\def\\tex{\\begingroup$/
3892\TeX tex-src/texinfo.tex /^\\def\\TeX{\\realbackslash TeX}%$/
3893\TeX tex-src/texinfo.tex /^\\def\\TeX{\\realbackslash TeX}$/
3894\textfonts tex-src/texinfo.tex /^\\def\\textfonts{%$/
3895TEX_toktab c-src/etags.c 4908
3896texttreelist prol-src/natded.prolog /^texttreelist([]).$/
3897/TF ps-src/rfc1245.ps /^\/TF { $/
3898\thearg tex-src/texinfo.tex /^ \\def\\thearg{#1}%$/
3899\thearg tex-src/texinfo.tex /^ \\ifx\\thearg\\empty \\def\\thearg{1}\\fi$/
3900there-is-a-=-in-the-middle! scm-src/test.scm /^(define (there-is-a-=-in-the-middle!) #t)$/
3901\thischaptername tex-src/texinfo.tex /^\\def\\thischaptername{No Chapter Title}$/
3902\thischapter tex-src/texinfo.tex /^\\def\\thischapter{} \\def\\thissection{}$/
3903\thischapter tex-src/texinfo.tex /^ \\unnumbchapmacro{#1}\\def\\thischapter{}%$/
3904this_command_key_count c-src/emacs/src/keyboard.c 108
3905this_command_key_count_reset c-src/emacs/src/keyboard.c 112
3906this_command_keys c-src/emacs/src/keyboard.c 107
3907this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/
3908this-command-keys-vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/
3909this c-src/a/b/b.c 1
3910\thisfile tex-src/texinfo.tex /^\\def\\thisfile{}$/
3911this_file_toc perl-src/htlmify-cystic 29
3912this-single-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/
3913this_single_command_key_start c-src/emacs/src/keyboard.c 125
3914this-single-command-raw-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-raw-keys", Fthis_singl/
3915\thistitle tex-src/texinfo.tex /^\\def\\thistitle{No Title}$/
3916\tie tex-src/texinfo.tex /^\\def\\tie{\\penalty 10000\\ } % Save plain tex de/
3917tignore c-src/etags.c 2433
3918timer_check_2 c-src/emacs/src/keyboard.c /^timer_check_2 (Lisp_Object timers, Lisp_Object idl/
3919timer_check c-src/emacs/src/keyboard.c /^timer_check (void)$/
3920timer_idleness_start_time c-src/emacs/src/keyboard.c 335
3921timer_last_idleness_start_time c-src/emacs/src/keyboard.c 340
3922timer_resume_idle c-src/emacs/src/keyboard.c /^timer_resume_idle (void)$/
3923timers_run c-src/emacs/src/keyboard.c 320
3924timer_start_idle c-src/emacs/src/keyboard.c /^timer_start_idle (void)$/
3925timer_stop_idle c-src/emacs/src/keyboard.c /^timer_stop_idle (void)$/
3926Time_to_position c-src/emacs/src/keyboard.c /^Time_to_position (Time encoded_pos)$/
3927tinbody c-src/etags.c 2431
3928\tindex tex-src/texinfo.tex /^\\def\\tindex {\\tpindex}$/
3929\titlefont tex-src/texinfo.tex /^\\def\\titlefont#1{{\\titlerm #1}}$/
3930\titlepage tex-src/texinfo.tex /^\\def\\titlepage{\\begingroup \\parindent=0pt \\textfon/
3931\title tex-src/texinfo.tex /^ \\def\\title{\\parsearg\\titlezzz}%$/
3932\titlezzz tex-src/texinfo.tex /^ \\def\\titlezzz##1{\\leftline{\\titlefont{##1}}$/
3933tkeyseen c-src/etags.c 2429
3934tnone c-src/etags.c 2428
3935toc_line perl-src/htlmify-cystic /^sub toc_line ($)$/
3936\today tex-src/texinfo.tex /^\\def\\today{\\number\\day\\space$/
3937toggleDescription objc-src/PackInsp.m /^-toggleDescription$/
3938tok c-src/etags.c 2491
3939token c-src/etags.c 2508
3940tokenizeatom prol-src/natded.prolog /^tokenizeatom(Atom,Ws):-$/
3941tokenize prol-src/natded.prolog /^tokenize([C1,C2,C3|Cs],Xs-Ys,TsResult):- % spe/
3942tokentab2 y-src/cccp.y 442
3943token y-src/cccp.y 437
3944token y-src/cccp.y 439
3945To_Lower pas-src/common.pas /^function To_Lower;(*(ch:char) : char;*)$/
3946tool_bar_item_properties c-src/emacs/src/keyboard.c 7970
3947tool_bar_items c-src/emacs/src/keyboard.c /^tool_bar_items (Lisp_Object reuse, int *nitems)$/
3948tool_bar_items_vector c-src/emacs/src/keyboard.c 7965
3949toolkit_menubar_in_use c-src/emacs/src/keyboard.c /^toolkit_menubar_in_use (struct frame *f)$/
3950top_level_1 c-src/emacs/src/keyboard.c /^top_level_1 (Lisp_Object ignore)$/
3951top_level_2 c-src/emacs/src/keyboard.c /^top_level_2 (void)$/
3952top-level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, /
3953top_level merc-src/accumulator.m /^:- type top_level$/
3954Top tex-src/gzip.texi /^@node Top, , , (dir)$/
3955\top tex-src/texinfo.tex /^\\outer\\def\\top{\\parsearg\\unnumberedzzz}$/
3956To_Start_Addr/f ada-src/2ataspri.adb /^ function To_Start_Addr is new$/
3957total_keys c-src/emacs/src/keyboard.c 97
3958TOTAL_KEYWORDS c-src/etags.c 2325
3959totally_unblock_input c-src/emacs/src/keyboard.c /^totally_unblock_input (void)$/
3960total_size_of_entries c-src/etags.c /^total_size_of_entries (register node *np)$/
3961total_surrounding cp-src/conway.cpp /^int site::total_surrounding(void)$/
3962To_TCB_Ptr/f ada-src/2ataspri.adb /^ function To_TCB_Ptr is new$/
3963To_Upper pas-src/common.pas /^function To_Upper;(*(ch:char) : char;*)$/
3964To_void_ptr/f ada-src/2ataspri.adb /^ function To_void_ptr is new$/
3965tpcmd c-src/h.h 15
3966tpcmd c-src/h.h 8
3967/T ps-src/rfc1245.ps /^\/T { $/
3968tracking_off c-src/emacs/src/keyboard.c /^tracking_off (Lisp_Object old_value)$/
3969track-mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/
3970traffic_light cp-src/conway.cpp /^void traffic_light(int x, int y)$/
3971translate c-src/emacs/src/regex.h 361
3972treats cp-src/c.C 131
3973Truc.Bidule/b ada-src/etags-test-for.ada /^package body Truc.Bidule is$/
3974Truc.Bidule/b ada-src/waroquiers.ada /^package body Truc.Bidule is$/
3975Truc.Bidule/s ada-src/etags-test-for.ada /^package Truc.Bidule is$/
3976Truc.Bidule/s ada-src/waroquiers.ada /^package Truc.Bidule is$/
3977Truc/s ada-src/etags-test-for.ada /^package Truc is$/
3978Truc/s ada-src/waroquiers.ada /^package Truc is$/
3979TSL/s ada-src/2ataspri.adb /^ package TSL renames System.Tasking_Soft_Links;$/
3980tt=cmtt10 tex-src/texinfo.tex /^\\font\\deftt=cmtt10 scaled \\magstep1$/
3981\t tex-src/texinfo.tex /^\\def\\t##1{\\realbackslash r {##1}}%$/
3982\t tex-src/texinfo.tex /^\\def\\t#1{{\\tt \\exhyphenpenalty=10000\\rawbackslash /
3983tt prol-src/natded.prolog /^tt:-$/
3984\tt tex-src/texinfo.tex /^\\def\\tt{\\realbackslash tt}%$/
3985\tt tex-src/texinfo.tex /^\\def\\tt{\\realbackslash tt}$/
3986ttypeseen c-src/etags.c 2430
3987tty_read_avail_input c-src/emacs/src/keyboard.c /^tty_read_avail_input (struct terminal *terminal,$/
3988\turnoffactive tex-src/texinfo.tex /^\\def\\turnoffactive{\\let"=\\normaldoublequote$/
3989/two ps-src/rfc1245.ps /^\/two \/three \/four \/five \/six \/seven \/eight \/nine \//
3990typdef c-src/etags.c 2434
3991type c-src/emacs/src/gmalloc.c 145
3992type c-src/emacs/src/lisp.h 1973
3993type c-src/emacs/src/lisp.h 1980
3994type c-src/emacs/src/lisp.h 2034
3995type c-src/emacs/src/lisp.h 2112
3996type c-src/emacs/src/lisp.h 2203
3997type c-src/emacs/src/lisp.h 2276
3998type c-src/emacs/src/lisp.h 2286
3999type c-src/emacs/src/lisp.h 2296
4000type c-src/emacs/src/lisp.h 2304
4001type c-src/emacs/src/lisp.h 2364
4002type c-src/emacs/src/lisp.h 3025
4003type c-src/etags.c 2271
4004typefunargs tex-src/texinfo.tex /^\\deftypefunargs {#3}\\endgroup %$/
4005typefunargs tex-src/texinfo.tex /^\\deftypefunargs {#4}\\endgroup %$/
4006typemargin tex-src/texinfo.tex /^\\newskip\\deftypemargin \\deftypemargin=12pt$/
4007typemargin tex-src/texinfo.tex /^\\rlap{\\rightline{{\\rm #2}\\hskip \\deftypemargin}}}%/
4008TYPE_RANGED_INTEGERP c-src/emacs/src/lisp.h /^#define TYPE_RANGED_INTEGERP(type, x) \\$/
4009Type_Specific_Data/t ada-src/etags-test-for.ada /^ type Type_Specific_Data is record$/
4010TYPESTOSTAT objc-src/PackInsp.h 37
4011/Uacute ps-src/rfc1245.ps /^\/Uacute \/Ucircumflex \/Ugrave \/dotlessi \/circumflex/
4012u_any c-src/emacs/src/lisp.h 2214
4013u_boolfwd c-src/emacs/src/lisp.h 2371
4014u_buffer_objfwd c-src/emacs/src/lisp.h 2373
4015UCHAR c-src/emacs/src/lisp.h 2424
4016_UCHAR_T c-src/emacs/src/lisp.h 2423
4017U_CHAR y-src/cccp.y 38
4018u c-src/emacs/src/lisp.h 2397
4019/udieresis ps-src/rfc1245.ps /^\/udieresis \/dagger \/.notdef \/cent \/sterling \/secti/
4020u_finalizer c-src/emacs/src/lisp.h 2219
4021u_free c-src/emacs/src/lisp.h 2215
4022u_intfwd c-src/emacs/src/lisp.h 2370
4023u_kboard_objfwd c-src/emacs/src/lisp.h 2374
4024u_marker c-src/emacs/src/lisp.h 2216
4025unargs tex-src/texinfo.tex /^\\defunargs {#2}\\endgroup %$/
4026unargs tex-src/texinfo.tex /^\\defunargs {#3}\\endgroup %$/
4027UNARY y-src/cccp.c 18
4028unblock_input c-src/emacs/src/keyboard.c /^unblock_input (void)$/
4029unblock_input_to c-src/emacs/src/keyboard.c /^unblock_input_to (int level)$/
4030unchar c-src/h.h 99
4031UNDEFINED c-src/h.h 118
4032UNEVALLED c-src/emacs/src/lisp.h 2834
4033unexpand-abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/
4034UNGCPRO c-src/emacs/src/lisp.h 3202
4035UNGCPRO c-src/emacs/src/lisp.h 3257
4036UNGCPRO c-src/emacs/src/lisp.h 3353
4037univ merc-src/accumulator.m /^:- import_module univ.$/
4038UNLOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define UNLOCK_ALIGNED_BLOCKS() \\$/
4039UNLOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define UNLOCK_ALIGNED_BLOCKS()$/
4040UNLOCK c-src/emacs/src/gmalloc.c /^#define UNLOCK() \\$/
4041UNLOCK c-src/emacs/src/gmalloc.c /^#define UNLOCK()$/
4042Unlock/p ada-src/2ataspri.adb /^ procedure Unlock (L : in out Lock) is$/
4043Unlock/p ada-src/2ataspri.ads /^ procedure Unlock (L : in out Lock);$/
4044\unnchfopen tex-src/texinfo.tex /^\\def\\unnchfopen #1{%$/
4045\unnchfplain tex-src/texinfo.tex /^\\def\\unnchfplain #1{%$/
4046\unnumbchapentry tex-src/texinfo.tex /^\\def\\unnumbchapentry#1#2{\\dochapentry{#1}{#2}}$/
4047\unnumberedsec tex-src/texinfo.tex /^\\outer\\def\\unnumberedsec{\\parsearg\\unnumberedseczz/
4048\unnumberedseczzz tex-src/texinfo.tex /^\\def\\unnumberedseczzz #1{\\seccheck{unnumberedsec}%/
4049\unnumberedsubsec tex-src/texinfo.tex /^\\outer\\def\\unnumberedsubsec{\\parsearg\\unnumberedsu/
4050\unnumberedsubseczzz tex-src/texinfo.tex /^\\def\\unnumberedsubseczzz #1{\\seccheck{unnumberedsu/
4051\unnumberedsubsubsec tex-src/texinfo.tex /^\\outer\\def\\unnumberedsubsubsec{\\parsearg\\unnumbere/
4052\unnumberedsubsubseczzz tex-src/texinfo.tex /^\\def\\unnumberedsubsubseczzz #1{\\seccheck{unnumbere/
4053\unnumbered tex-src/texinfo.tex /^\\outer\\def\\unnumbered{\\parsearg\\unnumberedzzz}$/
4054\unnumberedzzz tex-src/texinfo.tex /^\\def\\unnumberedzzz #1{\\seccheck{unnumbered}%$/
4055\unnumbnoderef tex-src/texinfo.tex /^\\def\\unnumbnoderef{\\ifx\\lastnode\\relax\\else$/
4056\unnumbsecentry tex-src/texinfo.tex /^ \\def\\unnumbsecentry ##1##2{}$/
4057\unnumbsecentry tex-src/texinfo.tex /^\\def\\unnumbsecentry#1#2{\\dosecentry{#1}{#2}}$/
4058\unnumbsetref tex-src/texinfo.tex /^\\def\\unnumbsetref#1{%$/
4059\unnumbsubsecentry tex-src/texinfo.tex /^ \\def\\unnumbsubsecentry ##1##2{}$/
4060\unnumbsubsecentry tex-src/texinfo.tex /^\\def\\unnumbsubsecentry#1#2{\\dosubsecentry{#1}{#2}}/
4061\unnumbsubsubsecentry tex-src/texinfo.tex /^ \\def\\unnumbsubsubsecentry ##1##2{}$/
4062\unnumbsubsubsecentry tex-src/texinfo.tex /^\\def\\unnumbsubsubsecentry#1#2{\\dosubsubsecentry{#1/
4063unravel_univ merc-src/accumulator.m /^:- some [T] pred unravel_univ(univ::in, T::out) is/
4064unread_switch_frame c-src/emacs/src/keyboard.c 204
4065UNSIGNED_CMP c-src/emacs/src/lisp.h /^#define UNSIGNED_CMP(a, op, b) \\$/
4066unsignedp y-src/cccp.y 112
4067unwind c-src/emacs/src/lisp.h 2962
4068unwind_int c-src/emacs/src/lisp.h 2972
4069unwind_ptr c-src/emacs/src/lisp.h 2967
4070unwind_void c-src/emacs/src/lisp.h 2976
4071u_objfwd c-src/emacs/src/lisp.h 2372
4072u_overlay c-src/emacs/src/lisp.h 2217
4073__up c.c 160
4074update_accumulator_pred merc-src/accumulator.m /^:- pred update_accumulator_pred(pred_id::in, proc_/
4075\uppercaseenumerate tex-src/texinfo.tex /^\\def\\uppercaseenumerate{%$/
4076uprintmax_t c-src/emacs/src/lisp.h 149
4077uprintmax_t c-src/emacs/src/lisp.h 154
4078/U ps-src/rfc1245.ps /^\/U { $/
4079usage perl-src/yagrip.pl /^sub usage {$/
4080u_save_value c-src/emacs/src/lisp.h 2218
4081usecharno c-src/etags.c 210
4082used c-src/emacs/src/regex.h 347
4083used_syntax c-src/emacs/src/regex.h 398
4084USE_LSB_TAG c-src/emacs/src/lisp.h 271
4085USE_LSB_TAG c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (bool, USE_LSB_TAG)$/
4086USE_PTHREAD c-src/emacs/src/gmalloc.c 25
4087user_cmp_function c-src/emacs/src/lisp.h 1814
4088UserEdit pyt-src/server.py /^class UserEdit(Frame):$/
4089user_error c-src/emacs/src/keyboard.c /^user_error (const char *msg)$/
4090user_hash_function c-src/emacs/src/lisp.h 1811
4091User pyt-src/server.py /^class User:$/
4092user_signal_info c-src/emacs/src/keyboard.c 7235
4093user_signals c-src/emacs/src/keyboard.c 7250
4094USE_SAFE_ALLOCA c-src/emacs/src/lisp.h 4560
4095USE_STACK_CONS c-src/emacs/src/lisp.h 4689
4096USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4652
4097USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4658
4098USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4659
4099USE_STACK_STRING c-src/emacs/src/lisp.h 4691
4100usfreelock_ptr/t ada-src/etags-test-for.ada /^ type usfreelock_ptr is access$/
4101Vabbrev_start_location_buffer c-src/abbrev.c 66
4102Vabbrev_start_location c-src/abbrev.c 63
4103Vabbrev_table_name_list c-src/abbrev.c 43
4104VALBITS c-src/emacs/src/lisp.h 246
4105valcell c-src/emacs/src/lisp.h 2357
4106val c-src/emacs/src/lisp.h 3027
4107val c-src/emacs/src/lisp.h 691
4108val c-src/getopt.h 84
4109validate php-src/lce_functions.php /^ function validate($value)$/
4110valid c-src/etags.c 220
4111valid c-src/etags.c 2502
4112valloc c-src/emacs/src/gmalloc.c /^valloc (size_t size)$/
4113VALMASK c-src/emacs/src/lisp.h 829
4114VALMASK c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (EMACS_INT, VALMASK)$/
4115VAL_MAX c-src/emacs/src/lisp.h 263
4116val prol-src/natded.prolog /^val(X) --> ['['], valseq(X), [']'].$/
4117valseq prol-src/natded.prolog /^valseq([Val|Vals]) --> val(Val), plusvalseq(Vals)./
4118ValToNmStr pas-src/common.pas /^function ValToNmStr; (*($/
4119value c-src/emacs/src/lisp.h 687
4120value y-src/cccp.y 112
4121varargs tex-src/texinfo.tex /^\\defvarargs {#2}\\endgroup %$/
4122varargs tex-src/texinfo.tex /^\\defvarargs {#3}\\endgroup %$/
4123var c-src/emacs/src/keyboard.c 11023
4124var c-src/emacs/src/lisp.h 3137
4125varset merc-src/accumulator.m /^:- import_module varset.$/
4126\var tex-src/texinfo.tex /^\\def\\var##1{\\realbackslash var {##1}}%$/
4127\var tex-src/texinfo.tex /^\\def\\var##1{\\realbackslash var {##1}}$/
4128vcopy c-src/emacs/src/lisp.h /^vcopy (Lisp_Object v, ptrdiff_t offset, Lisp_Objec/
4129VECSIZE c-src/emacs/src/lisp.h /^#define VECSIZE(type) \\$/
4130vectorlike_header c-src/emacs/src/lisp.h 1343
4131VECTORLIKEP c-src/emacs/src/lisp.h /^# define VECTORLIKEP(x) lisp_h_VECTORLIKEP (x)$/
4132VECTORP c-src/emacs/src/lisp.h /^VECTORP (Lisp_Object x)$/
4133verde cp-src/c.C 40
4134verify_ascii c-src/emacs/src/lisp.h /^# define verify_ascii(str) (str)$/
4135verify-tags-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar verify-tags-table-function nil$/
4136VERSION c-src/etags.c 789
4137VERSION erl-src/gs_dialog.erl /^-define(VERSION, '2001.1101').$/
4138VERSION objc-src/PackInsp.m 34
4139Vfundamental_mode_abbrev_table c-src/abbrev.c 52
4140Vglobal_abbrev_table c-src/abbrev.c 48
4141VHDLFLAGS make-src/Makefile /^VHDLFLAGS=--language=none --regex='\/[ \\t]*\\(ARCHIT/
4142vignore c-src/etags.c 2417
4143\vindex tex-src/texinfo.tex /^\\def\\vindex {\\vrindex}$/
4144visit-tags-table-buffer el-src/emacs/lisp/progmodes/etags.el /^(defun visit-tags-table-buffer (&optional cont)$/
4145visit-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun visit-tags-table (file &optional local)$/
4146Vlast_abbrev c-src/abbrev.c 70
4147Vlast_abbrev_text c-src/abbrev.c 75
4148Vlispy_mouse_stem c-src/emacs/src/keyboard.c 5172
4149void c-src/emacs/src/lisp.h /^INLINE void (check_cons_list) (void) { lisp_h_chec/
4150voidfuncptr c-src/emacs/src/lisp.h 2108
4151voidval y-src/cccp.y 115
4152/V ps-src/rfc1245.ps /^\/V { $/
4153\vritemindex tex-src/texinfo.tex /^\\def\\vritemindex #1{\\doind {vr}{\\code{#1}}}%$/
4154\vtable tex-src/texinfo.tex /^\\def\\vtable{\\begingroup\\inENV\\obeylines\\obeyspaces/
4155waiting_for_input c-src/emacs/src/keyboard.c 150
4156WAIT_READING_MAX c-src/emacs/src/lisp.h 4281
4157WAIT_READING_MAX c-src/emacs/src/lisp.h 4283
4158wait_status_ptr_t c.c 161
4159WARNINGS make-src/Makefile /^WARNINGS=-pedantic -Wall -Wpointer-arith -Winline /
4160warning y-src/cccp.y /^warning (msg)$/
4161/wbytes ps-src/rfc1245.ps /^\/wbytes { $/
4162WCHAR_TYPE_SIZE y-src/cccp.y 99
4163weak_alias c-src/emacs/src/gmalloc.c /^weak_alias (free, cfree)$/
4164weak c-src/emacs/src/lisp.h 1830
4165web ftp publish make-src/Makefile /^web ftp publish:$/
4166what c-src/etags.c 252
4167wheel_syms c-src/emacs/src/keyboard.c 4628
4168where cp-src/clheir.hpp 77
4169where c-src/emacs/src/lisp.h 2348
4170where c-src/emacs/src/lisp.h 2980
4171where_in_registry cp-src/clheir.hpp 15
4172WHITE cp-src/screen.hpp 27
4173/wh ps-src/rfc1245.ps /^\/wh { $/
4174WINDOW_CONFIGURATIONP c-src/emacs/src/lisp.h /^WINDOW_CONFIGURATIONP (Lisp_Object a)$/
4175WINDOWP c-src/emacs/src/lisp.h /^WINDOWP (Lisp_Object a)$/
4176WINDOWSNT c-src/etags.c 101
4177WINDOWSNT c-src/etags.c 102
4178windowWillClose objcpp-src/SimpleCalc.M /^- windowWillClose:sender$/
4179wipe_kboard c-src/emacs/src/keyboard.c /^wipe_kboard (KBOARD *kb)$/
4180womboid c-src/h.h 63
4181womboid c-src/h.h 75
4182word_size c-src/emacs/src/lisp.h 1473
4183WorkingDays cp-src/functions.cpp /^int WorkingDays(Date a, Date b){$/
4184WORKING objc-src/PackInsp.m 368
4185/W ps-src/rfc1245.ps /^\/W { $/
4186write1= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/
4187write2= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/
4188write_abbrev c-src/abbrev.c /^write_abbrev (sym, stream)$/
4189writebreaklex prol-src/natded.prolog /^writebreaklex([]).$/
4190writebreak prol-src/natded.prolog /^writebreak([]).$/
4191writecat prol-src/natded.prolog /^writecat(np(ind(sng),nm(_)),np,[],[]):-!.$/
4192write_classname c-src/etags.c /^write_classname (linebuffer *cn, const char *quali/
4193write_lex_cat prol-src/natded.prolog /^write_lex_cat(File):-$/
4194write_lex prol-src/natded.prolog /^write_lex(File):-$/
4195writelist prol-src/natded.prolog /^writelist([der(Ws)|Ws2]):-$/
4196writelistsubs prol-src/natded.prolog /^writelistsubs([],X):-$/
4197Write_Lock/p ada-src/2ataspri.adb /^ procedure Write_Lock (L : in out Lock; Ceiling_/
4198Write_Lock/p ada-src/2ataspri.ads /^ procedure Write_Lock (L : in out Lock; Ceiling_/
4199writenamestring pas-src/common.pas /^procedure writenamestring;(*($/
4200write php-src/lce_functions.php /^ function write()$/
4201write php-src/lce_functions.php /^ function write($save="yes")$/
4202writesubs prol-src/natded.prolog /^writesubs([]).$/
4203writesups prol-src/natded.prolog /^writesups([]).$/
4204write_xyc cp-src/screen.cpp /^void write_xyc(int x, int y, char c)$/
4205written c-src/etags.c 211
4206\w tex-src/texinfo.tex /^\\def\\w#1{\\leavevmode\\hbox{#1}}$/
4207\w tex-src/texinfo.tex /^\\def\\w{\\realbackslash w }%$/
4208\w tex-src/texinfo.tex /^\\def\\w{\\realbackslash w}$/
4209XBOOL_VECTOR c-src/emacs/src/lisp.h /^XBOOL_VECTOR (Lisp_Object a)$/
4210XBUFFER c-src/emacs/src/lisp.h /^XBUFFER (Lisp_Object a)$/
4211XBUFFER_OBJFWD c-src/emacs/src/lisp.h /^XBUFFER_OBJFWD (union Lisp_Fwd *a)$/
4212xcar_addr c-src/emacs/src/lisp.h /^xcar_addr (Lisp_Object c)$/
4213XCAR c-src/emacs/src/lisp.h /^# define XCAR(c) lisp_h_XCAR (c)$/
4214x c.c 153
4215x c.c 179
4216x c.c 188
4217x c.c 189
4218xcdr_addr c-src/emacs/src/lisp.h /^xcdr_addr (Lisp_Object c)$/
4219XCDR c-src/emacs/src/lisp.h /^# define XCDR(c) lisp_h_XCDR (c)$/
4220XCHAR_TABLE c-src/emacs/src/lisp.h /^XCHAR_TABLE (Lisp_Object a)$/
4221XCHG_0 c-src/sysdep.h 47
4222XCHG_1 c-src/sysdep.h 48
4223XCHG_2 c-src/sysdep.h 49
4224XCHG_3 c-src/sysdep.h 50
4225XCHG_4 c-src/sysdep.h 51
4226XCHG_5 c-src/sysdep.h 52
4227XCONS c-src/emacs/src/lisp.h /^# define XCONS(a) lisp_h_XCONS (a)$/
4228x cp-src/c.C 53
4229x cp-src/c.C 80
4230x cp-src/clheir.hpp 49
4231x cp-src/clheir.hpp 58
4232x cp-src/conway.hpp 7
4233x cp-src/fail.C 10
4234x cp-src/fail.C 44
4235X c-src/h.h 100
4236XDEFUN c.c /^XDEFUN ("x-get-selection-internal", Fx_get_selecti/
4237xdiff make-src/Makefile /^xdiff: ETAGS EXTAGS ${infiles}$/
4238XFASTINT c-src/emacs/src/lisp.h /^# define XFASTINT(a) lisp_h_XFASTINT (a)$/
4239XFASTINT c-src/emacs/src/lisp.h /^XFASTINT (Lisp_Object a)$/
4240XFINALIZER c-src/emacs/src/lisp.h /^XFINALIZER (Lisp_Object a)$/
4241XFLOAT c-src/emacs/src/lisp.h /^XFLOAT (Lisp_Object a)$/
4242XFLOAT_DATA c-src/emacs/src/lisp.h /^XFLOAT_DATA (Lisp_Object f)$/
4243XFLOATINT c-src/emacs/src/lisp.h /^XFLOATINT (Lisp_Object n)$/
4244XFWDTYPE c-src/emacs/src/lisp.h /^XFWDTYPE (union Lisp_Fwd *a)$/
4245x-get-selection-internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/
4246x-get-selection-internal c.c /^ Fx_get_selection_internal, Sx_get_selection/
4247XHASH c-src/emacs/src/lisp.h /^# define XHASH(a) lisp_h_XHASH (a)$/
4248XHASH_TABLE c-src/emacs/src/lisp.h /^XHASH_TABLE (Lisp_Object a)$/
4249XIL c-src/emacs/src/lisp.h /^# define XIL(i) lisp_h_XIL (i)$/
4250XINT c-src/emacs/src/lisp.h /^# define XINT(a) lisp_h_XINT (a)$/
4251XINT c-src/emacs/src/lisp.h /^XINT (Lisp_Object a)$/
4252XINTPTR c-src/emacs/src/lisp.h /^XINTPTR (Lisp_Object a)$/
4253\xitem tex-src/texinfo.tex /^\\def\\xitem{\\errmessage{@xitem while not in a table/
4254\xitemx tex-src/texinfo.tex /^\\def\\xitemx{\\errmessage{@xitemx while not in a tab/
4255\xitemzzz tex-src/texinfo.tex /^\\def\\xitemzzz #1{\\dosubind {kw}{\\code{#1}}{for {\\b/
4256\xkey tex-src/texinfo.tex /^\\def\\xkey{\\key}$/
4257XLI_BUILTIN_LISPSYM c-src/emacs/src/lisp.h /^#define XLI_BUILTIN_LISPSYM(iname) TAG_SYMOFFSET (/
4258XLI c-src/emacs/src/lisp.h /^# define XLI(o) lisp_h_XLI (o)$/
4259xmalloc c-src/etags.c /^xmalloc (size_t size)$/
4260XMARKER c-src/emacs/src/lisp.h /^XMARKER (Lisp_Object a)$/
4261XMISCANY c-src/emacs/src/lisp.h /^XMISCANY (Lisp_Object a)$/
4262XMISC c-src/emacs/src/lisp.h /^XMISC (Lisp_Object a)$/
4263XMISCTYPE c-src/emacs/src/lisp.h /^XMISCTYPE (Lisp_Object a)$/
4264xnew c-src/etags.c /^#define xnew(n, Type) ((Type *) xmalloc ((n) /
4265XOVERLAY c-src/emacs/src/lisp.h /^XOVERLAY (Lisp_Object a)$/
4266XPNTR c-src/emacs/src/lisp.h /^# define XPNTR(a) lisp_h_XPNTR (a)$/
4267XPROCESS c-src/emacs/src/lisp.h /^XPROCESS (Lisp_Object a)$/
4268/X ps-src/rfc1245.ps /^\/X { $/
4269\xrdef tex-src/texinfo.tex /^\\def\\xrdef #1#2{$/
4270xrealloc c-src/etags.c /^xrealloc (void *ptr, size_t size)$/
4271xref-etags-location el-src/emacs/lisp/progmodes/etags.el /^(defclass xref-etags-location (xref-location)$/
4272xref-location-line el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-line ((l xref-etags-lo/
4273xref-location-marker el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-marker ((l xref-etags-/
4274xref-make-etags-location el-src/emacs/lisp/progmodes/etags.el /^(defun xref-make-etags-location (tag-info file)$/
4275\xref tex-src/texinfo.tex /^\\def\\xref#1{See \\xrefX[#1,,,,,,,]}$/
4276\xrefX[ tex-src/texinfo.tex /^\\def\\xrefX[#1,#2,#3,#4,#5,#6]{\\begingroup%$/
4277xrnew c-src/etags.c /^#define xrnew(op, n, Type) ((op) = (Type *) xreall/
4278XSAVE_FUNCPOINTER c-src/emacs/src/lisp.h /^XSAVE_FUNCPOINTER (Lisp_Object obj, int n)$/
4279XSAVE_INTEGER c-src/emacs/src/lisp.h /^XSAVE_INTEGER (Lisp_Object obj, int n)$/
4280XSAVE_OBJECT c-src/emacs/src/lisp.h /^XSAVE_OBJECT (Lisp_Object obj, int n)$/
4281XSAVE_POINTER c-src/emacs/src/lisp.h /^XSAVE_POINTER (Lisp_Object obj, int n)$/
4282XSAVE_VALUE c-src/emacs/src/lisp.h /^XSAVE_VALUE (Lisp_Object a)$/
4283XSETBOOL_VECTOR c-src/emacs/src/lisp.h /^#define XSETBOOL_VECTOR(a, b) (XSETPSEUDOVECTOR (a/
4284XSETBUFFER c-src/emacs/src/lisp.h /^#define XSETBUFFER(a, b) (XSETPSEUDOVECTOR (a, b, /
4285XSETCDR c-src/emacs/src/lisp.h /^XSETCDR (Lisp_Object c, Lisp_Object n)$/
4286XSETCHAR_TABLE c-src/emacs/src/lisp.h /^#define XSETCHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a,/
4287XSETCOMPILED c-src/emacs/src/lisp.h /^#define XSETCOMPILED(a, b) (XSETPSEUDOVECTOR (a, b/
4288XSETCONS c-src/emacs/src/lisp.h /^#define XSETCONS(a, b) ((a) = make_lisp_ptr (b, Li/
4289XSETFASTINT c-src/emacs/src/lisp.h /^#define XSETFASTINT(a, b) ((a) = make_natnum (b))$/
4290XSETFLOAT c-src/emacs/src/lisp.h /^#define XSETFLOAT(a, b) ((a) = make_lisp_ptr (b, L/
4291XSET_HASH_TABLE c-src/emacs/src/lisp.h /^#define XSET_HASH_TABLE(VAR, PTR) \\$/
4292XSETINT c-src/emacs/src/lisp.h /^#define XSETINT(a, b) ((a) = make_number (b))$/
4293XSETMISC c-src/emacs/src/lisp.h /^#define XSETMISC(a, b) ((a) = make_lisp_ptr (b, Li/
4294XSETPROCESS c-src/emacs/src/lisp.h /^#define XSETPROCESS(a, b) (XSETPSEUDOVECTOR (a, b,/
4295XSETPSEUDOVECTOR c-src/emacs/src/lisp.h /^#define XSETPSEUDOVECTOR(a, b, code) \\$/
4296XSETPVECTYPE c-src/emacs/src/lisp.h /^#define XSETPVECTYPE(v, code) \\$/
4297XSETPVECTYPESIZE c-src/emacs/src/lisp.h /^#define XSETPVECTYPESIZE(v, code, lispsize, restsi/
4298XSETSTRING c-src/emacs/src/lisp.h /^#define XSETSTRING(a, b) ((a) = make_lisp_ptr (b, /
4299XSETSUB_CHAR_TABLE c-src/emacs/src/lisp.h /^#define XSETSUB_CHAR_TABLE(a, b) (XSETPSEUDOVECTOR/
4300XSETSUBR c-src/emacs/src/lisp.h /^#define XSETSUBR(a, b) (XSETPSEUDOVECTOR (a, b, PV/
4301XSETSYMBOL c-src/emacs/src/lisp.h /^#define XSETSYMBOL(a, b) ((a) = make_lisp_symbol (/
4302XSETTERMINAL c-src/emacs/src/lisp.h /^#define XSETTERMINAL(a, b) (XSETPSEUDOVECTOR (a, b/
4303XSETTYPED_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define XSETTYPED_PSEUDOVECTOR(a, b, size, code) /
4304XSETVECTOR c-src/emacs/src/lisp.h /^#define XSETVECTOR(a, b) ((a) = make_lisp_ptr (b, /
4305XSETWINDOW_CONFIGURATION c-src/emacs/src/lisp.h /^#define XSETWINDOW_CONFIGURATION(a, b) \\$/
4306XSETWINDOW c-src/emacs/src/lisp.h /^#define XSETWINDOW(a, b) (XSETPSEUDOVECTOR (a, b, /
4307XSTRING c-src/emacs/src/lisp.h /^XSTRING (Lisp_Object a)$/
4308XSUB_CHAR_TABLE c-src/emacs/src/lisp.h /^XSUB_CHAR_TABLE (Lisp_Object a)$/
4309XSUBR c-src/emacs/src/lisp.h /^XSUBR (Lisp_Object a)$/
4310XSYMBOL c-src/emacs/src/lisp.h /^# define XSYMBOL(a) lisp_h_XSYMBOL (a)$/
4311XSYMBOL c-src/emacs/src/lisp.h /^XSYMBOL (Lisp_Object a)$/
4312XTERMINAL c-src/emacs/src/lisp.h /^XTERMINAL (Lisp_Object a)$/
4313x tex-src/texinfo.tex /^\\refx{#1-snt}{} [\\printednodename], page\\tie\\refx{/
4314XTYPE c-src/emacs/src/lisp.h /^# define XTYPE(a) lisp_h_XTYPE (a)$/
4315XTYPE c-src/emacs/src/lisp.h /^XTYPE (Lisp_Object a)$/
4316XUNTAG c-src/emacs/src/lisp.h /^# define XUNTAG(a, type) lisp_h_XUNTAG (a, type)$/
4317XUNTAG c-src/emacs/src/lisp.h /^XUNTAG (Lisp_Object a, int type)$/
4318XWINDOW c-src/emacs/src/lisp.h /^XWINDOW (Lisp_Object a)$/
4319XX cp-src/x.cc 1
4320xx make-src/Makefile /^xx="this line is here because of a fontlock bug$/
4321xyz ruby-src/test1.ru /^ alias_method :xyz,$/
4322Xyzzy ruby-src/test1.ru 13
4323YACC c-src/etags.c 2199
4324Yacc_entries c-src/etags.c /^Yacc_entries (FILE *inf)$/
4325Yacc_help c-src/etags.c 693
4326Yacc_suffixes c-src/etags.c 691
4327\Yappendixletterandtype tex-src/texinfo.tex /^\\def\\Yappendixletterandtype{%$/
4328y cp-src/clheir.hpp 49
4329y cp-src/clheir.hpp 58
4330y cp-src/conway.hpp 7
4331Y c-src/h.h 100
4332YELLOW cp-src/screen.hpp 26
4333/yen ps-src/rfc1245.ps /^\/yen \/.notdef \/.notdef \/.notdef \/.notdef \/.notdef /
4334y-get-selection-internal c.c /^ Fy_get_selection_internal, Sy_get_selection_/
4335\Ynothing tex-src/texinfo.tex /^\\def\\Ynothing{}$/
4336\Ypagenumber tex-src/texinfo.tex /^\\def\\Ypagenumber{\\folio}$/
4337/Y ps-src/rfc1245.ps /^\/Y { $/
4338\Ysectionnumberandtype tex-src/texinfo.tex /^\\def\\Ysectionnumberandtype{%$/
4339YSRC make-src/Makefile /^YSRC=parse.y parse.c atest.y cccp.c cccp.y$/
4340\Ytitle tex-src/texinfo.tex /^\\def\\Ytitle{\\thischapter}$/
4341YYABORT /usr/share/bison/bison.simple 153
4342YYABORT /usr/share/bison/bison.simple 154
4343YYACCEPT /usr/share/bison/bison.simple 152
4344YYACCEPT /usr/share/bison/bison.simple 153
4345yyalloc /usr/share/bison/bison.simple 83
4346yyalloc /usr/share/bison/bison.simple 84
4347YYBACKUP /usr/share/bison/bison.simple /^#define YYBACKUP(Token, Value) \\$/
4348YYBISON y-src/cccp.c 4
4349YYBISON y-src/parse.c 4
4350yyclearin /usr/share/bison/bison.simple 149
4351yyclearin /usr/share/bison/bison.simple 150
4352yydebug /usr/share/bison/bison.simple 237
4353yydebug /usr/share/bison/bison.simple 238
4354YY_DECL_NON_LSP_VARIABLES /usr/share/bison/bison.simple 374
4355YY_DECL_VARIABLES /usr/share/bison/bison.simple 385
4356YY_DECL_VARIABLES /usr/share/bison/bison.simple 391
4357YYDPRINTF /usr/share/bison/bison.simple /^# define YYDPRINTF(Args) \\$/
4358YYDPRINTF /usr/share/bison/bison.simple /^# define YYDPRINTF(Args)$/
4359YYEMPTY /usr/share/bison/bison.simple 150
4360YYEMPTY /usr/share/bison/bison.simple 151
4361YYEOF /usr/share/bison/bison.simple 151
4362YYEOF /usr/share/bison/bison.simple 152
4363YYERRCODE /usr/share/bison/bison.simple 178
4364YYERRCODE /usr/share/bison/bison.simple 179
4365yyerrhandle /usr/share/bison/bison.simple 848
4366yyerrlab1 /usr/share/bison/bison.simple 823
4367yyerrok /usr/share/bison/bison.simple 148
4368yyerrok /usr/share/bison/bison.simple 149
4369YYERROR /usr/share/bison/bison.simple 154
4370YYERROR /usr/share/bison/bison.simple 155
4371yyerror y-src/cccp.y /^yyerror (s)$/
4372yyerrstatus /usr/share/bison/bison.simple 846
4373YYFAIL /usr/share/bison/bison.simple 158
4374YYFAIL /usr/share/bison/bison.simple 159
4375YYFPRINTF /usr/share/bison/bison.simple 225
4376YYFPRINTF /usr/share/bison/bison.simple 226
4377YYINITDEPTH /usr/share/bison/bison.simple 244
4378YYINITDEPTH /usr/share/bison/bison.simple 245
4379YYLEX /usr/share/bison/bison.simple 200
4380YYLEX /usr/share/bison/bison.simple 201
4381YYLEX /usr/share/bison/bison.simple 202
4382YYLEX /usr/share/bison/bison.simple 203
4383YYLEX /usr/share/bison/bison.simple 206
4384YYLEX /usr/share/bison/bison.simple 207
4385YYLEX /usr/share/bison/bison.simple 208
4386YYLEX /usr/share/bison/bison.simple 209
4387YYLEX /usr/share/bison/bison.simple 212
4388YYLEX /usr/share/bison/bison.simple 213
4389yylex y-src/cccp.y /^yylex ()$/
4390YYLLOC_DEFAULT /usr/share/bison/bison.simple /^# define YYLLOC_DEFAULT(Current, Rhs, N) \\$/
4391yylsp /usr/share/bison/bison.simple 748
4392yylsp /usr/share/bison/bison.simple 921
4393yyls /usr/share/bison/bison.simple 88
4394yyls /usr/share/bison/bison.simple 89
4395YYMAXDEPTH /usr/share/bison/bison.simple 255
4396YYMAXDEPTH /usr/share/bison/bison.simple 256
4397YYMAXDEPTH /usr/share/bison/bison.simple 259
4398YYMAXDEPTH /usr/share/bison/bison.simple 260
4399yymemcpy /usr/share/bison/bison.simple 264
4400yymemcpy /usr/share/bison/bison.simple 265
4401yymemcpy /usr/share/bison/bison.simple /^yymemcpy (char *yyto, const char *yyfrom, YYSIZE_T/
4402yynewstate /usr/share/bison/bison.simple 763
4403yynewstate /usr/share/bison/bison.simple 925
4404yyn /usr/share/bison/bison.simple 755
4405yyn /usr/share/bison/bison.simple 861
4406yyn /usr/share/bison/bison.simple 895
4407yyn /usr/share/bison/bison.simple 903
4408YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 351
4409YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 354
4410YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 358
4411YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 352
4412YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 355
4413YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 359
4414yyparse /usr/share/bison/bison.simple /^yyparse (YYPARSE_PARAM_ARG)$/
4415YYPOPSTACK /usr/share/bison/bison.simple 445
4416YYPOPSTACK /usr/share/bison/bison.simple 447
4417YYRECOVERING /usr/share/bison/bison.simple /^#define YYRECOVERING() (!!yyerrstatus)$/
4418yyresult /usr/share/bison/bison.simple 932
4419yyresult /usr/share/bison/bison.simple 939
4420yyresult /usr/share/bison/bison.simple 947
4421yyreturn /usr/share/bison/bison.simple 933
4422yyreturn /usr/share/bison/bison.simple 940
4423YYSIZE_T /usr/share/bison/bison.simple 128
4424YYSIZE_T /usr/share/bison/bison.simple 129
4425YYSIZE_T /usr/share/bison/bison.simple 131
4426YYSIZE_T /usr/share/bison/bison.simple 132
4427YYSIZE_T /usr/share/bison/bison.simple 136
4428YYSIZE_T /usr/share/bison/bison.simple 137
4429YYSIZE_T /usr/share/bison/bison.simple 140
4430YYSIZE_T /usr/share/bison/bison.simple 141
4431YYSIZE_T /usr/share/bison/bison.simple 145
4432YYSIZE_T /usr/share/bison/bison.simple 146
4433YYSIZE_T /usr/share/bison/bison.simple 51
4434YYSIZE_T /usr/share/bison/bison.simple 52
4435YYSIZE_T /usr/share/bison/bison.simple 56
4436YYSIZE_T /usr/share/bison/bison.simple 57
4437YYSIZE_T /usr/share/bison/bison.simple 71
4438YYSIZE_T /usr/share/bison/bison.simple 72
4439YYSIZE_T /usr/share/bison/bison.simple 75
4440YYSIZE_T /usr/share/bison/bison.simple 76
4441yyss /usr/share/bison/bison.simple 85
4442yyss /usr/share/bison/bison.simple 86
4443YYSTACK_ALLOC /usr/share/bison/bison.simple 50
4444YYSTACK_ALLOC /usr/share/bison/bison.simple 51
4445YYSTACK_ALLOC /usr/share/bison/bison.simple 55
4446YYSTACK_ALLOC /usr/share/bison/bison.simple 56
4447YYSTACK_ALLOC /usr/share/bison/bison.simple 59
4448YYSTACK_ALLOC /usr/share/bison/bison.simple 60
4449YYSTACK_ALLOC /usr/share/bison/bison.simple 78
4450YYSTACK_ALLOC /usr/share/bison/bison.simple 79
4451YYSTACK_BYTES /usr/share/bison/bison.simple /^# define YYSTACK_BYTES(N) \\$/
4452YYSTACK_FREE /usr/share/bison/bison.simple 79
4453YYSTACK_FREE /usr/share/bison/bison.simple 80
4454YYSTACK_FREE /usr/share/bison/bison.simple /^# define YYSTACK_FREE(Ptr) do { \/* empty *\/; } wh/
4455YYSTACK_GAP_MAX /usr/share/bison/bison.simple 93
4456YYSTACK_GAP_MAX /usr/share/bison/bison.simple 94
4457YYSTACK_RELOCATE /usr/share/bison/bison.simple 548
4458YYSTACK_RELOCATE /usr/share/bison/bison.simple /^# define YYSTACK_RELOCATE(Type, Stack) \\$/
4459yystate /usr/share/bison/bison.simple 757
4460yystate /usr/share/bison/bison.simple 761
4461yystate /usr/share/bison/bison.simple 875
4462yystate /usr/share/bison/bison.simple 924
4463YYSTD /usr/share/bison/bison.simple /^# define YYSTD(x) std::x$/
4464YYSTD /usr/share/bison/bison.simple /^# define YYSTD(x) x$/
4465yystpcpy /usr/share/bison/bison.simple 316
4466yystpcpy /usr/share/bison/bison.simple 317
4467yystpcpy /usr/share/bison/bison.simple /^yystpcpy (char *yydest, const char *yysrc)$/
4468yystrlen /usr/share/bison/bison.simple 293
4469yystrlen /usr/share/bison/bison.simple 294
4470yystrlen /usr/share/bison/bison.simple /^yystrlen (const char *yystr)$/
4471YYSTYPE y-src/parse.y 72
4472YYSTYPE y-src/parse.y 73
4473YYTERROR /usr/share/bison/bison.simple 177
4474YYTERROR /usr/share/bison/bison.simple 178
4475yyvsp /usr/share/bison/bison.simple 746
4476yyvsp /usr/share/bison/bison.simple 919
4477yyvs /usr/share/bison/bison.simple 86
4478yyvs /usr/share/bison/bison.simple 87
4479z c.c 144
4480z c.c 164
4481z cp-src/clheir.hpp 49
4482z cp-src/clheir.hpp 58
4483Z c-src/h.h 100
4484/Z ps-src/rfc1245.ps /^\/Z {$/
diff --git a/test/manual/etags/CTAGS.good_update b/test/manual/etags/CTAGS.good_update
new file mode 100644
index 00000000000..e81bfa5a77e
--- /dev/null
+++ b/test/manual/etags/CTAGS.good_update
@@ -0,0 +1,4483 @@
1
2($_,$flag,$opt,$f,$r,@temp perl-src/yagrip.pl 8
3$0x80 c-src/sysdep.h 32
4${CHECKOBJS} make-src/Makefile /^${CHECKOBJS}: CFLAGS=-g3 -DNULLFREECHECK=0$/
5$domain php-src/lce_functions.php 175
6$filename php-src/lce_functions.php 174
7$ignore_ws php-src/lce_functions.php 171
8$memassign php-src/ptest.php 9
9$memassign_space php-src/ptest.php 10
10$member php-src/ptest.php 8
11$msgid_lc php-src/lce_functions.php 113
12$msgid php-src/lce_functions.php 107
13$msgid php-src/lce_functions.php 165
14$msgstr_lc php-src/lce_functions.php 114
15$msgstr php-src/lce_functions.php 108
16$msgstr php-src/lce_functions.php 166
17$po_entries php-src/lce_functions.php 172
18$poe_num php-src/lce_functions.php 173
19$por_a php-src/lce_functions.php 500
20$prefix php-src/lce_functions.php 72
21($prog,$_,@list perl-src/yagrip.pl 39
22$state php-src/lce_functions.php 170
23($string,$flag,@string,@temp,@last perl-src/yagrip.pl 40
24$sys_comment_lc php-src/lce_functions.php 116
25$sys_comment php-src/lce_functions.php 110
26$sys_comment php-src/lce_functions.php 168
27$SYS_##syscall_na c-src/sysdep.h 31
28$test php-src/ptest.php 12
29$unk_comment_lc php-src/lce_functions.php 117
30$unk_comment php-src/lce_functions.php 111
31$unk_comment php-src/lce_functions.php 169
32$user_comment_lc php-src/lce_functions.php 115
33$user_comment php-src/lce_functions.php 109
34$user_comment php-src/lce_functions.php 167
352const forth-src/test-forth.fth /^3 4 2constant 2const$/
362val forth-src/test-forth.fth /^2const 2value 2val$/
372var forth-src/test-forth.fth /^2variable 2var$/
38a0 c-src/emacs/src/lisp.h /^ Lisp_Object (*a0) (void);$/
39a1 c-src/emacs/src/lisp.h /^ Lisp_Object (*a1) (Lisp_Object);$/
40a2 c-src/emacs/src/lisp.h /^ Lisp_Object (*a2) (Lisp_Object, Lisp_Object)/
41a3 c-src/emacs/src/lisp.h /^ Lisp_Object (*a3) (Lisp_Object, Lisp_Object,/
42a4 c-src/emacs/src/lisp.h /^ Lisp_Object (*a4) (Lisp_Object, Lisp_Object,/
43a5 c-src/emacs/src/lisp.h /^ Lisp_Object (*a5) (Lisp_Object, Lisp_Object,/
44a6 c-src/emacs/src/lisp.h /^ Lisp_Object (*a6) (Lisp_Object, Lisp_Object,/
45a7 c-src/emacs/src/lisp.h /^ Lisp_Object (*a7) (Lisp_Object, Lisp_Object,/
46a8 c-src/emacs/src/lisp.h /^ Lisp_Object (*a8) (Lisp_Object, Lisp_Object,/
47aaaaaa c-src/h.h 111
48aaa c.c 249
49aaa c.c 269
50aa c.c 269
51aa c.c 279
52abbrev_all_caps c-src/abbrev.c 58
53abbrev-expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/
54abbrevs_changed c-src/abbrev.c 56
55abbrev-symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/
56abc c-src/h.h 33
57abc c-src/h.h 37
58ABC ruby-src/test1.ru 11
59Abort_Handler_Pointer/t ada-src/2ataspri.ads /^ type Abort_Handler_Pointer is access procedure /
60abort-recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("abort-recursive-edit", Fabort_recursive_ed/
61Abort_Task/p ada-src/2ataspri.adb /^ procedure Abort_Task (T : TCB_Ptr) is$/
62Abort_Task/p ada-src/2ataspri.ads /^ procedure Abort_Task (T : TCB_Ptr);$/
63Abort_Wrapper/p ada-src/2ataspri.adb /^ procedure Abort_Wrapper$/
64\aboveenvbreak tex-src/texinfo.tex /^\\def\\aboveenvbreak{{\\advance\\aboveenvskipamount by/
65abs/f ada-src/etags-test-for.ada /^ function "abs" (Right : Complex) return Real'/
66absolute_dirname c-src/etags.c /^absolute_dirname (char *file, char *dir)$/
67absolute_filename c-src/etags.c /^absolute_filename (char *file, char *dir)$/
68abt cp-src/c.C 55
69a c.c 152
70A c.c 162
71a c.c 180
72a c.c /^a ()$/
73a c.c /^a()$/
74accent_key_syms c-src/emacs/src/keyboard.c 4625
75access_keymap_keyremap c-src/emacs/src/keyboard.c /^access_keymap_keyremap (Lisp_Object map, Lisp_Obje/
76acc_pred_info merc-src/accumulator.m /^:- pred acc_pred_info(list(mer_type)::in, list(pro/
77acc_proc_info merc-src/accumulator.m /^:- pred acc_proc_info(list(prog_var)::in, prog_var/
78accu_assoc merc-src/accumulator.m /^:- pred accu_assoc(module_info::in, vartypes::in, /
79accu_assoc merc-src/accumulator.m /^:- type accu_assoc$/
80accu_base merc-src/accumulator.m /^:- type accu_base$/
81accu_before merc-src/accumulator.m /^:- pred accu_before(module_info::in, vartypes::in,/
82accu_case merc-src/accumulator.m /^:- type accu_case$/
83accu_construct_assoc merc-src/accumulator.m /^:- pred accu_construct_assoc(module_info::in, vart/
84accu_construct merc-src/accumulator.m /^:- pred accu_construct(module_info::in, vartypes::/
85accu_create_goal merc-src/accumulator.m /^:- pred accu_create_goal(accu_goal_id::in, list(pr/
86accu_divide_base_case merc-src/accumulator.m /^:- pred accu_divide_base_case(module_info::in, var/
87accu_goal_id merc-src/accumulator.m /^:- type accu_goal_id$/
88accu_goal_list merc-src/accumulator.m /^:- func accu_goal_list(list(accu_goal_id), accu_go/
89accu_goal_store merc-src/accumulator.m /^:- type accu_goal_store == goal_store(accu_goal_id/
90accu_has_heuristic merc-src/accumulator.m /^:- pred accu_has_heuristic(module_name::in, string/
91accu_heuristic merc-src/accumulator.m /^:- pred accu_heuristic(module_name::in, string::in/
92accu_is_associative merc-src/accumulator.m /^:- pred accu_is_associative(module_info::in, pred_/
93accu_is_update merc-src/accumulator.m /^:- pred accu_is_update(module_info::in, pred_id::i/
94acc_unification merc-src/accumulator.m /^:- pred acc_unification(pair(prog_var)::in, hlds_g/
95accu_process_assoc_set merc-src/accumulator.m /^:- pred accu_process_assoc_set(module_info::in, ac/
96accu_process_update_set merc-src/accumulator.m /^:- pred accu_process_update_set(module_info::in, a/
97accu_related merc-src/accumulator.m /^:- pred accu_related(module_info::in, vartypes::in/
98accu_rename merc-src/accumulator.m /^:- func accu_rename(list(accu_goal_id), accu_subst/
99accu_sets_init merc-src/accumulator.m /^:- pred accu_sets_init(accu_sets::out) is det.$/
100accu_sets merc-src/accumulator.m /^:- type accu_sets$/
101accu_stage1_2 merc-src/accumulator.m /^:- pred accu_stage1_2(module_info::in, vartypes::i/
102accu_stage1 merc-src/accumulator.m /^:- pred accu_stage1(module_info::in, vartypes::in,/
103accu_stage2 merc-src/accumulator.m /^:- pred accu_stage2(module_info::in, proc_info::in/
104accu_stage3 merc-src/accumulator.m /^:- pred accu_stage3(accu_goal_id::in, list(prog_va/
105accu_standardize merc-src/accumulator.m /^:- pred accu_standardize(hlds_goal::in, hlds_goal:/
106accu_store merc-src/accumulator.m /^:- pred accu_store(accu_case::in, hlds_goal::in,$/
107accu_subst merc-src/accumulator.m /^:- type accu_subst == map(prog_var, prog_var).$/
108accu_substs_init merc-src/accumulator.m /^:- pred accu_substs_init(list(prog_var)::in, prog_/
109accu_substs merc-src/accumulator.m /^:- type accu_substs$/
110accu_top_level merc-src/accumulator.m /^:- pred accu_top_level(top_level::in, hlds_goal::i/
111accu_transform_proc merc-src/accumulator.m /^:- pred accu_transform_proc(pred_proc_id::in, pred/
112accu_update merc-src/accumulator.m /^:- pred accu_update(module_info::in, vartypes::in,/
113accu_warning merc-src/accumulator.m /^:- type accu_warning$/
114acc_var_subst_init merc-src/accumulator.m /^:- pred acc_var_subst_init(list(prog_var)::in,$/
115/Acircumflex ps-src/rfc1245.ps /^\/Acircumflex \/Ecircumflex \/Aacute \/Edieresis \/Egra/
116A cp-src/c.C 117
117a cp-src/c.C 132
118A cp-src/c.C 39
119A cp-src/c.C 56
120A cp-src/c.C 57
121A cp-src/c.C 73
122~A cp-src/c.C /^A::~A() {}$/
123A cp-src/c.C /^void A::A() {}$/
124A cp-src/fail.C 23
125A cp-src/fail.C 7
126a c-src/h.h 103
127a c-src/h.h 40
128action prol-src/natded.prolog /^action(KeyVals):-$/
129\activedoublequote tex-src/texinfo.tex /^\\def\\activedoublequote{{\\tt \\char '042}}$/
130active_maps c-src/emacs/src/keyboard.c /^active_maps (Lisp_Object first_event)$/
131\activeparens tex-src/texinfo.tex /^\\def\\activeparens{%$/
132actout prol-src/natded.prolog /^actout('Text',Trees):-$/
133act prol-src/natded.prolog /^act(OutForm,OutSyn,Ws):-$/
134Ada_funcs c-src/etags.c /^Ada_funcs (FILE *inf)$/
135Ada_getit c-src/etags.c /^Ada_getit (FILE *inf, const char *name_qualifier)$/
136Ada_help c-src/etags.c 475
137ADASRC make-src/Makefile /^ADASRC=etags-test-for.ada 2ataspri.adb 2ataspri.ad/
138Ada_suffixes c-src/etags.c 473
139add_active prol-src/natded.prolog /^add_active([],Cat,Goal):-$/
140addArchs objc-src/PackInsp.m /^-(void)addArchs:(const char *)string$/
141add_command_key c-src/emacs/src/keyboard.c /^add_command_key (Lisp_Object key)$/
142add_edge prol-src/natded.prolog /^add_edge(Left,Right,Cat):-$/
143add_node c-src/etags.c /^add_node (node *np, node **cur_node_p)$/
144addnoise html-src/algrthms.html /^Adding Noise to the$/
145AddNullToNmStr pas-src/common.pas /^function AddNullToNmStr; (*($/
146addPOReader php-src/lce_functions.php /^ function addPOReader($d_name, &$por)$/
147add_regex c-src/etags.c /^add_regex (char *regexp_pattern, language *lang)$/
148ADDRESS c-src/emacs/src/gmalloc.c /^#define ADDRESS(B) ((void *) (((B) - 1) * BLOCKSIZ/
149Address_To_Call_State/f ada-src/2ataspri.adb /^ function Address_To_Call_State is new$/
150Address_To_TCB_Ptr/f ada-src/2ataspri.ads /^ function Address_To_TCB_Ptr is new$/
151address y-src/cccp.y 113
152add_user_signal c-src/emacs/src/keyboard.c /^add_user_signal (int sig, const char *name)$/
153#a-defer-word forth-src/test-forth.fth /^defer #a-defer-word$/
154adjust_point_for_property c-src/emacs/src/keyboard.c /^adjust_point_for_property (ptrdiff_t last_pt, bool/
155Advanced usage tex-src/gzip.texi /^@node Advanced usage, Environment, Invoking gzip, /
156a-forth-constant! forth-src/test-forth.fth /^99 constant a-forth-constant!$/
157(a-forth-constant forth-src/test-forth.fth /^constant (a-forth-constant$/
158:a-forth-dictionary-entry forth-src/test-forth.fth /^create :a-forth-dictionary-entry$/
159a-forth-value? forth-src/test-forth.fth /^55 value a-forth-value?$/
160a-forth-word forth-src/test-forth.fth /^: a-forth-word ( a b c -- )$/
161a-forth-word forth-src/test-forth.fth /^: a-forth-word ( a b c -- a*b+c ) + * ;$/
162\afourpaper tex-src/texinfo.tex /^\\def\\afourpaper{$/
163\afterenvbreak tex-src/texinfo.tex /^\\def\\afterenvbreak{\\endgraf \\ifdim\\lastskip<\\above/
164agent cp-src/clheir.hpp 75
165algorithms html-src/algrthms.html /^Description$/
166alias c-src/emacs/src/lisp.h 688
167alignas c-src/emacs/src/lisp.h /^# define alignas(alignment) \/* empty *\/$/
168align c-src/emacs/src/gmalloc.c /^align (size_t size)$/
169aligned_alloc c-src/emacs/src/gmalloc.c 1718
170aligned_alloc c-src/emacs/src/gmalloc.c 71
171aligned_alloc c-src/emacs/src/gmalloc.c /^aligned_alloc (size_t alignment, size_t size)$/
172_aligned_blocks c-src/emacs/src/gmalloc.c 1004
173_aligned_blocks_mutex c-src/emacs/src/gmalloc.c 518
174Aligned_Cons c-src/emacs/src/lisp.h 4670
175aligned c-src/emacs/src/gmalloc.c 199
176Aligned_String c-src/emacs/src/lisp.h 4676
177alignlist c-src/emacs/src/gmalloc.c 196
178ALIGNOF_STRUCT_LISP_VECTOR c-src/emacs/src/lisp.h 1378
179alive cp-src/conway.hpp 7
180all_kboards c-src/emacs/src/keyboard.c 86
181ALLOCATED_BEFORE_DUMPING c-src/emacs/src/gmalloc.c /^#define ALLOCATED_BEFORE_DUMPING(P) \\$/
182allocated c-src/emacs/src/regex.h 344
183allocate_kboard c-src/emacs/src/keyboard.c /^allocate_kboard (Lisp_Object type)$/
184ALLOCATE_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define ALLOCATE_PSEUDOVECTOR(type, field, tag) /
185ALLOCATE_ZEROED_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define ALLOCATE_ZEROED_PSEUDOVECTOR(type, field, /
186\alphaenumerate tex-src/texinfo.tex /^\\def\\alphaenumerate{\\enumerate{a}}$/
187aMANY c-src/emacs/src/lisp.h /^ Lisp_Object (*aMANY) (ptrdiff_t, Lisp_Object/
188analyze_regex c-src/etags.c /^analyze_regex (char *regex_arg)$/
189andkeyvalseq prol-src/natded.prolog /^andkeyvalseq(KeyVals) --> ['&'], keyvalseq(KeyVals/
190AND y-src/cccp.c 11
191an_extern_linkage c-src/h.h 44
192an_extern_linkage c-src/h.h 56
193an_extern_linkage_ptr c-src/h.h 43
194animals cp-src/c.C 126
195animals cp-src/c.C 130
196animals c-src/h.h 81
197(another-forth-word) forth-src/test-forth.fth /^: (another-forth-word) ( -- )$/
198ANSIC c-src/h.h 84
199ANSIC c-src/h.h 85
200any_kboard_state c-src/emacs/src/keyboard.c /^any_kboard_state ()$/
201appDidInit objcpp-src/SimpleCalc.M /^- appDidInit:sender$/
202\appendixletter tex-src/texinfo.tex /^\\def\\appendixletter{\\char\\the\\appendixno}$/
203appendix_name perl-src/htlmify-cystic 13
204\appendixnoderef tex-src/texinfo.tex /^\\def\\appendixnoderef{\\ifx\\lastnode\\relax\\else$/
205appendix perl-src/htlmify-cystic 24
206\appendixsec tex-src/texinfo.tex /^\\outer\\def\\appendixsec{\\parsearg\\appendixsectionzz/
207\appendixsection tex-src/texinfo.tex /^\\outer\\def\\appendixsection{\\parsearg\\appendixsecti/
208\appendixsectionzzz tex-src/texinfo.tex /^\\def\\appendixsectionzzz #1{\\seccheck{appendixsecti/
209\appendixsetref tex-src/texinfo.tex /^\\def\\appendixsetref#1{%$/
210\appendixsubsec tex-src/texinfo.tex /^\\outer\\def\\appendixsubsec{\\parsearg\\appendixsubsec/
211\appendixsubseczzz tex-src/texinfo.tex /^\\def\\appendixsubseczzz #1{\\seccheck{appendixsubsec/
212\appendixsubsubsec tex-src/texinfo.tex /^\\outer\\def\\appendixsubsubsec{\\parsearg\\appendixsub/
213\appendixsubsubseczzz tex-src/texinfo.tex /^\\def\\appendixsubsubseczzz #1{\\seccheck{appendixsub/
214\appendix tex-src/texinfo.tex /^\\outer\\def\\appendix{\\parsearg\\appendixzzz}$/
215appendix_toc perl-src/htlmify-cystic 16
216\appendixzzz tex-src/texinfo.tex /^\\def\\appendixzzz #1{\\seccheck{appendix}%$/
217append_list prol-src/natded.prolog /^append_list([],[]).$/
218append prol-src/natded.prolog /^append([],Xs,Xs).$/
219append_string pas-src/common.pas /^procedure append_string;(*($/
220AppendTextString pas-src/common.pas /^function AppendTextString;(*($/
221appendToDisplay objcpp-src/SimpleCalc.M /^- appendToDisplay:(const char *)theDigit$/
222append_tool_bar_item c-src/emacs/src/keyboard.c /^append_tool_bar_item (void)$/
223apply_modifiers c-src/emacs/src/keyboard.c /^apply_modifiers (int modifiers, Lisp_Object base)$/
224apply_modifiers_uncached c-src/emacs/src/keyboard.c /^apply_modifiers_uncached (int modifiers, char *bas/
225/A ps-src/rfc1245.ps /^\/A { $/
226aref_addr c-src/emacs/src/lisp.h /^aref_addr (Lisp_Object array, ptrdiff_t idx)$/
227AREF c-src/emacs/src/lisp.h /^AREF (Lisp_Object array, ptrdiff_t idx)$/
228arg c-src/emacs/src/lisp.h 2961
229arg c-src/emacs/src/lisp.h 2966
230arg c-src/emacs/src/lisp.h 2971
231arg c-src/h.h 13
232arglist y-src/cccp.y 41
233argno y-src/cccp.y 45
234args c-src/emacs/src/lisp.h 2986
235args c-src/h.h 30
236argsindent tex-src/texinfo.tex /^\\dimen1=\\hsize \\advance \\dimen1 by -\\defargsindent/
237argsindent tex-src/texinfo.tex /^\\newskip\\defargsindent \\defargsindent=50pt$/
238argsindent tex-src/texinfo.tex /^\\parshape 2 0in \\dimen0 \\defargsindent \\dimen1 /
239ARGS make-src/Makefile /^ARGS=- < srclist$/
240arg_type c-src/etags.c 250
241argument c-src/etags.c 253
242argvals prol-src/natded.prolog /^argvals([]) --> [].$/
243Arith_Comparison c-src/emacs/src/lisp.h 3497
244ARITH_EQUAL c-src/emacs/src/lisp.h 3498
245ARITH_GRTR c-src/emacs/src/lisp.h 3501
246ARITH_GRTR_OR_EQUAL c-src/emacs/src/lisp.h 3503
247ARITH_LESS c-src/emacs/src/lisp.h 3500
248ARITH_LESS_OR_EQUAL c-src/emacs/src/lisp.h 3502
249ARITH_NOTEQUAL c-src/emacs/src/lisp.h 3499
250array c.c 190
251ARRAYELTS c-src/emacs/src/lisp.h /^#define ARRAYELTS(arr) (sizeof (arr) \/ sizeof (arr/
252ARRAY_MARK_FLAG c-src/emacs/src/lisp.h 768
253ARRAYP c-src/emacs/src/lisp.h /^ARRAYP (Lisp_Object x)$/
254A ruby-src/test1.ru /^class A$/
255a ruby-src/test1.ru /^ def a()$/
256A ruby-src/test1.ru /^module A$/
257ASCII_CHAR_P c-src/emacs/src/lisp.h /^#define ASCII_CHAR_P(c) UNSIGNED_CMP (c, <, 0x80)$/
258ascii c-src/emacs/src/lisp.h 1598
259ASET c-src/emacs/src/lisp.h /^ASET (Lisp_Object array, ptrdiff_t idx, Lisp_Objec/
260\asis tex-src/texinfo.tex /^\\def\\asis#1{#1}$/
261ASIZE c-src/emacs/src/lisp.h /^ASIZE (Lisp_Object array)$/
262Asm_help c-src/etags.c 504
263Asm_labels c-src/etags.c /^Asm_labels (FILE *inf)$/
264Asm_suffixes c-src/etags.c 493
265asort cp-src/functions.cpp /^void asort(int *a, int num){$/
266ASRC make-src/Makefile /^ASRC=empty.zz empty.zz.gz$/
267assemby-code-word forth-src/test-forth.fth /^code assemby-code-word ( dunno what it does )$/
268assert c-src/etags.c 135
269assert c-src/etags.c /^# define assert(x) ((void) 0)$/
270assign_neighbor cp-src/clheir.hpp /^ void assign_neighbor(int direction, location */
271associativity_assertion merc-src/accumulator.m /^:- pred associativity_assertion(module_info::in, l/
272assoc_list merc-src/accumulator.m /^:- import_module assoc_list.$/
273AST_Array::AST_Array cp-src/c.C /^AST_Array::AST_Array(UTL_ScopedName *n, unsigned l/
274AST_ConcreteType::AST_ConcreteType cp-src/c.C /^AST_ConcreteType::AST_ConcreteType(AST_Decl::NodeT/
275AST_Root cp-src/c.C 92
276AT cp-src/c.C 52
277at_end c-src/etags.c 249
278at_filename c-src/etags.c 247
279/atilde ps-src/rfc1245.ps /^\/atilde \/aring \/ccedilla \/eacute \/egrave \/ecircumf/
280at_language c-src/etags.c 245
281at_least_one_member prol-src/natded.prolog /^at_least_one_member(X,[X|_]):-!.$/
282atom prol-src/natded.prolog /^atom(X) --> [X], {atomic(X)}.$/
283atomval prol-src/natded.prolog /^atomval(X) --> atom(X).$/
284at_regexp c-src/etags.c 246
285at_stdin c-src/etags.c 248
286AU cp-src/c.C 53
287aultparindent\hang\textindent tex-src/texinfo.tex /^\\footstrut\\parindent=\\defaultparindent\\hang\\textin/
288aultparindent tex-src/texinfo.tex /^\\newdimen\\defaultparindent \\defaultparindent = 15p/
289aultparindent tex-src/texinfo.tex /^\\parindent = \\defaultparindent$/
290aUNEVALLED c-src/emacs/src/lisp.h /^ Lisp_Object (*aUNEVALLED) (Lisp_Object args)/
291\authorfont tex-src/texinfo.tex /^ \\def\\authorfont{\\authorrm \\normalbaselineskip =/
292\author tex-src/texinfo.tex /^ \\def\\author{\\parsearg\\authorzzz}%$/
293\authorzzz tex-src/texinfo.tex /^ \\def\\authorzzz##1{\\ifseenauthor\\else\\vskip 0pt /
294AUTO_CONS c-src/emacs/src/lisp.h /^#define AUTO_CONS(name, a, b) Lisp_Object name = A/
295AUTO_CONS_EXPR c-src/emacs/src/lisp.h /^#define AUTO_CONS_EXPR(a, b) \\$/
296auto_help c-src/etags.c 699
297AUTO_LIST1 c-src/emacs/src/lisp.h /^#define AUTO_LIST1(name, a) \\$/
298AUTO_LIST2 c-src/emacs/src/lisp.h /^#define AUTO_LIST2(name, a, b) \\$/
299AUTO_LIST3 c-src/emacs/src/lisp.h /^#define AUTO_LIST3(name, a, b, c) \\$/
300AUTO_LIST4 c-src/emacs/src/lisp.h /^#define AUTO_LIST4(name, a, b, c, d) \\$/
301AUTOLOADP c-src/emacs/src/lisp.h /^AUTOLOADP (Lisp_Object x)$/
302AUTO_STRING c-src/emacs/src/lisp.h /^#define AUTO_STRING(name, str) \\$/
303AVAIL_ALLOCA c-src/emacs/src/lisp.h /^#define AVAIL_ALLOCA(size) (sa_avail -= (size), al/
304backslash=0 tex-src/texinfo.tex /^\\let\\indexbackslash=0 %overridden during \\printin/
305\balancecolumns tex-src/texinfo.tex /^\\def\\balancecolumns{%$/
306bar1 ruby-src/test1.ru /^ attr_reader(:foo1, :bar1, # comment$/
307bar c.c 143
308bar cp-src/x.cc /^XX::bar()$/
309bar c-src/c.c /^void bar() {while(0) {}}$/
310bar c-src/h.h 19
311Bar lua-src/test.lua /^function Square.something:Bar ()$/
312Bar perl-src/kai-test.pl /^package Bar;$/
313Barrier_Function_Pointer/t ada-src/etags-test-for.ada /^ type Barrier_Function_Pointer is access$/
314bar= ruby-src/test1.ru /^ attr_writer :bar,$/
315_bar? ruby-src/test1.ru /^ def self._bar?(abc)$/
316base_case_ids merc-src/accumulator.m /^:- func base_case_ids(accu_goal_store) = list(accu/
317base_case_ids_set merc-src/accumulator.m /^:- func base_case_ids_set(accu_goal_store) = set(a/
318base cp-src/c.C /^double base (void) const { return rng_base; }$/
319base cp-src/Range.h /^ double base (void) const { return rng_base; }$/
320base c-src/emacs/src/lisp.h 2188
321bas_syn prol-src/natded.prolog /^bas_syn(n(_)).$/
322baz= ruby-src/test1.ru /^ :baz,$/
323bbbbbb c-src/h.h 113
324bbb c.c 251
325bb c.c 275
326b c.c 180
327b c.c 259
328b c.c 260
329b c.c 262
330b c.c /^b ()$/
331B cp-src/c.C 122
332b cp-src/c.C 132
333B cp-src/c.C 54
334B cp-src/c.C 56
335B cp-src/c.C 74
336~B cp-src/c.C /^ ~B() {};$/
337B cp-src/c.C /^void B::B() {}$/
338B cp-src/fail.C 24
339B cp-src/fail.C 8
340b c-src/h.h 103
341b c-src/h.h 104
342b c-src/h.h 41
343been_warned c-src/etags.c 222
344before_command_echo_length c-src/emacs/src/keyboard.c 130
345before_command_key_count c-src/emacs/src/keyboard.c 129
346/BEGINBITMAP2BITc ps-src/rfc1245.ps /^\/BEGINBITMAP2BITc { $/
347/BEGINBITMAP2BIT ps-src/rfc1245.ps /^\/BEGINBITMAP2BIT { $/
348/BEGINBITMAPBWc ps-src/rfc1245.ps /^\/BEGINBITMAPBWc { $/
349/BEGINBITMAPBW ps-src/rfc1245.ps /^\/BEGINBITMAPBW { $/
350/BEGINBITMAPGRAYc ps-src/rfc1245.ps /^\/BEGINBITMAPGRAYc { $/
351/BEGINBITMAPGRAY ps-src/rfc1245.ps /^\/BEGINBITMAPGRAY { $/
352\begindoublecolumns tex-src/texinfo.tex /^\\def\\begindoublecolumns{\\begingroup$/
353/BEGINPRINTCODE ps-src/rfc1245.ps /^\/BEGINPRINTCODE { $/
354\begin tex-src/texinfo.tex /^\\outer\\def\\begin{\\parsearg\\beginxxx}$/
355\beginxxx tex-src/texinfo.tex /^\\def\\beginxxx #1{%$/
356begtoken c-src/etags.c /^#define begtoken(c) (_btk[CHAR (c)]) \/* c can star/
357behaviour_info erl-src/gs_dialog.erl /^behaviour_info(callbacks) ->$/
358BE_Node cp-src/c.C 77
359BE_Node cp-src/c.C /^void BE_Node::BE_Node() {}$/
360bf=cmbx10 tex-src/texinfo.tex /^\\font\\defbf=cmbx10 scaled \\magstep1 %was 1314$/
361/BF ps-src/rfc1245.ps /^\/BF { $/
362\bf tex-src/texinfo.tex /^\\def\\bf{\\realbackslash bf }%$/
363\bf tex-src/texinfo.tex /^\\def\\bf{\\realbackslash bf }$/
364Bidule/b ada-src/etags-test-for.ada /^ protected body Bidule is$/
365Bidule/b ada-src/waroquiers.ada /^ protected body Bidule is$/
366Bidule/t ada-src/etags-test-for.ada /^ protected Bidule is$/
367Bidule/t ada-src/waroquiers.ada /^ protected Bidule is$/
368bind_polling_period c-src/emacs/src/keyboard.c /^bind_polling_period (int n)$/
369bind pyt-src/server.py /^ def bind(self, key, action):$/
370/BITMAPCOLORc ps-src/rfc1245.ps /^\/BITMAPCOLORc { $/
371/BITMAPCOLOR ps-src/rfc1245.ps /^\/BITMAPCOLOR { $/
372/BITMAPGRAYc ps-src/rfc1245.ps /^\/BITMAPGRAYc { $/
373/BITMAPGRAY ps-src/rfc1245.ps /^\/BITMAPGRAY { $/
374BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 125
375BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 129
376BITS_PER_CHAR c-src/emacs/src/lisp.h 136
377BITS_PER_EMACS_INT c-src/emacs/src/lisp.h 139
378BITS_PER_LONG c-src/emacs/src/lisp.h 138
379BITS_PER_SHORT c-src/emacs/src/lisp.h 137
380bits_word c-src/emacs/src/lisp.h 123
381bits_word c-src/emacs/src/lisp.h 127
382BITS_WORD_MAX c-src/emacs/src/lisp.h 124
383BITS_WORD_MAX c-src/emacs/src/lisp.h 128
384bla c.c /^int bla ()$/
385BLACK cp-src/screen.hpp 12
386blah tex-src/testenv.tex /^\\section{blah}$/
387bletch el-src/TAGTEST.EL /^(foo::defmumble bletch beuarghh)$/
388BLOCK c-src/emacs/src/gmalloc.c /^#define BLOCK(A) (((char *) (A) - _heapbase) \/ BLO/
389BLOCKIFY c-src/emacs/src/gmalloc.c /^#define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) \//
390BLOCKLOG c-src/emacs/src/gmalloc.c 125
391BLOCKSIZE c-src/emacs/src/gmalloc.c 126
392/bl ps-src/rfc1245.ps /^\/bl { $/
393BLUE cp-src/screen.hpp 13
394blv c-src/emacs/src/lisp.h 689
395blv_found c-src/emacs/src/lisp.h /^blv_found (struct Lisp_Buffer_Local_Value *blv)$/
396bodyindent tex-src/texinfo.tex /^\\advance\\dimen2 by -\\defbodyindent$/
397bodyindent tex-src/texinfo.tex /^\\advance\\dimen3 by -\\defbodyindent$/
398bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by -\\defbodyindent$/
399bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by \\defbodyindent \\advance \\righ/
400bodyindent tex-src/texinfo.tex /^\\exdentamount=\\defbodyindent$/
401bodyindent tex-src/texinfo.tex /^\\newskip\\defbodyindent \\defbodyindent=.4in$/
402Body_Required/f ada-src/etags-test-for.ada /^ function Body_Required$/
403Boo::Boo cp-src/c.C /^Boo::Boo(Boo) :$/
404Boo cp-src/c.C 129
405Boo cp-src/c.C /^ Boo(int _i, int _a, int _b) : i(_i), a(_a), b(/
406bool c.c 222
407bool_header_size c-src/emacs/src/lisp.h 1472
408bool merc-src/accumulator.m /^:- import_module bool.$/
409boolvar c-src/emacs/src/lisp.h 2287
410bool_vector_bitref c-src/emacs/src/lisp.h /^bool_vector_bitref (Lisp_Object a, EMACS_INT i)$/
411BOOL_VECTOR_BITS_PER_CHAR c-src/emacs/src/lisp.h 114
412BOOL_VECTOR_BITS_PER_CHAR c-src/emacs/src/lisp.h 115
413bool_vector_bytes c-src/emacs/src/lisp.h /^bool_vector_bytes (EMACS_INT size)$/
414bool_vector_data c-src/emacs/src/lisp.h /^bool_vector_data (Lisp_Object a)$/
415BOOL_VECTOR_P c-src/emacs/src/lisp.h /^BOOL_VECTOR_P (Lisp_Object a)$/
416bool_vector_ref c-src/emacs/src/lisp.h /^bool_vector_ref (Lisp_Object a, EMACS_INT i)$/
417bool_vector_set c-src/emacs/src/lisp.h /^bool_vector_set (Lisp_Object a, EMACS_INT i, bool /
418bool_vector_size c-src/emacs/src/lisp.h /^bool_vector_size (Lisp_Object a)$/
419bool_vector_uchar_data c-src/emacs/src/lisp.h /^bool_vector_uchar_data (Lisp_Object a)$/
420bool_vector_words c-src/emacs/src/lisp.h /^bool_vector_words (EMACS_INT size)$/
421/B ps-src/rfc1245.ps /^\/B { $/
422bracelev c-src/etags.c 2520
423/braceright ps-src/rfc1245.ps /^\/braceright \/asciitilde \/.notdef \/Adieresis \/Aring/
424/bracketright ps-src/rfc1245.ps /^\/bracketright \/asciicircum \/underscore \/grave \/a \//
425/breve ps-src/rfc1245.ps /^\/breve \/dotaccent \/ring \/cedilla \/hungarumlaut \/og/
426BROWN cp-src/screen.hpp 18
427B ruby-src/test1.ru /^ class B$/
428b ruby-src/test1.ru /^ def b()$/
429bsp_DevId c-src/h.h 25
430bt c-src/emacs/src/lisp.h 2988
431\b tex-src/texinfo.tex /^\\def\\b#1{{\\bf #1}}$/
432\b tex-src/texinfo.tex /^\\def\\b##1{\\realbackslash b {##1}}%$/
433\b tex-src/texinfo.tex /^\\def\\b##1{\\realbackslash b {##1}}$/
434btowc c-src/emacs/src/regex.h /^# define btowc(c) c$/
435buffer c-src/emacs/src/lisp.h 2000
436buffer c-src/emacs/src/regex.h 341
437buffer c-src/etags.c 238
438buffer c-src/h.h 119
439BUFFER_OBJFWDP c-src/emacs/src/lisp.h /^BUFFER_OBJFWDP (union Lisp_Fwd *a)$/
440BUFFERP c-src/emacs/src/lisp.h /^BUFFERP (Lisp_Object a)$/
441BUFFERSIZE objc-src/Subprocess.h 43
442buildact prol-src/natded.prolog /^buildact([SynIn],Right,RightPlus1):-$/
443build prol-src/natded.prolog /^build([],Left,Left).$/
444build_pure_c_string c-src/emacs/src/lisp.h /^build_pure_c_string (const char *str)$/
445build_string c-src/emacs/src/lisp.h /^build_string (const char *str)$/
446builtin_lisp_symbol c-src/emacs/src/lisp.h /^builtin_lisp_symbol (int index)$/
447\bullet tex-src/texinfo.tex /^\\def\\bullet{$\\ptexbullet$}$/
448burst c-src/h.h 28
449busy c-src/emacs/src/gmalloc.c 158
450ButtonBar pyt-src/server.py /^def ButtonBar(frame, legend, ref, alternatives, co/
451button_down_location c-src/emacs/src/keyboard.c 5210
452button_down_time c-src/emacs/src/keyboard.c 5218
453\bye tex-src/texinfo.tex /^\\outer\\def\\bye{\\pagealignmacro\\tracingstats=1\\ptex/
454bytecode_dest c-src/emacs/src/lisp.h 3037
455bytecode_top c-src/emacs/src/lisp.h 3036
456BYTE_MARK_STACK c-src/emacs/src/lisp.h 3181
457bytepos c-src/emacs/src/lisp.h 2016
458bytes_free c-src/emacs/src/gmalloc.c 314
459_bytes_free c-src/emacs/src/gmalloc.c 376
460byte_stack c-src/emacs/src/lisp.h 3049
461bytes_total c-src/emacs/src/gmalloc.c 310
462bytes_used c-src/emacs/src/gmalloc.c 312
463_bytes_used c-src/emacs/src/gmalloc.c 374
464caccacacca c.c /^caccacacca (a,b,c,d,e,f,g)$/
465cacheLRUEntry_s c.c 172
466cacheLRUEntry_t c.c 177
467calculate_goal_info merc-src/accumulator.m /^:- pred calculate_goal_info(hlds_goal_expr::in, hl/
468CALLMANY c-src/emacs/src/lisp.h /^#define CALLMANY(f, array) (f) (ARRAYELTS (array),/
469CALLN c-src/emacs/src/lisp.h /^#define CALLN(f, ...) CALLMANY (f, ((Lisp_Object [/
470calloc c-src/emacs/src/gmalloc.c 1717
471calloc c-src/emacs/src/gmalloc.c 66
472calloc c-src/emacs/src/gmalloc.c 70
473calloc c-src/emacs/src/gmalloc.c /^calloc (size_t nmemb, size_t size)$/
474can_be_null c-src/emacs/src/regex.h 370
475cancel_echoing c-src/emacs/src/keyboard.c /^cancel_echoing (void)$/
476canonicalize_filename c-src/etags.c /^canonicalize_filename (register char *fn)$/
477\capsenumerate tex-src/texinfo.tex /^\\def\\capsenumerate{\\enumerate{A}}$/
478CAR c-src/emacs/src/lisp.h /^CAR (Lisp_Object c)$/
479CAR_SAFE c-src/emacs/src/lisp.h /^CAR_SAFE (Lisp_Object c)$/
480\cartbot tex-src/texinfo.tex /^\\def\\cartbot{\\hbox to \\cartouter{\\hskip\\lskip$/
481\cartouche tex-src/texinfo.tex /^\\long\\def\\cartouche{%$/
482\carttop tex-src/texinfo.tex /^\\def\\carttop{\\hbox to \\cartouter{\\hskip\\lskip$/
483case_Lisp_Int c-src/emacs/src/lisp.h 438
484cat_atoms prol-src/natded.prolog /^cat_atoms(A1,A2,A3):-$/
485CATCHER c-src/emacs/src/lisp.h 3021
486cat cp-src/c.C 126
487cat cp-src/c.C 130
488cat c-src/h.h 81
489cat prol-src/natded.prolog /^cat(A, Alpha@Beta, Ass3, Qs3, tree(fe,A:Alpha@Beta/
490C_AUTO c-src/etags.c 2198
491\cbl tex-src/texinfo.tex /^\\def\\cbl{{\\circle\\char'012\\hskip -6pt}}$/
492\cbr tex-src/texinfo.tex /^\\def\\cbr{{\\hskip 6pt\\circle\\char'011}}$/
493c c.c 180
494cccccccccc c-src/h.h 115
495C cp-src/fail.C 25
496C cp-src/fail.C 9
497C cp-src/fail.C /^ C(int i) {x = i;}$/
498c c-src/h.h 106
499c c-src/h.h /^#define c() d$/
500%cdiff make-src/Makefile /^%cdiff: CTAGS% CTAGS ${infiles}$/
501cdr c-src/emacs/src/lisp.h 1159
502CDR c-src/emacs/src/lisp.h /^CDR (Lisp_Object c)$/
503CDR_SAFE c-src/emacs/src/lisp.h /^CDR_SAFE (Lisp_Object c)$/
504cell y-src/parse.y 279
505\center tex-src/texinfo.tex /^\\def\\center{\\parsearg\\centerzzz}$/
506\centerzzz tex-src/texinfo.tex /^\\def\\centerzzz #1{{\\advance\\hsize by -\\leftskip$/
507C_entries c-src/etags.c /^C_entries (int c_ext, FILE *inf)$/
508C_EXT c-src/etags.c 2193
509c_ext c-src/etags.c 2271
510CFLAGS make-src/Makefile /^CFLAGS=${WARNINGS} -ansi -g3 # -pg -O$/
511/cfs ps-src/rfc1245.ps /^\/cfs { $/
512cgrep html-src/software.html /^cgrep$/
513chain c-src/emacs/src/lisp.h 1162
514chain c-src/emacs/src/lisp.h 2206
515chain c-src/emacs/src/lisp.h 2396
516chain_subst_2 merc-src/accumulator.m /^:- pred chain_subst_2(list(A)::in, map(A, B)::in, /
517chain_subst merc-src/accumulator.m /^:- func chain_subst(accu_subst, accu_subst) = accu/
518ChangeFileType pas-src/common.pas /^function ChangeFileType; (*(FileName : NameString;/
519\chapbreak tex-src/texinfo.tex /^\\def\\chapbreak{\\dobreak \\chapheadingskip {-4000}}$/
520\chapentryfonts tex-src/texinfo.tex /^\\def\\chapentryfonts{\\secfonts \\rm}$/
521\chapentry tex-src/texinfo.tex /^\\def\\chapentry#1#2#3{\\dochapentry{#2\\labelspace#1}/
522\chapfonts tex-src/texinfo.tex /^\\def\\chapfonts{%$/
523\CHAPFopen tex-src/texinfo.tex /^\\def\\CHAPFopen{$/
524\CHAPFplain tex-src/texinfo.tex /^\\def\\CHAPFplain{$/
525\chapheading tex-src/texinfo.tex /^\\def\\chapheading{\\parsearg\\chapheadingzzz}$/
526\chapheadingzzz tex-src/texinfo.tex /^\\def\\chapheadingzzz #1{\\chapbreak %$/
527\chapoddpage tex-src/texinfo.tex /^\\def\\chapoddpage{\\chappager \\ifodd\\pageno \\else \\h/
528\chappager tex-src/texinfo.tex /^\\def\\chappager{\\par\\vfill\\supereject}$/
529\CHAPPAGodd tex-src/texinfo.tex /^\\def\\CHAPPAGodd{$/
530\CHAPPAGoff tex-src/texinfo.tex /^\\def\\CHAPPAGoff{$/
531\CHAPPAGon tex-src/texinfo.tex /^\\def\\CHAPPAGon{$/
532\chapternofonts tex-src/texinfo.tex /^\\def\\chapternofonts{%$/
533\chapter tex-src/texinfo.tex /^\\outer\\def\\chapter{\\parsearg\\chapterzzz}$/
534\chapterzzz tex-src/texinfo.tex /^\\def\\chapterzzz #1{\\seccheck{chapter}%$/
535CHARACTERBITS c-src/emacs/src/lisp.h 2457
536CHAR_ALT c-src/emacs/src/lisp.h 2445
537CHAR_BIT c-src/emacs/src/lisp.h 2957
538CHAR_BIT c-src/emacs/src/lisp.h 2959
539CHAR_BIT c-src/emacs/src/lisp.h 2964
540CHAR_BIT c-src/emacs/src/lisp.h 2969
541CHAR_BIT c-src/emacs/src/lisp.h 2974
542CHAR_BIT c-src/emacs/src/lisp.h 2978
543CHAR_BIT c-src/emacs/src/lisp.h 2983
544char_bits c-src/emacs/src/lisp.h 2443
545CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 593
546CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 597
547CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 605
548CHAR c-src/etags.c /^#define CHAR(x) ((unsigned int)(x) & (CHARS - 1))/
549CHAR_CTL c-src/emacs/src/lisp.h 2449
550CHAR_HYPER c-src/emacs/src/lisp.h 2447
551CHAR_META c-src/emacs/src/lisp.h 2450
552CHAR_MODIFIER_MASK c-src/emacs/src/lisp.h 2452
553charpos c-src/emacs/src/lisp.h 2011
554CHARS c-src/etags.c 157
555charset_unibyte c-src/emacs/src/regex.h 410
556CHAR_SHIFT c-src/emacs/src/lisp.h 2448
557CHAR_SUPER c-src/emacs/src/lisp.h 2446
558CHAR_TABLE_EXTRA_SLOTS c-src/emacs/src/lisp.h /^CHAR_TABLE_EXTRA_SLOTS (struct Lisp_Char_Table *ct/
559CHAR_TABLE_P c-src/emacs/src/lisp.h /^CHAR_TABLE_P (Lisp_Object a)$/
560CHAR_TABLE_REF_ASCII c-src/emacs/src/lisp.h /^CHAR_TABLE_REF_ASCII (Lisp_Object ct, ptrdiff_t id/
561CHAR_TABLE_REF c-src/emacs/src/lisp.h /^CHAR_TABLE_REF (Lisp_Object ct, int idx)$/
562CHAR_TABLE_SET c-src/emacs/src/lisp.h /^CHAR_TABLE_SET (Lisp_Object ct, int idx, Lisp_Obje/
563char_table_specials c-src/emacs/src/lisp.h 1692
564CHAR_TABLE_STANDARD_SLOTS c-src/emacs/src/lisp.h 1697
565CHARTAB_SIZE_BITS_0 c-src/emacs/src/lisp.h 1567
566CHARTAB_SIZE_BITS_1 c-src/emacs/src/lisp.h 1568
567CHARTAB_SIZE_BITS_2 c-src/emacs/src/lisp.h 1569
568CHARTAB_SIZE_BITS_3 c-src/emacs/src/lisp.h 1570
569CHARTAB_SIZE_BITS c-src/emacs/src/lisp.h 1565
570\char tex-src/texinfo.tex /^\\def\\char{\\realbackslash char}%$/
571\char tex-src/texinfo.tex /^\\def\\char{\\realbackslash char}$/
572chartonmstr pas-src/common.pas /^function chartonmstr; (*($/
573CHAR_TYPE_SIZE y-src/cccp.y 87
574CHAR y-src/cccp.c 7
575CHECK_ARRAY c-src/emacs/src/lisp.h /^CHECK_ARRAY (Lisp_Object x, Lisp_Object predicate)/
576CHECK_BOOL_VECTOR c-src/emacs/src/lisp.h /^CHECK_BOOL_VECTOR (Lisp_Object x)$/
577CHECK_BUFFER c-src/emacs/src/lisp.h /^CHECK_BUFFER (Lisp_Object x)$/
578CHECK_CONS c-src/emacs/src/lisp.h /^CHECK_CONS (Lisp_Object x)$/
579check_cons_list c-src/emacs/src/lisp.h /^# define check_cons_list() lisp_h_check_cons_list/
580checker make-src/Makefile /^checker:$/
581CHECKFLAGS make-src/Makefile /^CHECKFLAGS=-DDEBUG -Wno-unused-function$/
582checkhdr c-src/emacs/src/gmalloc.c /^checkhdr (const struct hdr *hdr)$/
583checkiso html-src/software.html /^checkiso$/
584CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 571
585CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 572
586CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 579
587CHECK_LIST_CONS c-src/emacs/src/lisp.h /^# define CHECK_LIST_CONS(x, y) lisp_h_CHECK_LIST_C/
588CHECK_LIST c-src/emacs/src/lisp.h /^CHECK_LIST (Lisp_Object x)$/
589CHECK_NATNUM c-src/emacs/src/lisp.h /^CHECK_NATNUM (Lisp_Object x)$/
590CHECK_NUMBER_CAR c-src/emacs/src/lisp.h /^CHECK_NUMBER_CAR (Lisp_Object x)$/
591CHECK_NUMBER_CDR c-src/emacs/src/lisp.h /^CHECK_NUMBER_CDR (Lisp_Object x)$/
592CHECK_NUMBER_COERCE_MARKER c-src/emacs/src/lisp.h /^#define CHECK_NUMBER_COERCE_MARKER(x) \\$/
593CHECK_NUMBER c-src/emacs/src/lisp.h /^# define CHECK_NUMBER(x) lisp_h_CHECK_NUMBER (x)$/
594CHECK_NUMBER_OR_FLOAT_COERCE_MARKER c-src/emacs/src/lisp.h /^#define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(x) /
595CHECK_NUMBER_OR_FLOAT c-src/emacs/src/lisp.h /^CHECK_NUMBER_OR_FLOAT (Lisp_Object x)$/
596CHECKOBJS make-src/Makefile /^CHECKOBJS=chkmalloc.o chkxm.o$/
597CHECK_PROCESS c-src/emacs/src/lisp.h /^CHECK_PROCESS (Lisp_Object x)$/
598checkQuotation php-src/lce_functions.php /^ function checkQuotation($str)$/
599CHECK_RANGED_INTEGER c-src/emacs/src/lisp.h /^#define CHECK_RANGED_INTEGER(x, lo, hi) \\$/
600CHECK_STRING_CAR c-src/emacs/src/lisp.h /^CHECK_STRING_CAR (Lisp_Object x)$/
601CHECK_SYMBOL c-src/emacs/src/lisp.h /^# define CHECK_SYMBOL(x) lisp_h_CHECK_SYMBOL (x)$/
602CHECK_TYPE c-src/emacs/src/lisp.h /^# define CHECK_TYPE(ok, predicate, x) lisp_h_CHECK/
603CHECK_TYPE_RANGED_INTEGER c-src/emacs/src/lisp.h /^#define CHECK_TYPE_RANGED_INTEGER(type, x) \\$/
604CHECK_VECTOR c-src/emacs/src/lisp.h /^CHECK_VECTOR (Lisp_Object x)$/
605CHECK_VECTOR_OR_STRING c-src/emacs/src/lisp.h /^CHECK_VECTOR_OR_STRING (Lisp_Object x)$/
606CHECK_WINDOW c-src/emacs/src/lisp.h /^CHECK_WINDOW (Lisp_Object x)$/
607\chfopen tex-src/texinfo.tex /^\\def\\chfopen #1#2{\\chapoddpage {\\chapfonts$/
608\chfplain tex-src/texinfo.tex /^\\def\\chfplain #1#2{%$/
609childDidExit objc-src/Subprocess.m /^- childDidExit$/
610chunks_free c-src/emacs/src/gmalloc.c 313
611_chunks_free c-src/emacs/src/gmalloc.c 375
612chunks_used c-src/emacs/src/gmalloc.c 311
613_chunks_used c-src/emacs/src/gmalloc.c 373
614\cindexsub tex-src/texinfo.tex /^\\def\\cindexsub {\\begingroup\\obeylines\\cindexsub}$/
615\cindex tex-src/texinfo.tex /^\\def\\cindex {\\cpindex}$/
616Circle.getPos lua-src/test.lua /^function Circle.getPos ()$/
617\cite tex-src/texinfo.tex /^\\def\\cite##1{\\realbackslash cite {##1}}%$/
618\cite tex-src/texinfo.tex /^\\def\\cite##1{\\realbackslash cite {##1}}$/
619C_JAVA c-src/etags.c 2197
620cjava c-src/etags.c 2936
621Cjava_entries c-src/etags.c /^Cjava_entries (FILE *inf)$/
622Cjava_help c-src/etags.c 551
623Cjava_suffixes c-src/etags.c 549
624CK_ABS_C y-src/parse.y /^#define CK_ABS_C(x) if((x)<MIN_COL || (x)>MAX_COL)/
625CK_ABS_R y-src/parse.y /^#define CK_ABS_R(x) if((x)<MIN_ROW || (x)>MAX_ROW)/
626CK_REL_C y-src/parse.y /^#define CK_REL_C(x) if( ((x)>0 && MAX_COL-(x)<cu/
627CK_REL_R y-src/parse.y /^#define CK_REL_R(x) if( ((x)>0 && MAX_ROW-(x)<cu/
628ClassExample ruby-src/test.rb /^ class ClassExample$/
629classifyLine php-src/lce_functions.php /^ function classifyLine($line)$/
630class_method ruby-src/test.rb /^ def ClassExample.class_method$/
631clean make-src/Makefile /^clean:$/
632clear-abbrev-table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, /
633clearAllKey objcpp-src/SimpleCalc.M /^- clearAllKey:sender$/
634clear cp-src/conway.hpp /^ void clear(void) { alive = 0; }$/
635clear_event c-src/emacs/src/keyboard.c /^clear_event (struct input_event *event)$/
636clear_input_pending c-src/emacs/src/keyboard.c /^clear_input_pending (void)$/
637clearKey objcpp-src/SimpleCalc.M /^- clearKey:sender$/
638clear_neighbors cp-src/clheir.cpp /^void discrete_location::clear_neighbors(void)$/
639Clear/p ada-src/2ataspri.adb /^ procedure Clear (Cell : in out TAS_Cell) is$/
640Clear/p ada-src/2ataspri.ads /^ procedure Clear (Cell : in out TAS_Cell)/
641clear_screen cp-src/screen.cpp /^void clear_screen(void)$/
642\clear tex-src/texinfo.tex /^\\def\\clear{\\parsearg\\clearxxx}$/
643clear-this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/
644clear_waiting_for_input c-src/emacs/src/keyboard.c /^clear_waiting_for_input (void)$/
645\clearxxx tex-src/texinfo.tex /^\\def\\clearxxx #1{$/
646cmd_error c-src/emacs/src/keyboard.c /^cmd_error (Lisp_Object data)$/
647cmd_error_internal c-src/emacs/src/keyboard.c /^cmd_error_internal (Lisp_Object data, const char */
648cmpfn c-src/emacs/src/lisp.h /^ bool (*cmpfn) (struct hash_table_test *t, Lisp_O/
649cmt prol-src/natded.prolog /^cmt:-$/
650CMultiChannelCSC19_3D cp-src/c.C 2
651cname c-src/etags.c 2519
652CNL c-src/etags.c /^#define CNL() \\$/
653CNL_SAVE_DEFINEDEF c-src/etags.c /^#define CNL_SAVE_DEFINEDEF() \\$/
654cno c-src/etags.c 224
655COBOLFLAGS make-src/Makefile /^COBOLFLAGS=--language=none --regex='\/.......[a-zA-/
656Cobol_help c-src/etags.c 558
657Cobol_paragraphs c-src/etags.c /^Cobol_paragraphs (FILE *inf)$/
658Cobol_suffixes c-src/etags.c 556
659\code tex-src/texinfo.tex /^\\def\\code##1{\\realbackslash code {##1}}%$/
660\code tex-src/texinfo.tex /^\\def\\code##1{\\realbackslash code {##1}}$/
661colori cp-src/c.C 40
662COLORS cp-src/screen.hpp 11
663__COLORS cp-src/screen.hpp 9
664/colorsetup ps-src/rfc1245.ps /^\/colorsetup {$/
665commaargvals prol-src/natded.prolog /^commaargvals(Args) -->$/
666command c-src/etags.c 187
667command-error-default-function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/
668command_loop_1 c-src/emacs/src/keyboard.c /^command_loop_1 (void)$/
669command_loop_2 c-src/emacs/src/keyboard.c /^command_loop_2 (Lisp_Object ignore)$/
670command_loop c-src/emacs/src/keyboard.c /^command_loop (void)$/
671command_loop_level c-src/emacs/src/keyboard.c 195
672CommentAD php-src/lce_functions.php 70
673CommentAD php-src/lce_functions.php /^ function CommentAD($/
674comment php-src/lce_functions.php /^ function comment($line, $class)$/
675\comment tex-src/texinfo.tex /^\\def\\comment{\\catcode 64=\\other \\catcode 123=\\othe/
676\commentxxx tex-src/texinfo.tex /^\\def\\commentxxx #1{\\catcode 64=0 \\catcode 123=1 \\c/
677/COMMONBITMAPc ps-src/rfc1245.ps /^\/COMMONBITMAPc { $/
678/COMMONBITMAP ps-src/rfc1245.ps /^\/COMMONBITMAP { $/
679commutativity_assertion merc-src/accumulator.m /^:- pred commutativity_assertion(module_info::in,li/
680COMPILED_ARGLIST c-src/emacs/src/lisp.h 2431
681COMPILED_BYTECODE c-src/emacs/src/lisp.h 2432
682COMPILED_CONSTANTS c-src/emacs/src/lisp.h 2433
683COMPILED_DOC_STRING c-src/emacs/src/lisp.h 2435
684COMPILED_INTERACTIVE c-src/emacs/src/lisp.h 2436
685COMPILEDP c-src/emacs/src/lisp.h /^COMPILEDP (Lisp_Object a)$/
686COMPILED_STACK_DEPTH c-src/emacs/src/lisp.h 2434
687compile_empty prol-src/natded.prolog /^compile_empty:-$/
688compile_lex prol-src/natded.prolog /^compile_lex(File):-$/
689complete prol-src/natded.prolog /^complete(Cat):-$/
690complete-tag el-src/emacs/lisp/progmodes/etags.el /^(defun complete-tag ()$/
691compressor c-src/etags.c 188
692compressors c-src/etags.c 457
693compute_next_state cp-src/clheir.hpp /^ virtual void compute_next_state(void) { }$/
694compute_next_state cp-src/conway.hpp /^ void compute_next_state(void)$/
695conalgorithm html-src/algrthms.html /^Convolutionally$/
696concat c-src/etags.c /^concat (const char *s1, const char *s2, const char/
697concatenatenamestrings pas-src/common.pas /^function concatenatenamestrings; (*($/
698ConcatT pas-src/common.pas /^function ConcatT;(*($/
699Concept Index tex-src/gzip.texi /^@node Concept Index, , Problems, Top$/
700CONDITION_CASE c-src/emacs/src/lisp.h 3021
701Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is$/
702Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is private;$/
703Cond_Signal/p ada-src/2ataspri.adb /^ procedure Cond_Signal (Cond : in out Condition_/
704Cond_Signal/p ada-src/2ataspri.ads /^ procedure Cond_Signal (Cond : in out Condition_/
705Cond_Timed_Wait/p ada-src/2ataspri.adb /^ procedure Cond_Timed_Wait$/
706Cond_Timed_Wait/p ada-src/2ataspri.ads /^ procedure Cond_Timed_Wait$/
707Cond_Wait/p ada-src/2ataspri.adb /^ procedure Cond_Wait (Cond : in out Condition_Va/
708Cond_Wait/p ada-src/2ataspri.ads /^ procedure Cond_Wait (Cond : in out Condition_Va/
709Configure pyt-src/server.py /^class Configure(Frame, ControlEdit):$/
710ConfirmQuit pyt-src/server.py /^def ConfirmQuit(frame, context):$/
711consider_token c-src/etags.c /^consider_token (char *str, int len, int c, int *c_/
712CONSP c-src/emacs/src/lisp.h /^# define CONSP(x) lisp_h_CONSP (x)$/
713constant_args c-src/h.h 27
714constant c-src/emacs/src/lisp.h 668
715constant c-src/h.h 29
716Constant ruby-src/test1.ru 42
717constant y-src/cccp.y 112
718CONS_TO_INTEGER c-src/emacs/src/lisp.h /^#define CONS_TO_INTEGER(cons, type, var) \\$/
719constype c-src/emacs/src/lisp.h 3739
720CONSTYPE_HEAP c-src/emacs/src/lisp.h 3739
721CONSTYPE_PURE c-src/emacs/src/lisp.h 3739
722consult_lex prol-src/natded.prolog /^consult_lex:-$/
723contents c-src/emacs/src/lisp.h 1372
724contents c-src/emacs/src/lisp.h 1600
725contents c-src/emacs/src/lisp.h 1624
726\contents tex-src/texinfo.tex /^\\outer\\def\\contents{%$/
727ControlEdit pyt-src/server.py /^class ControlEdit(Frame):$/
728Controls pyt-src/server.py /^class Controls:$/
729CONVERT_CHARSTRING_TO_VALUE pas-src/common.pas /^procedure CONVERT_CHARSTRING_TO_VALUE;(*($/
730Copying tex-src/gzip.texi /^@node Copying, Overview, , Top$/
731\copyright tex-src/texinfo.tex /^\\def\\copyright{\\realbackslash copyright }%$/
732\copyright tex-src/texinfo.tex /^\\def\\copyright{\\realbackslash copyright}$/
733CopyTextString pas-src/common.pas /^function CopyTextString;(*($/
734count c-src/emacs/src/lisp.h 1863
735counter cp-src/c.C 33
736counter cp-src/c.C 36
737count_layers lua-src/allegro.lua /^local function count_layers (layer)$/
738count_words c-src/tab.c /^static int count_words(char *str, char delim)$/
739cow cp-src/c.C 127
740cow cp-src/c.C 131
741C_PLAIN c-src/etags.c 2194
742C_PLPL c-src/etags.c 2195
743cplpl c-src/etags.c 2935
744Cplusplus_entries c-src/etags.c /^Cplusplus_entries (FILE *inf)$/
745Cplusplus_help c-src/etags.c 540
746Cplusplus_suffixes c-src/etags.c 535
747CPPFLAGS make-src/Makefile /^CPPFLAGS=${CHECKFLAGS} -DSTDC_HEADERS -DHAVE_GETCW/
748CPSRC make-src/Makefile /^CPSRC=c.C abstract.C abstract.H cfront.H burton.cp/
749/C ps-src/rfc1245.ps /^\/C { $/
750create_acc_call merc-src/accumulator.m /^:- func create_acc_call(hlds_goal::in(goal_plain_c/
751create_acc_goal merc-src/accumulator.m /^:- pred create_acc_goal(hlds_goal::in, accu_substs/
752create-bar forth-src/test-forth.fth /^: create-bar foo ;$/
753Create_LL_Task/p ada-src/2ataspri.adb /^ procedure Create_LL_Task$/
754Create_LL_Task/p ada-src/2ataspri.ads /^ procedure Create_LL_Task$/
755create_new_base_goals merc-src/accumulator.m /^:- func create_new_base_goals(set(accu_goal_id), a/
756create_new_orig_recursive_goals merc-src/accumulator.m /^:- func create_new_orig_recursive_goals(set(accu_g/
757create_new_recursive_goals merc-src/accumulator.m /^:- func create_new_recursive_goals(set(accu_goal_i/
758create_new_var merc-src/accumulator.m /^:- pred create_new_var(prog_var::in, string::in, p/
759create_orig_goal merc-src/accumulator.m /^:- pred create_orig_goal(hlds_goal::in, accu_subst/
760createPOEntries php-src/lce_functions.php /^ function createPOEntries()$/
761createWidgets pyt-src/server.py /^ def createWidgets(self):$/
762createWidgets pyt-src/server.py /^ def createWidgets(self, host):$/
763\cropmarks tex-src/texinfo.tex /^\\def\\cropmarks{\\let\\onepageout=\\croppageout }$/
764\croppageout tex-src/texinfo.tex /^\\def\\croppageout#1{\\hoffset=0pt % make sure this d/
765cscInitTime cp-src/c.C 7
766cscSegmentationTime cp-src/c.C 8
767CSRC make-src/Makefile /^CSRC=abbrev.c ..\/etags\/h.h .\/\/c.c torture.c getopt/
768C_stab_entry c-src/etags.c 2271
769cstack c-src/etags.c 2523
770C_STAR c-src/etags.c 2196
771Cstar_entries c-src/etags.c /^Cstar_entries (FILE *inf)$/
772Cstar_suffixes c-src/etags.c 562
773C_symtype c-src/etags.c /^C_symtype (char *str, int len, int c_ext)$/
774CTAGS13 CTAGS14 CTAGS15 make-src/Makefile /^CTAGS13 CTAGS14 CTAGS15: ctags% ${infiles}$/
775CTAGS c-src/etags.c 146
776CTAGS c-src/etags.c 147
777CTAGS c-src/etags.c 149
778CTAGS make-src/Makefile /^CTAGS: ctags ${infiles}$/
779CTAGS% make-src/Makefile /^CTAGS%: ctags% ${infiles}$/
780ctags make-src/Makefile /^ctags: etags.c ${OBJS}$/
781\ctl tex-src/texinfo.tex /^\\def\\ctl{{\\circle\\char'013\\hskip -6pt}}% 6pt from /
782\ctrl tex-src/texinfo.tex /^\\def\\ctrl #1{{\\tt \\rawbackslash \\hat}#1}$/
783\ctr tex-src/texinfo.tex /^\\def\\ctr{{\\hskip 6pt\\circle\\char'010}}$/
784Cube.data.getFoo lua-src/test.lua /^function Cube.data.getFoo ()$/
785curlb c-src/etags.c 2929
786curlinepos c-src/etags.c 2931
787current-idle-time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/
788current-input-mode c-src/emacs/src/keyboard.c /^DEFUN ("current-input-mode", Fcurrent_input_mode, /
789current_kboard c-src/emacs/src/keyboard.c 85
790current_lb_is_new c-src/etags.c 2926
791curry-test scm-src/test.scm /^(define (((((curry-test a) b) c) d) e)$/
792cursor_position cp-src/screen.cpp /^void cursor_position(void)$/
793cursor_x cp-src/screen.cpp 15
794cursor_y cp-src/screen.cpp 15
795CYAN cp-src/screen.hpp 15
796DAEMON_RUNNING c-src/emacs/src/lisp.h 4258
797DAEMON_RUNNING c-src/emacs/src/lisp.h 4262
798DARKGRAY cp-src/screen.hpp 20
799data c-src/emacs/src/lisp.h 1395
800data c-src/emacs/src/lisp.h 2129
801data c-src/emacs/src/lisp.h 2395
802d c.c 180
803D cp-src/fail.C 41
804D cp-src/fail.C /^ D() : ::A::T2::T(97), x(1066) {}$/
805d c-src/emacs/src/lisp.h 4673
806d c-src/emacs/src/lisp.h 4679
807ddefineseen c-src/etags.c 2462
808DEAFUN c.c /^DEAFUN ("expand-file-name", Fexpand_file_name, Sex/
809debian-bug html-src/software.html /^debian-bug.el$/
810Debug cp-src/functions.cpp /^void Debug ( int lineno, int level, char* func , c/
811DEBUG c-src/etags.c 84
812DEBUG c-src/etags.c 85
813DEBUG c-src/etags.c 87
814DEBUG objc-src/PackInsp.m 37
815debug_on_exit c-src/emacs/src/lisp.h 2984
816decimalKey objcpp-src/SimpleCalc.M /^- decimalKey:sender$/
817declared_special c-src/emacs/src/lisp.h 676
818DECLARE_GDB_SYM c-src/emacs/src/lisp.h /^#define DECLARE_GDB_SYM(type, id) type const id EX/
819decode_timer c-src/emacs/src/keyboard.c /^decode_timer (Lisp_Object timer, struct timespec */
820defalt c-src/emacs/src/lisp.h 1585
821default_C_entries c-src/etags.c /^default_C_entries (FILE *inf)$/
822default_C_help c-src/etags.c 515
823default_C_help c-src/etags.c 523
824default_C_suffixes c-src/etags.c 512
825DEFAULT_HASH_SIZE c-src/emacs/src/lisp.h 1940
826__default_morecore c-src/emacs/src/gmalloc.c /^__default_morecore (ptrdiff_t increment)$/
827DEFAULT_REHASH_SIZE c-src/emacs/src/lisp.h 1950
828DEFAULT_REHASH_THRESHOLD c-src/emacs/src/lisp.h 1946
829default-tags-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar default-tags-table-function nil$/
830defcell c-src/emacs/src/lisp.h 2351
831\defcodeindex tex-src/texinfo.tex /^\\def\\defcodeindex{\\parsearg\\newcodeindex}$/
832def c-src/h.h 35
833def c-src/h.h 38
834\defcvarheader tex-src/texinfo.tex /^\\def\\defcvarheader #1#2#3{%$/
835\defcv tex-src/texinfo.tex /^\\def\\defcv #1 {\\def\\defcvtype{#1}%$/
836\defcvx tex-src/texinfo.tex /^\\def\\defcvx #1 {\\errmessage{@defcvx in invalid con/
837\deffnheader tex-src/texinfo.tex /^\\def\\deffnheader #1#2#3{\\doind {fn}{\\code{#2}}%$/
838\deffn tex-src/texinfo.tex /^\\def\\deffn{\\defmethparsebody\\Edeffn\\deffnx\\deffnhe/
839\deffnx tex-src/texinfo.tex /^\\def\\deffnx #1 {\\errmessage{@deffnx in invalid con/
840\defindex tex-src/texinfo.tex /^\\def\\defindex{\\parsearg\\newindex}$/
841define-abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/
842define-abbrev-table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/
843definedef c-src/etags.c 2464
844defined_GC_CHECK_STRING_BYTES c-src/emacs/src/lisp.h 4663
845defined_GC_CHECK_STRING_BYTES c-src/emacs/src/lisp.h 4665
846DEFINE_GDB_SYMBOL_BEGIN c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_BEGIN(type, id) DECLARE/
847DEFINE_GDB_SYMBOL_BEGIN c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_BEGIN(type, id) extern /
848DEFINE_GDB_SYMBOL_END c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_END(id) = id;$/
849DEFINE_GDB_SYMBOL_END c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_END(val) ;$/
850define-global-abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/
851DEFINE_LISP_SYMBOL c-src/emacs/src/lisp.h /^#define DEFINE_LISP_SYMBOL(name) \\$/
852define-mode-abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, /
853DEFINE_NON_NIL_Q_SYMBOL_MACROS c-src/emacs/src/lisp.h 755
854\defivarheader tex-src/texinfo.tex /^\\def\\defivarheader #1#2#3{%$/
855\defivar tex-src/texinfo.tex /^\\def\\defivar{\\defvrparsebody\\Edefivar\\defivarx\\def/
856\defivarx tex-src/texinfo.tex /^\\def\\defivarx #1 {\\errmessage{@defivarx in invalid/
857\defmacheader tex-src/texinfo.tex /^\\def\\defmacheader #1#2{\\doind {fn}{\\code{#1}}% Mak/
858\defmac tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/
859\defmacx tex-src/texinfo.tex /^\\def\\defmacx #1 {\\errmessage{@defmacx in invalid c/
860\defmethodheader tex-src/texinfo.tex /^\\def\\defmethodheader #1#2#3{%$/
861\defmethod tex-src/texinfo.tex /^\\def\\defmethod{\\defmethparsebody\\Edefmethod\\defmet/
862\defmethodx tex-src/texinfo.tex /^\\def\\defmethodx #1 {\\errmessage{@defmethodx in inv/
863\defmethparsebody tex-src/texinfo.tex /^\\def\\defmethparsebody #1#2#3#4 {\\begingroup\\inENV /
864\defname tex-src/texinfo.tex /^\\def\\defname #1#2{%$/
865\defopheader tex-src/texinfo.tex /^\\def\\defopheader #1#2#3{%$/
866\defopparsebody tex-src/texinfo.tex /^\\def\\defopparsebody #1#2#3#4#5 {\\begingroup\\inENV /
867\defop tex-src/texinfo.tex /^\\def\\defop #1 {\\def\\defoptype{#1}%$/
868\defoptheader tex-src/texinfo.tex /^\\def\\defoptheader #1#2{\\doind {vr}{\\code{#1}}% Mak/
869\defopt tex-src/texinfo.tex /^\\def\\defopt{\\defvarparsebody\\Edefopt\\defoptx\\defop/
870\defoptx tex-src/texinfo.tex /^\\def\\defoptx #1 {\\errmessage{@defoptx in invalid c/
871\defopvarparsebody tex-src/texinfo.tex /^\\def\\defopvarparsebody #1#2#3#4#5 {\\begingroup\\inE/
872\defopx tex-src/texinfo.tex /^\\def\\defopx #1 {\\errmessage{@defopx in invalid con/
873\defparsebody tex-src/texinfo.tex /^\\def\\defparsebody #1#2#3{\\begingroup\\inENV% Enviro/
874Def_ ruby-src/test1.ru 12
875\defspecheader tex-src/texinfo.tex /^\\def\\defspecheader #1#2{\\doind {fn}{\\code{#1}}% Ma/
876\defspec tex-src/texinfo.tex /^\\def\\defspec{\\defparsebody\\Edefspec\\defspecx\\defsp/
877\defspecx tex-src/texinfo.tex /^\\def\\defspecx #1 {\\errmessage{@defspecx in invalid/
878DEFSYM c-src/emacs/src/lisp.h /^#define DEFSYM(sym, name) \/* empty *\/$/
879DEFSYM c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (SYMBOL_CONSTANT_P, int, (Lisp_Ob/
880\deftpargs tex-src/texinfo.tex /^\\def\\deftpargs #1{\\bf \\defvarargs{#1}}$/
881\deftpheader tex-src/texinfo.tex /^\\def\\deftpheader #1#2#3{\\doind {tp}{\\code{#2}}%$/
882\deftp tex-src/texinfo.tex /^\\def\\deftp{\\defvrparsebody\\Edeftp\\deftpx\\deftphead/
883\deftpx tex-src/texinfo.tex /^\\def\\deftpx #1 {\\errmessage{@deftpx in invalid con/
884\deftypefnheader tex-src/texinfo.tex /^\\def\\deftypefnheader #1#2#3{\\deftypefnheaderx{#1}{/
885\deftypefnheaderx tex-src/texinfo.tex /^\\def\\deftypefnheaderx #1#2#3 #4\\relax{%$/
886\deftypefn tex-src/texinfo.tex /^\\def\\deftypefn{\\defmethparsebody\\Edeftypefn\\deftyp/
887\deftypefnx tex-src/texinfo.tex /^\\def\\deftypefnx #1 {\\errmessage{@deftypefnx in inv/
888\deftypefunargs tex-src/texinfo.tex /^\\def\\deftypefunargs #1{%$/
889\deftypefunheader tex-src/texinfo.tex /^\\def\\deftypefunheader #1#2{\\deftypefunheaderx{#1}#/
890\deftypefunheaderx tex-src/texinfo.tex /^\\def\\deftypefunheaderx #1#2 #3\\relax{%$/
891\deftypefun tex-src/texinfo.tex /^\\def\\deftypefun{\\defparsebody\\Edeftypefun\\deftypef/
892\deftypeunx tex-src/texinfo.tex /^\\def\\deftypeunx #1 {\\errmessage{@deftypeunx in inv/
893\deftypevarheader tex-src/texinfo.tex /^\\def\\deftypevarheader #1#2{%$/
894\deftypevar tex-src/texinfo.tex /^\\def\\deftypevar{\\defvarparsebody\\Edeftypevar\\defty/
895\deftypevarx tex-src/texinfo.tex /^\\def\\deftypevarx #1 {\\errmessage{@deftypevarx in i/
896\deftypevrheader tex-src/texinfo.tex /^\\def\\deftypevrheader #1#2#3{\\doind {vr}{\\code{#3}}/
897\deftypevr tex-src/texinfo.tex /^\\def\\deftypevr{\\defvrparsebody\\Edeftypevr\\deftypev/
898\deftypevrx tex-src/texinfo.tex /^\\def\\deftypevrx #1 {\\errmessage{@deftypevrx in inv/
899DEFUN_ARGS_0 c-src/emacs/src/lisp.h 714
900DEFUN_ARGS_1 c-src/emacs/src/lisp.h 715
901DEFUN_ARGS_2 c-src/emacs/src/lisp.h 716
902DEFUN_ARGS_3 c-src/emacs/src/lisp.h 717
903DEFUN_ARGS_4 c-src/emacs/src/lisp.h 718
904DEFUN_ARGS_5 c-src/emacs/src/lisp.h 719
905DEFUN_ARGS_6 c-src/emacs/src/lisp.h 721
906DEFUN_ARGS_7 c-src/emacs/src/lisp.h 723
907DEFUN_ARGS_8 c-src/emacs/src/lisp.h 725
908DEFUN_ARGS_MANY c-src/emacs/src/lisp.h 712
909\defunargs tex-src/texinfo.tex /^\\def\\defunargs #1{\\functionparens \\sl$/
910DEFUN_ARGS_UNEVALLED c-src/emacs/src/lisp.h 713
911DEFUN c-src/emacs/src/lisp.h /^#define DEFUN(lname, fnname, sname, minargs, maxar/
912defun_func1 c.c /^defun_func1()$/
913DEFUN_func2 c.c /^DEFUN_func2()$/
914\defunheader tex-src/texinfo.tex /^\\def\\defunheader #1#2{\\doind {fn}{\\code{#1}}% Make/
915\defun tex-src/texinfo.tex /^\\def\\defun{\\defparsebody\\Edefun\\defunx\\defunheader/
916\defunx tex-src/texinfo.tex /^\\def\\defunx #1 {\\errmessage{@defunx in invalid con/
917\defvarargs tex-src/texinfo.tex /^\\def\\defvarargs #1{\\normalparens #1%$/
918DEFVAR_BOOL c-src/emacs/src/lisp.h /^#define DEFVAR_BOOL(lname, vname, doc) \\$/
919DEFVAR_BUFFER_DEFAULTS c-src/emacs/src/lisp.h /^#define DEFVAR_BUFFER_DEFAULTS(lname, vname, doc) /
920\defvarheader tex-src/texinfo.tex /^\\def\\defvarheader #1#2{\\doind {vr}{\\code{#1}}% Mak/
921DEFVAR_INT c-src/emacs/src/lisp.h /^#define DEFVAR_INT(lname, vname, doc) \\$/
922DEFVAR_KBOARD c-src/emacs/src/lisp.h /^#define DEFVAR_KBOARD(lname, vname, doc) \\$/
923DEFVAR_LISP c-src/emacs/src/lisp.h /^#define DEFVAR_LISP(lname, vname, doc) \\$/
924DEFVAR_LISP_NOPRO c-src/emacs/src/lisp.h /^#define DEFVAR_LISP_NOPRO(lname, vname, doc) \\$/
925\defvarparsebody tex-src/texinfo.tex /^\\def\\defvarparsebody #1#2#3{\\begingroup\\inENV% Env/
926\defvar tex-src/texinfo.tex /^\\def\\defvar{\\defvarparsebody\\Edefvar\\defvarx\\defva/
927\defvarx tex-src/texinfo.tex /^\\def\\defvarx #1 {\\errmessage{@defvarx in invalid c/
928\defvrheader tex-src/texinfo.tex /^\\def\\defvrheader #1#2#3{\\doind {vr}{\\code{#2}}%$/
929\defvrparsebody tex-src/texinfo.tex /^\\def\\defvrparsebody #1#2#3#4 {\\begingroup\\inENV %$/
930\defvr tex-src/texinfo.tex /^\\def\\defvr{\\defvrparsebody\\Edefvr\\defvrx\\defvrhead/
931\defvrx tex-src/texinfo.tex /^\\def\\defvrx #1 {\\errmessage{@defvrx in invalid con/
932delegate objc-src/Subprocess.m /^- delegate$/
933deleteItem pyt-src/server.py /^ def deleteItem(self):$/
934delete_kboard c-src/emacs/src/keyboard.c /^delete_kboard (KBOARD *kb)$/
935deliver_input_available_signal c-src/emacs/src/keyboard.c /^deliver_input_available_signal (int sig)$/
936deliver_interrupt_signal c-src/emacs/src/keyboard.c /^deliver_interrupt_signal (int sig)$/
937deliver_user_signal c-src/emacs/src/keyboard.c /^deliver_user_signal (int sig)$/
938depth c-src/emacs/src/lisp.h 1618
939derived_analyses prol-src/natded.prolog /^derived_analyses([],[]).$/
940describe_abbrev c-src/abbrev.c /^describe_abbrev (sym, stream)$/
941\description tex-src/texinfo.tex /^\\def\\description{\\tablez{\\dontindex}{1}{}{}{}{}}$/
942/desperatepapersize ps-src/rfc1245.ps /^\/desperatepapersize {$/
943detect_input_pending c-src/emacs/src/keyboard.c /^detect_input_pending (void)$/
944detect_input_pending_ignore_squeezables c-src/emacs/src/keyboard.c /^detect_input_pending_ignore_squeezables (void)$/
945detect_input_pending_run_timers c-src/emacs/src/keyboard.c /^detect_input_pending_run_timers (bool do_display)$/
946DEVICE_LAST c-src/h.h 24
947DEVICE_SWP c-src/h.h 23
948\dfn tex-src/texinfo.tex /^\\def\\dfn##1{\\realbackslash dfn {##1}}$/
949\df tex-src/texinfo.tex /^\\def\\df{\\let\\tentt=\\deftt \\let\\tenbf = \\defbf \\bf}/
950/DiacriticEncoding ps-src/rfc1245.ps /^\/DiacriticEncoding [$/
951dialog_loop erl-src/gs_dialog.erl /^dialog_loop(Module, Window, Frame, Extra, Args) ->/
952/dieresis ps-src/rfc1245.ps /^\/dieresis \/.notdef \/AE \/Oslash \/.notdef \/.notdef \//
953dignorerest c-src/etags.c 2463
954\direntry tex-src/texinfo.tex /^\\def\\direntry{\\begingroup\\direntryxxx}$/
955\direntryxxx tex-src/texinfo.tex /^\\long\\def\\direntryxxx #1\\end direntry{\\endgroup\\ig/
956discard-input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/
957discard_mouse_events c-src/emacs/src/keyboard.c /^discard_mouse_events (void)$/
958discrete_location cp-src/clheir.hpp 56
959discrete_location cp-src/clheir.hpp /^ discrete_location(int xi, int yi, int zi):$/
960display cp-src/conway.cpp /^void display(void)$/
961\display tex-src/texinfo.tex /^\\def\\display{\\begingroup\\inENV %This group ends at/
962DisposeANameList pas-src/common.pas /^procedure DisposeANameList( $/
963DisposeNameList pas-src/common.pas /^procedure DisposeNameList;$/
964disposetextstring pas-src/common.pas /^procedure disposetextstring;(*($/
965/dmatrix ps-src/rfc1245.ps /^\/dmatrix matrix def$/
966\dmn tex-src/texinfo.tex /^\\def\\dmn#1{\\thinspace #1}$/
967dnone c-src/etags.c 2460
968/dnormalize ps-src/rfc1245.ps /^\/dnormalize {$/
969\dobreak tex-src/texinfo.tex /^\\def\\dobreak#1#2{\\par\\ifdim\\lastskip<#1\\removelast/
970doc c-src/emacs/src/lisp.h 1689
971\dochapentry tex-src/texinfo.tex /^\\def\\dochapentry#1#2{%$/
972\docodeindex tex-src/texinfo.tex /^\\def\\docodeindex#1{\\edef\\indexname{#1}\\parsearg\\si/
973dog cp-src/c.C 126
974dog cp-src/c.C 130
975dog c-src/h.h 81
976\doindex tex-src/texinfo.tex /^\\def\\doindex#1{\\edef\\indexname{#1}\\parsearg\\single/
977\doind tex-src/texinfo.tex /^\\def\\doind #1#2{%$/
978\donoderef tex-src/texinfo.tex /^\\def\\donoderef{\\ifx\\lastnode\\relax\\else$/
979\dontindex tex-src/texinfo.tex /^\\def\\dontindex #1{}$/
980\dopageno tex-src/texinfo.tex /^\\def\\dopageno#1{{\\rm #1}}$/
981\doprintindex tex-src/texinfo.tex /^\\def\\doprintindex#1{%$/
982\dosecentry tex-src/texinfo.tex /^\\def\\dosecentry#1#2{%$/
983\dosetq tex-src/texinfo.tex /^\\def\\dosetq #1#2{{\\let\\folio=0 \\turnoffactive%$/
984\doshortpageno tex-src/texinfo.tex /^\\def\\doshortpageno#1{{\\rm #1}}$/
985DOS_NT c-src/etags.c 117
986DOS_NT c-src/etags.c 118
987\dosubind tex-src/texinfo.tex /^\\def\\dosubind #1#2#3{%$/
988\dosubsecentry tex-src/texinfo.tex /^\\def\\dosubsecentry#1#2{%$/
989\dosubsubsecentry tex-src/texinfo.tex /^\\def\\dosubsubsecentry#1#2{%$/
990dotfill tex-src/texinfo.tex /^\\noindent\\hskip\\secondaryindent\\hbox{#1}\\indexdotf/
991dotfill tex-src/texinfo.tex /^ \\null\\nobreak\\indexdotfill % Have leaders before/
992\dots tex-src/texinfo.tex /^\\def\\dots{$\\ldots$}$/
993\dots tex-src/texinfo.tex /^\\def\\dots{\\realbackslash dots }%$/
994\dots tex-src/texinfo.tex /^\\def\\dots{\\realbackslash dots}$/
995double_click_count c-src/emacs/src/keyboard.c 5222
996\doublecolumnout tex-src/texinfo.tex /^\\def\\doublecolumnout{\\splittopskip=\\topskip \\split/
997/dpi ps-src/rfc1245.ps /^\/dpi 72 0 dmatrix defaultmatrix dtransform$/
998/D ps-src/rfc1245.ps /^\/D {curveto} bind def$/
999drag_n_drop_syms c-src/emacs/src/keyboard.c 4629
1000dribble c-src/emacs/src/keyboard.c 236
1001dsharpseen c-src/etags.c 2461
1002dummies tex-src/texinfo.tex /^{\\indexdummies % Must do this here, since \\bf, etc/
1003dummy1 cp-src/burton.cpp /^::dummy::dummy test::dummy1(void)$/
1004dummy2 cp-src/burton.cpp /^::dummy::dummy test::dummy2(::CORBA::Long dummy)$/
1005dummy3 cp-src/burton.cpp /^::dummy::dummy test::dummy3(char* name, ::CORBA::L/
1006dummydots tex-src/texinfo.tex /^\\let\\dots=\\indexdummydots$/
1007dummyfont tex-src/texinfo.tex /^\\let\\b=\\indexdummyfont$/
1008dummyfont tex-src/texinfo.tex /^\\let\\code=\\indexdummyfont$/
1009dummyfont tex-src/texinfo.tex /^\\let\\emph=\\indexdummyfont$/
1010dummyfont tex-src/texinfo.tex /^\\let\\file=\\indexdummyfont$/
1011dummyfont tex-src/texinfo.tex /^\\let\\i=\\indexdummyfont$/
1012dummyfont tex-src/texinfo.tex /^\\let\\kbd=\\indexdummyfont$/
1013dummyfont tex-src/texinfo.tex /^\\let\\key=\\indexdummyfont$/
1014dummyfont tex-src/texinfo.tex /^\\let\\r=\\indexdummyfont$/
1015dummyfont tex-src/texinfo.tex /^\\let\\samp=\\indexdummyfont$/
1016dummyfont tex-src/texinfo.tex /^\\let\\sc=\\indexdummyfont$/
1017dummyfont tex-src/texinfo.tex /^\\let\\strong=\\indexdummyfont$/
1018dummyfont tex-src/texinfo.tex /^\\let\\tclose=\\indexdummyfont$/
1019dummyfont tex-src/texinfo.tex /^\\let\\t=\\indexdummyfont$/
1020dummyfont tex-src/texinfo.tex /^\\let\\var=\\indexdummyfont$/
1021dummyfont tex-src/texinfo.tex /^\\let\\w=\\indexdummyfont$/
1022dummytex tex-src/texinfo.tex /^\\let\\TeX=\\indexdummytex$/
1023DUMPED c-src/emacs/src/gmalloc.c 80
1024dump pyt-src/server.py /^ def dump(self, folded):$/
1025eabs c-src/emacs/src/lisp.h /^#define eabs(x) ((x) < 0 ? -(x) : (x))$/
1026\Ealphaenumerate tex-src/texinfo.tex /^\\def\\Ealphaenumerate{\\Eenumerate}$/
1027eassert c-src/emacs/src/lisp.h /^# define eassert(cond) \\$/
1028eassert c-src/emacs/src/lisp.h /^# define eassert(cond) ((void) (false && (cond))) /
1029eassume c-src/emacs/src/lisp.h /^# define eassume(cond) \\$/
1030eassume c-src/emacs/src/lisp.h /^# define eassume(cond) assume (cond)$/
1031eax c-src/sysdep.h 31
1032eax c-src/sysdep.h 33
1033\Ecapsenumerate tex-src/texinfo.tex /^\\def\\Ecapsenumerate{\\Eenumerate}$/
1034\Ecartouche tex-src/texinfo.tex /^\\def\\Ecartouche{%$/
1035echo_add_key c-src/emacs/src/keyboard.c /^echo_add_key (Lisp_Object c)$/
1036echo_char c-src/emacs/src/keyboard.c /^echo_char (Lisp_Object c)$/
1037echo_dash c-src/emacs/src/keyboard.c /^echo_dash (void)$/
1038echoing c-src/emacs/src/keyboard.c 154
1039echo_kboard c-src/emacs/src/keyboard.c 166
1040echo_keystrokes_p c-src/emacs/src/keyboard.c /^echo_keystrokes_p (void)$/
1041echo_length c-src/emacs/src/keyboard.c /^echo_length (void)$/
1042echo_message_buffer c-src/emacs/src/keyboard.c 171
1043echo_now c-src/emacs/src/keyboard.c /^echo_now (void)$/
1044echo_truncate c-src/emacs/src/keyboard.c /^echo_truncate (ptrdiff_t nchars)$/
1045\Edescription tex-src/texinfo.tex /^\\def\\Edescription{\\Etable}% Necessary kludge.$/
1046%ediff make-src/Makefile /^%ediff: ETAGS% ETAGS ${infiles}$/
1047\Edisplay tex-src/texinfo.tex /^\\def\\Edisplay{\\endgroup\\afterenvbreak}%$/
1048editItem pyt-src/server.py /^ def editItem(self):$/
1049editsite pyt-src/server.py /^ def editsite(self, site):$/
1050edituser pyt-src/server.py /^ def edituser(self, user):$/
1051\Eexample tex-src/texinfo.tex /^\\def\\Eexample{\\Elisp}$/
1052\Eflushleft tex-src/texinfo.tex /^\\def\\Eflushleft{\\endgroup\\afterenvbreak}%$/
1053\Eflushright tex-src/texinfo.tex /^\\def\\Eflushright{\\endgroup\\afterenvbreak}%$/
1054\Eformat tex-src/texinfo.tex /^\\def\\Eformat{\\endgroup\\afterenvbreak}$/
1055\Eftable tex-src/texinfo.tex /^\\def\\Eftable{\\endgraf\\endgroup\\afterenvbreak}%$/
1056egetenv c-src/emacs/src/lisp.h /^egetenv (const char *var)$/
1057\Egroup tex-src/texinfo.tex /^ \\def\\Egroup{\\egroup\\endgroup}%$/
1058\Eifclear tex-src/texinfo.tex /^\\def\\Eifclear{}$/
1059\Eifset tex-src/texinfo.tex /^\\def\\Eifset{}$/
1060\Eiftex tex-src/texinfo.tex /^\\def\\Eiftex{}$/
1061ELEM_I c-src/h.h 3
1062\Elisp tex-src/texinfo.tex /^\\def\\Elisp{\\endgroup\\afterenvbreak}%$/
1063ELSRC make-src/Makefile /^ELSRC=TAGTEST.EL emacs\/lisp\/progmodes\/etags.el$/
1064emacs_abort c-src/emacs/src/lisp.h /^extern _Noreturn void emacs_abort (void) NO_INLINE/
1065EMACS_INT c-src/emacs/src/lisp.h 103
1066EMACS_INT c-src/emacs/src/lisp.h 91
1067EMACS_INT c-src/emacs/src/lisp.h 96
1068EMACS_INT_MAX c-src/emacs/src/lisp.h 105
1069EMACS_INT_MAX c-src/emacs/src/lisp.h 93
1070EMACS_INT_MAX c-src/emacs/src/lisp.h 98
1071EMACS_LISP_H c-src/emacs/src/lisp.h 22
1072EMACS_NAME c-src/etags.c 786
1073EMACS_UINT c-src/emacs/src/lisp.h 104
1074EMACS_UINT c-src/emacs/src/lisp.h 92
1075EMACS_UINT c-src/emacs/src/lisp.h 97
1076\emph tex-src/texinfo.tex /^\\def\\emph##1{\\realbackslash emph {##1}}$/
1077EmptyNmStr pas-src/common.pas /^function EmptyNmStr(* : NameString*);$/
1078/ENDBITMAP ps-src/rfc1245.ps /^\/ENDBITMAP {$/
1079end c-src/emacs/src/keyboard.c 8753
1080end c-src/emacs/src/lisp.h 2039
1081end c-src/emacs/src/regex.h 432
1082\enddoublecolumns tex-src/texinfo.tex /^\\def\\enddoublecolumns{\\output={\\balancecolumns}\\ej/
1083/ENDPRINTCODE ps-src/rfc1245.ps /^\/ENDPRINTCODE {$/
1084\end tex-src/texinfo.tex /^\\def\\end{\\parsearg\\endxxx}$/
1085endtoken c-src/etags.c /^#define endtoken(c) (_etk[CHAR (c)]) \/* c ends tok/
1086\endxxx tex-src/texinfo.tex /^\\def\\endxxx #1{%$/
1087enter_critical_section c-src/h.h 116
1088ENTRY c-src/sysdep.h /^#define ENTRY(name) \\$/
1089entry perl-src/htlmify-cystic 218
1090entry perl-src/htlmify-cystic 234
1091entry perl-src/htlmify-cystic 245
1092entry perl-src/htlmify-cystic 252
1093entry perl-src/htlmify-cystic 268
1094entry perl-src/htlmify-cystic 276
1095entry perl-src/htlmify-cystic 281
1096entry perl-src/htlmify-cystic 296
1097\entry tex-src/texinfo.tex /^\\def\\entry #1#2{\\begingroup$/
1098ENUM_BF c-src/emacs/src/lisp.h /^#define ENUM_BF(TYPE) enum TYPE$/
1099ENUM_BF c-src/emacs/src/lisp.h /^#define ENUM_BF(TYPE) unsigned int$/
1100\enumerate tex-src/texinfo.tex /^\\def\\enumerate{\\parsearg\\enumeratezzz}$/
1101\enumeratey tex-src/texinfo.tex /^\\def\\enumeratey #1 #2\\endenumeratey{%$/
1102\enumeratezzz tex-src/texinfo.tex /^\\def\\enumeratezzz #1{\\enumeratey #1 \\endenumerate/
1103\ENVcheck tex-src/texinfo.tex /^\\def\\ENVcheck{%$/
1104Environment tex-src/gzip.texi /^@node Environment, Tapes, Advanced usage, Top$/
1105/E ps-src/rfc1245.ps /^\/E {lineto} bind def$/
1106EQ c-src/emacs/src/lisp.h /^# define EQ(x, y) lisp_h_EQ (x, y)$/
1107equalsKey objcpp-src/SimpleCalc.M /^- equalsKey:sender$/
1108EQUAL y-src/cccp.c 12
1109\equiv tex-src/texinfo.tex /^\\def\\equiv{\\leavevmode\\lower.1ex\\hbox to 1em{\\hfil/
1110\equiv tex-src/texinfo.tex /^\\def\\equiv{\\realbackslash equiv}$/
1111\Equotation tex-src/texinfo.tex /^\\def\\Equotation{\\par\\endgroup\\afterenvbreak}%$/
1112erlang_atom c-src/etags.c /^erlang_atom (char *s)$/
1113erlang_attribute c-src/etags.c /^erlang_attribute (char *s)$/
1114erlang_func c-src/etags.c /^erlang_func (char *s, char *last)$/
1115Erlang_functions c-src/etags.c /^Erlang_functions (FILE *inf)$/
1116Erlang_help c-src/etags.c 567
1117Erlang_suffixes c-src/etags.c 565
1118ERLSRC make-src/Makefile /^ERLSRC=gs_dialog.erl lines.erl lists.erl$/
1119error c-src/emacs/src/lisp.h /^extern _Noreturn void error (const char *, ...) AT/
1120error c-src/etags.c /^error (const char *format, ...)$/
1121error c-src/etags.c /^static void error (const char *, ...) ATTRIBUTE_FO/
1122\errorE tex-src/texinfo.tex /^\\def\\errorE#1{$/
1123Error_Information/t ada-src/2ataspri.ads /^ type Error_Information is new Interfaces.C.POSI/
1124error_signaled c-src/etags.c 264
1125\error tex-src/texinfo.tex /^\\def\\error{\\leavevmode\\lower.7ex\\copy\\errorbox}$/
1126ERROR y-src/cccp.c 9
1127error y-src/cccp.y /^error (msg)$/
1128ERROR y-src/parse.y 304
1129ErrStrToNmStr pas-src/common.pas /^function ErrStrToNmStr;(*($/
1130\Esmallexample tex-src/texinfo.tex /^\\def\\Esmallexample{\\Elisp}$/
1131\Esmallexample tex-src/texinfo.tex /^\\global\\def\\Esmallexample{\\Esmalllisp}$/
1132\Esmalllisp tex-src/texinfo.tex /^\\def\\Esmalllisp{\\endgroup\\afterenvbreak}%$/
1133\Etable tex-src/texinfo.tex /^\\def\\Etable{\\endgraf\\endgroup\\afterenvbreak}%$/
1134ETAGS12 make-src/Makefile /^ETAGS12: etags12 ${infiles}$/
1135ETAGS13 ETAGS14 ETAGS15 make-src/Makefile /^ETAGS13 ETAGS14 ETAGS15: etags% ${infiles}$/
1136etags.1.man make-src/Makefile /^etags.1.man: etags.1$/
1137etags el-src/emacs/lisp/progmodes/etags.el /^(defgroup etags nil "Tags tables."$/
1138etags-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-file-of-tag (&optional relative) ; Do/
1139etags_getcwd c-src/etags.c /^etags_getcwd (void)$/
1140etags-goto-tag-location el-src/emacs/lisp/progmodes/etags.el /^(defun etags-goto-tag-location (tag-info)$/
1141etags html-src/software.html /^Etags$/
1142etags-list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun etags-list-tags (file) ; Doc string?$/
1143etags make-src/Makefile /^etags: etags.c ${OBJS}$/
1144ETAGS make-src/Makefile /^ETAGS: FRC etags ${infiles}$/
1145ETAGS% make-src/Makefile /^ETAGS%: FRC etags% ${infiles}$/
1146etags-recognize-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-recognize-tags-table ()$/
1147etags-snarf-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-snarf-tag (&optional use-explicit) ; /
1148etags-tags-apropos-additional el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-apropos-additional (regexp)$/
1149etags-tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-apropos (string) ; Doc string?$/
1150etags-tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-completion-table () ; Doc string/
1151etags-tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-included-tables () ; Doc string?/
1152etags-tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-table-files () ; Doc string?$/
1153etags-verify-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-verify-tags-table ()$/
1154etags--xref-find-definitions el-src/emacs/lisp/progmodes/etags.el /^(defun etags--xref-find-definitions (pattern &opti/
1155etags-xref-find-definitions-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar etags-xref-find-definitions-tag-order '(ta/
1156etags-xref-find el-src/emacs/lisp/progmodes/etags.el /^(defun etags-xref-find (action id)$/
1157etags--xref-limit el-src/emacs/lisp/progmodes/etags.el /^(defconst etags--xref-limit 1000)$/
1158\Etitlepage tex-src/texinfo.tex /^\\def\\Etitlepage{%$/
1159eval_dyn c-src/emacs/src/keyboard.c /^eval_dyn (Lisp_Object form)$/
1160\evenfooting tex-src/texinfo.tex /^\\def\\evenfooting{\\parsearg\\evenfootingxxx}$/
1161\evenheading tex-src/texinfo.tex /^\\def\\evenheading{\\parsearg\\evenheadingxxx}$/
1162event-convert-list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, /
1163event_head c-src/emacs/src/keyboard.c 11021
1164event-symbol-parse-modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/
1165event_to_kboard c-src/emacs/src/keyboard.c /^event_to_kboard (struct input_event *event)$/
1166\everyfooting tex-src/texinfo.tex /^\\def\\everyfooting{\\parsearg\\everyfootingxxx}$/
1167\everyheading tex-src/texinfo.tex /^\\def\\everyheading{\\parsearg\\everyheadingxxx}$/
1168\Evtable tex-src/texinfo.tex /^\\def\\Evtable{\\endgraf\\endgroup\\afterenvbreak}%$/
1169\ewbot tex-src/texinfo.tex /^\\def\\ewbot{\\vrule height0pt depth\\cornerthick widt/
1170\ewtop tex-src/texinfo.tex /^\\def\\ewtop{\\vrule height\\cornerthick depth0pt widt/
1171exact c-src/emacs/src/gmalloc.c 200
1172/exclamdown ps-src/rfc1245.ps /^\/exclamdown \/logicalnot \/.notdef \/florin \/.notdef /
1173\exdent tex-src/texinfo.tex /^\\def\\exdent{\\parsearg\\exdentyyy}$/
1174\exdentyyy tex-src/texinfo.tex /^\\def\\exdentyyy #1{{\\hfil\\break\\hbox{\\kern -\\exdent/
1175execute cp-src/c.C /^ void execute(CPluginCSCState& p, int w, in/
1176EXFUN c-src/emacs/src/lisp.h /^#define EXFUN(fnname, maxargs) \\$/
1177exit_critical_to_previous c-src/h.h 117
1178exit c-src/exit.c /^DEFUN(exit, (status), int status)$/
1179exit c-src/exit.strange_suffix /^DEFUN(exit, (status), int status)$/
1180Exit_LL_Task/p ada-src/2ataspri.adb /^ procedure Exit_LL_Task is$/
1181Exit_LL_Task/p ada-src/2ataspri.ads /^ procedure Exit_LL_Task;$/
1182exit-recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/
1183exp1 y-src/cccp.y 148
1184expand-abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/
1185expandmng prol-src/natded.prolog /^expandmng(var(V),var(V)).$/
1186expandmng_tree prol-src/natded.prolog /^expandmng_tree(tree(Rule,Syn:Sem,Trees),$/
1187expandmng_trees prol-src/natded.prolog /^expandmng_trees([],[]).$/
1188expandsyn prol-src/natded.prolog /^expandsyn(Syn,Syn):-$/
1189\expansion tex-src/texinfo.tex /^\\def\\expansion{\\leavevmode\\raise.1ex\\hbox to 1em{\\/
1190\expansion tex-src/texinfo.tex /^\\def\\expansion{\\realbackslash expansion}$/
1191explicitly-quoted-pending-delete-mode el-src/TAGTEST.EL /^(defalias (quote explicitly-quoted-pending-delete-/
1192exp_list y-src/parse.y 263
1193expression_value y-src/cccp.y 68
1194exp y-src/atest.y 2
1195exp y-src/cccp.y 156
1196exp y-src/cccp.y 185
1197exp y-src/parse.y 95
1198EXTAGS make-src/Makefile /^EXTAGS: extags ${infiles} Makefile$/
1199EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 3497
1200EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 4372
1201ExtractCommentInfo pas-src/common.pas /^procedure ExtractCommentInfo; (*($/
1202extras c-src/emacs/src/lisp.h 1603
1203extvar c-src/h.h 109
1204f1 c.c /^ f1 () { \/* Do something. *\/; }$/
1205f1 perl-src/kai-test.pl /^sub f1 {$/
1206f2 c.c /^void f2 () { \/* Do something. *\/; }$/
1207f2 perl-src/kai-test.pl /^sub main::f2 {$/
1208f3 perl-src/kai-test.pl /^sub f3 {$/
1209f4 perl-src/kai-test.pl /^sub Bar::f4 {$/
1210f5 perl-src/kai-test.pl /^sub f5 {$/
1211f6 perl-src/kai-test.pl /^sub f6 {$/
1212f7 perl-src/kai-test.pl /^sub f7 {$/
1213Fabbrev_expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/
1214Fabbrev_symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/
1215Fabort_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("abort-recursive-edit", Fabort_recursive_ed/
1216=/f ada-src/etags-test-for.ada /^ function "=" (L, R : System.Address) return Boo/
1217Fails_t c-src/h.h 5
1218/fakecolorsetup ps-src/rfc1245.ps /^\/fakecolorsetup {$/
1219FASTCFLAGS make-src/Makefile /^FASTCFLAGS=-O3 -finline-functions -ffast-math -fun/
1220FASTCFLAGSWARN make-src/Makefile /^FASTCFLAGSWARN=${WARNINGS} -Werror ${FASTCFLAGS}$/
1221fastctags make-src/Makefile /^fastctags:$/
1222fastetags make-src/Makefile /^fastetags:$/
1223fastmap_accurate c-src/emacs/src/regex.h 383
1224fastmap c-src/emacs/src/regex.h 355
1225fast_string_match_ignore_case c-src/emacs/src/lisp.h /^fast_string_match_ignore_case (Lisp_Object regexp,/
1226fatala c.c /^void fatala () __attribute__ ((noreturn));$/
1227fatal c-src/etags.c /^fatal (const char *s1, const char *s2)$/
1228f c.c 145
1229f c.c 156
1230f c.c 168
1231f c.c /^int f$/
1232Fclear_abbrev_table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, /
1233Fclear_this_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/
1234Fcommand_error_default_function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/
1235fconst forth-src/test-forth.fth /^3.1415e fconstant fconst$/
1236f cp-src/c.C /^A<float,B<int> > A<B<float>,int>::f(A<int>* x) {}$/
1237f cp-src/c.C /^A<int>* f() {}$/
1238f cp-src/c.C /^class B<int> { void f() {} };$/
1239f cp-src/c.C /^int A<int>::f(A<int>* x) {}$/
1240f cp-src/c.C /^int f(A<int> x) {}$/
1241f cp-src/c.C /^ int f(){return 0;}; \/\/ first comment$/
1242f cp-src/c.C /^ void f() {}$/
1243f cp-src/fail.C /^int A::B::f() { return 2; }$/
1244f cp-src/fail.C /^ int f() { return 5; }$/
1245f c-src/c.c /^T f(){if(x){}$/
1246f c-src/h.h 89
1247Fcurrent_idle_time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/
1248Fcurrent_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("current-input-mode", Fcurrent_input_mode, /
1249Fdefine_abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/
1250Fdefine_abbrev_table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/
1251Fdefine_global_abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/
1252Fdefine_mode_abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, /
1253fdefunkey c-src/etags.c 2409
1254fdefunname c-src/etags.c 2410
1255fdesc c-src/etags.c 201
1256fdesc c-src/etags.c 212
1257fdHandler objc-src/Subprocess.m /^- fdHandler:(int)theFd$/
1258fdHandler objc-src/Subprocess.m /^fdHandler (int theFd, id self)$/
1259Fdiscard_input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/
1260fdp c-src/etags.c 217
1261Fevent_convert_list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, /
1262Fevent_symbol_parse_modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/
1263Fexit_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/
1264Fexpand_abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/
1265ff cp-src/c.C /^ int ff(){return 1;};$/
1266F_getit c-src/etags.c /^F_getit (FILE *inf)$/
1267>field1 forth-src/test-forth.fth /^ 9 field >field1$/
1268>field2 forth-src/test-forth.fth /^ 5 field >field2$/
1269field_of_play cp-src/conway.cpp 18
1270fignore c-src/etags.c 2416
1271file_end perl-src/htlmify-cystic /^sub file_end ()$/
1272file_index perl-src/htlmify-cystic 33
1273fileJoin php-src/lce_functions.php /^ function fileJoin()$/
1274filename_is_absolute c-src/etags.c /^filename_is_absolute (char *fn)$/
1275filenames c-src/etags.c 196
1276file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun file-of-tag (&optional relative)$/
1277file-of-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar file-of-tag-function nil$/
1278\file tex-src/texinfo.tex /^\\def\\file##1{\\realbackslash file {##1}}%$/
1279\file tex-src/texinfo.tex /^\\def\\file##1{\\realbackslash file {##1}}$/
1280file_tocs perl-src/htlmify-cystic 30
1281/fillprocs ps-src/rfc1245.ps /^\/fillprocs 32 array def$/
1282FILTER make-src/Makefile /^FILTER=grep -v '\\.[Cchefy][lor]*,[1-9][0-9]*' || t/
1283FINAL_FREE_BLOCKS c-src/emacs/src/gmalloc.c 135
1284Finalize_Cond/p ada-src/2ataspri.adb /^ procedure Finalize_Cond (Cond : in out Conditio/
1285Finalize_Cond/p ada-src/2ataspri.ads /^ procedure Finalize_Cond (Cond : in out Conditio/
1286Finalize_Lock/p ada-src/2ataspri.adb /^ procedure Finalize_Lock (L : in out Lock) is$/
1287Finalize_Lock/p ada-src/2ataspri.ads /^ procedure Finalize_Lock (L : in out Lock);$/
1288FINALIZERP c-src/emacs/src/lisp.h /^FINALIZERP (Lisp_Object x)$/
1289Finalize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Finalize_TAS_Cell (Cell : in out TAS_/
1290Finalize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Finalize_TAS_Cell (Cell : in out TA/
1291\finalout tex-src/texinfo.tex /^\\def\\finalout{\\overfullrule=0pt}$/
1292findcats prol-src/natded.prolog /^findcats([],Left,Left).$/
1293find_entries c-src/etags.c /^find_entries (FILE *inf)$/
1294\findex tex-src/texinfo.tex /^\\def\\findex {\\fnindex}$/
1295find-tag-default-function el-src/emacs/lisp/progmodes/etags.el /^(defcustom find-tag-default-function nil$/
1296find-tag el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag (tagname &optional next-p regexp-p/
1297find-tag-history el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-history nil) ; Doc string?$/
1298find-tag-hook el-src/emacs/lisp/progmodes/etags.el /^(defcustom find-tag-hook nil$/
1299find-tag-in-order el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-in-order (pattern$/
1300find-tag-interactive el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-interactive (prompt &optional no-d/
1301find-tag-marker-ring el-src/emacs/lisp/progmodes/etags.el /^(defvaralias 'find-tag-marker-ring 'xref--marker-r/
1302find-tag-marker-ring-length el-src/emacs/lisp/progmodes/etags.el /^(define-obsolete-variable-alias 'find-tag-marker-r/
1303find-tag-next-line-after-failure-p el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-next-line-after-failure-p nil$/
1304find-tag-noselect el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-noselect (tagname &optional next-p/
1305find-tag-other-frame el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-other-frame (tagname &optional nex/
1306find-tag-other-window el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-other-window (tagname &optional ne/
1307find-tag-regexp el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-regexp (regexp &optional next-p ot/
1308find-tag-regexp-next-line-after-failure-p el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-regexp-next-line-after-failure-p /
1309find-tag-regexp-search-function el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-regexp-search-function nil$/
1310find-tag-regexp-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-regexp-tag-order nil$/
1311find-tag-search-function el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-search-function nil$/
1312find-tag-tag el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-tag (string)$/
1313find-tag-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-tag-order nil$/
1314find_user_signal_name c-src/emacs/src/keyboard.c /^find_user_signal_name (int sig)$/
1315finish_appendices perl-src/htlmify-cystic /^sub finish_appendices ()$/
1316finish_sections perl-src/htlmify-cystic /^sub finish_sections ()$/
1317finish_subsections perl-src/htlmify-cystic /^sub finish_subsections ()$/
1318finish_subsubsections perl-src/htlmify-cystic /^sub finish_subsubsections ()$/
1319\finishtitlepage tex-src/texinfo.tex /^\\def\\finishtitlepage{%$/
1320finlist c-src/etags.c 2414
1321Finput_pending_p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/
1322Finsert_abbrev_table_description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/
1323First100Chars pas-src/common.pas /^procedure First100Chars; (*($/
1324first c-src/emacs/src/gmalloc.c 151
1325fitchtreelist prol-src/natded.prolog /^fitchtreelist([]).$/
1326FIXNUM_BITS c-src/emacs/src/lisp.h 252
1327FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^#define FIXNUM_OVERFLOW_P(i) \\$/
1328FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (EQ, bool, (Lisp_Object x, Lisp_O/
1329fixup_locale c-src/emacs/src/lisp.h /^INLINE void fixup_locale (void) {}$/
1330flag2str pyt-src/server.py /^def flag2str(value, string):$/
1331flag c-src/getopt.h 83
1332flistseen c-src/etags.c 2415
1333FLOATP c-src/emacs/src/lisp.h /^# define FLOATP(x) lisp_h_FLOATP (x)$/
1334FLOAT_TO_STRING_BUFSIZE c-src/emacs/src/lisp.h 3927
1335/fl ps-src/rfc1245.ps /^\/fl { $/
1336\flushcr tex-src/texinfo.tex /^\\def\\flushcr{\\ifx\\par\\lisppar \\def\\next##1{}\\else /
1337\flushleft tex-src/texinfo.tex /^\\def\\flushleft{%$/
1338\flushright tex-src/texinfo.tex /^\\def\\flushright{%$/
1339Fmake_abbrev_table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/
1340/FMBEGINEPSF ps-src/rfc1245.ps /^\/FMBEGINEPSF { $/
1341/FMBEGINPAGE ps-src/rfc1245.ps /^\/FMBEGINPAGE { $/
1342/Fmcc ps-src/rfc1245.ps /^\/Fmcc {$/
1343/FMDEFINEFONT ps-src/rfc1245.ps /^\/FMDEFINEFONT { $/
1344/FMDOCUMENT ps-src/rfc1245.ps /^\/FMDOCUMENT { $/
1345/FMENDEPSF ps-src/rfc1245.ps /^\/FMENDEPSF {$/
1346/FMENDPAGE ps-src/rfc1245.ps /^\/FMENDPAGE {$/
1347/FMLOCAL ps-src/rfc1245.ps /^\/FMLOCAL {$/
1348/FMNORMALIZEGRAPHICS ps-src/rfc1245.ps /^\/FMNORMALIZEGRAPHICS { $/
1349/FMVERSION ps-src/rfc1245.ps /^\/FMVERSION {$/
1350/FMversion ps-src/rfc1245.ps /^\/FMversion (2.0) def $/
1351fn c-src/exit.c /^ void EXFUN((*fn[1]), (NOARGS));$/
1352fn c-src/exit.strange_suffix /^ void EXFUN((*fn[1]), (NOARGS));$/
1353fnin y-src/parse.y 68
1354\fnitemindex tex-src/texinfo.tex /^\\def\\fnitemindex #1{\\doind {fn}{\\code{#1}}}%$/
1355focus_set pyt-src/server.py /^ def focus_set(self):$/
1356follow_key c-src/emacs/src/keyboard.c /^follow_key (Lisp_Object keymap, Lisp_Object key)$/
1357fonts\rm tex-src/texinfo.tex /^ \\indexfonts\\rm \\tolerance=9500 \\advance\\baseline/
1358fonts tex-src/texinfo.tex /^\\obeyspaces \\obeylines \\ninett \\indexfonts \\rawbac/
1359foo1 ruby-src/test1.ru /^ attr_reader(:foo1, :bar1, # comment$/
1360foo2 ruby-src/test1.ru /^ alias_method ( :foo2, #cmmt$/
1361foobar2_ c-src/h.h 16
1362foobar2 c-src/h.h 20
1363foobar c.c /^extern void foobar (void) __attribute__ ((section /
1364foobar c-src/c.c /^int foobar() {;}$/
1365foo==bar el-src/TAGTEST.EL /^(defun foo==bar () (message "hi")) ; Bug#5624$/
1366Foo::Bar perl-src/kai-test.pl /^package Foo::Bar;$/
1367foo c.c 150
1368foo c.c 166
1369foo c.c 167
1370foo c.c 178
1371foo c.c 189
1372foo cp-src/c.C 68
1373foo cp-src/c.C 79
1374foo cp-src/c.C /^ foo() {$/
1375foo cp-src/x.cc /^XX::foo()$/
1376foo c-src/h.h 18
1377(foo) forth-src/test-forth.fth /^: (foo) 1 ;$/
1378foo forth-src/test-forth.fth /^: foo (foo) ;$/
1379foo f-src/entry.for /^ character*(*) function foo()$/
1380foo f-src/entry.strange /^ character*(*) function foo()$/
1381foo f-src/entry.strange_suffix /^ character*(*) function foo()$/
1382Foo perl-src/kai-test.pl /^package Foo;$/
1383foo php-src/ptest.php /^foo()$/
1384foo ruby-src/test1.ru /^ attr_reader :foo$/
1385foo! ruby-src/test1.ru /^ def foo!$/
1386Fopen_dribble_file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/
1387foperator c-src/etags.c 2411
1388force_auto_save_soon c-src/emacs/src/keyboard.c /^force_auto_save_soon (void)$/
1389force_explicit_name c-src/etags.c 265
1390force_quit_count c-src/emacs/src/keyboard.c 10387
1391FOR_EACH_ALIST_VALUE c-src/emacs/src/lisp.h /^#define FOR_EACH_ALIST_VALUE(head_var, list_var, v/
1392FOR_EACH_TAIL c-src/emacs/src/lisp.h /^#define FOR_EACH_TAIL(hare, list, tortoise, n) \\$/
1393foreign_export merc-src/accumulator.m /^:- pragma foreign_export("C", unravel_univ(in, out/
1394formatSize objc-src/PackInsp.m /^-(const char *)formatSize:(const char *)size inBuf/
1395\format tex-src/texinfo.tex /^\\def\\format{\\begingroup\\inENV %This group ends at /
1396Forth_help c-src/etags.c 573
1397FORTHSRC make-src/Makefile /^FORTHSRC=test-forth.fth$/
1398Forth_suffixes c-src/etags.c 571
1399Forth_words c-src/etags.c /^Forth_words (FILE *inf)$/
1400Fortran_functions c-src/etags.c /^Fortran_functions (FILE *inf)$/
1401Fortran_help c-src/etags.c 579
1402Fortran_suffixes c-src/etags.c 577
1403found c-src/emacs/src/lisp.h 2344
1404Fposn_at_point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/
1405Fposn_at_x_y c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, /
1406/F ps-src/rfc1245.ps /^\/F { $/
1407fracas html-src/software.html /^Fracas$/
1408/fraction ps-src/rfc1245.ps /^\/fraction \/currency \/guilsinglleft \/guilsinglright/
1409frag c-src/emacs/src/gmalloc.c 152
1410_fraghead c-src/emacs/src/gmalloc.c 370
1411/FrameDict ps-src/rfc1245.ps /^\/FrameDict 190 dict def $/
1412frame_local c-src/emacs/src/lisp.h 2341
1413FRAMEP c-src/emacs/src/lisp.h /^FRAMEP (Lisp_Object a)$/
1414FRC make-src/Makefile /^FRC:;$/
1415Fread_key_sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/
1416Fread_key_sequence_vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/
1417Frecent_keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, /
1418Frecursion_depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/
1419Frecursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/
1420free c-src/emacs/src/gmalloc.c 166
1421free c-src/emacs/src/gmalloc.c 1719
1422free c-src/emacs/src/gmalloc.c 67
1423free c-src/emacs/src/gmalloc.c 72
1424_free c-src/emacs/src/gmalloc.c /^_free (void *ptr)$/
1425free c-src/emacs/src/gmalloc.c /^free (void *ptr)$/
1426free_fdesc c-src/etags.c /^free_fdesc (register fdesc *fdp)$/
1427FREEFLOOD c-src/emacs/src/gmalloc.c 1858
1428free_for prol-src/natded.prolog /^free_for(var(_),_,_).$/
1429freehook c-src/emacs/src/gmalloc.c /^freehook (void *ptr)$/
1430_free_internal c-src/emacs/src/gmalloc.c /^_free_internal (void *ptr)$/
1431_free_internal_nolock c-src/emacs/src/gmalloc.c /^_free_internal_nolock (void *ptr)$/
1432free_regexps c-src/etags.c /^free_regexps (void)$/
1433free_tree c-src/etags.c /^free_tree (register node *np)$/
1434free_var prol-src/natded.prolog /^free_var(var(V),var(V)).$/
1435\frenchspacing tex-src/texinfo.tex /^\\def\\frenchspacing{\\sfcode46=1000 \\sfcode63=1000 \\/
1436/freq ps-src/rfc1245.ps /^\/freq dpi 18.75 div 8 div round dup 0 eq {pop 1} i/
1437Freset_this_command_lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/
1438fresh_vars prol-src/natded.prolog /^fresh_vars(var(V),var(V)).$/
1439Fset_input_interrupt_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/
1440Fset_input_meta_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/
1441Fset_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/
1442Fset_output_flow_control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/
1443Fset_quit_char c-src/emacs/src/keyboard.c /^DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_/
1444FSRC make-src/Makefile /^FSRC=entry.for entry.strange_suffix entry.strange$/
1445fstartlist c-src/etags.c 2413
1446Fsuspend_emacs c-src/emacs/src/keyboard.c /^DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_e/
1447\ftable tex-src/texinfo.tex /^\\def\\ftable{\\begingroup\\inENV\\obeylines\\obeyspaces/
1448F_takeprec c-src/etags.c /^F_takeprec (void)$/
1449Fthis_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/
1450Fthis_command_keys_vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/
1451Fthis_single_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/
1452Fthis_single_command_raw_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-raw-keys", Fthis_singl/
1453Ftop_level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, /
1454Ftrack_mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/
1455FUN0 y-src/parse.y /^yylex FUN0()$/
1456FUN1 y-src/parse.y /^str_to_col FUN1(char **,str)$/
1457FUN1 y-src/parse.y /^yyerror FUN1(char *, s)$/
1458FUN2 y-src/parse.y /^make_list FUN2(YYSTYPE, car, YYSTYPE, cdr)$/
1459FUN2 y-src/parse.y /^parse_cell_or_range FUN2(char **,ptr, struct rng */
1460func1 c.c /^int func1$/
1461func2 c.c /^int func2 (a,b$/
1462funcboo c.c /^bool funcboo ()$/
1463func c-src/emacs/src/lisp.h /^ void (*func) (int);$/
1464func c-src/emacs/src/lisp.h /^ void (*func) (Lisp_Object);$/
1465func c-src/emacs/src/lisp.h /^ void (*func) (void *);$/
1466func c-src/emacs/src/lisp.h /^ void (*func) (void);$/
1467func_key_syms c-src/emacs/src/keyboard.c 4626
1468funcpointer c-src/emacs/src/lisp.h 2126
1469funcptr c-src/h.h /^ fu int (*funcptr) (void *ptr);$/
1470function c-src/emacs/src/lisp.h 1685
1471function c-src/emacs/src/lisp.h 2197
1472function c-src/emacs/src/lisp.h 2985
1473function c-src/emacs/src/lisp.h 694
1474function c-src/etags.c 194
1475FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 4766
1476FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5061
1477FUNCTIONP c-src/emacs/src/lisp.h /^FUNCTIONP (Lisp_Object obj)$/
1478functionp c-src/emacs/src/lisp.h /^functionp (Lisp_Object object)$/
1479Funexpand_abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/
1480fval forth-src/test-forth.fth /^fconst fvalue fval$/
1481fvar forth-src/test-forth.fth /^fvariable fvar$/
1482fvdef c-src/etags.c 2418
1483fvextern c-src/etags.c 2420
1484fvnameseen c-src/etags.c 2412
1485fvnone c-src/etags.c 2408
1486fwd c-src/emacs/src/lisp.h 2346
1487fwd c-src/emacs/src/lisp.h 690
1488Fx_get_selection_internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/
1489Fx_get_selection_internal c.c /^ Fx_get_selection_internal, Sx_get_selection/
1490Fy_get_selection_internal c.c /^ Fy_get_selection_internal, Sy_get_selection_/
1491galileo html-src/software.html /^GaliLEO$/
1492GatherControls pyt-src/server.py /^ def GatherControls(self):$/
1493gather pyt-src/server.py /^ def gather(self):$/
1494GCALIGNED c-src/emacs/src/lisp.h 288
1495GCALIGNED c-src/emacs/src/lisp.h 290
1496GCALIGNMENT c-src/emacs/src/lisp.h 243
1497gc_aset c-src/emacs/src/lisp.h /^gc_aset (Lisp_Object array, ptrdiff_t idx, Lisp_Ob/
1498GC_MAKE_GCPROS_NOOPS c-src/emacs/src/lisp.h 3172
1499gcmarkbit c-src/emacs/src/lisp.h 1974
1500gcmarkbit c-src/emacs/src/lisp.h 1981
1501gcmarkbit c-src/emacs/src/lisp.h 2035
1502gcmarkbit c-src/emacs/src/lisp.h 2113
1503gcmarkbit c-src/emacs/src/lisp.h 2204
1504gcmarkbit c-src/emacs/src/lisp.h 656
1505GC_MARK_STACK_CHECK_GCPROS c-src/emacs/src/lisp.h 3173
1506GC_MARK_STACK c-src/emacs/src/lisp.h 3177
1507GCPRO1 c-src/emacs/src/lisp.h /^#define GCPRO1(a) \\$/
1508GCPRO1 c-src/emacs/src/lisp.h /^#define GCPRO1(varname) ((void) gcpro1)$/
1509GCPRO2 c-src/emacs/src/lisp.h /^#define GCPRO2(a, b) \\$/
1510GCPRO2 c-src/emacs/src/lisp.h /^#define GCPRO2(varname1, varname2) ((void) gcpro2,/
1511GCPRO3 c-src/emacs/src/lisp.h /^#define GCPRO3(a, b, c) \\$/
1512GCPRO3 c-src/emacs/src/lisp.h /^#define GCPRO3(varname1, varname2, varname3) \\$/
1513GCPRO4 c-src/emacs/src/lisp.h /^#define GCPRO4(a, b, c, d) \\$/
1514GCPRO4 c-src/emacs/src/lisp.h /^#define GCPRO4(varname1, varname2, varname3, varna/
1515GCPRO5 c-src/emacs/src/lisp.h /^#define GCPRO5(a, b, c, d, e) \\$/
1516GCPRO5 c-src/emacs/src/lisp.h /^#define GCPRO5(varname1, varname2, varname3, varna/
1517GCPRO6 c-src/emacs/src/lisp.h /^#define GCPRO6(a, b, c, d, e, f) \\$/
1518GCPRO6 c-src/emacs/src/lisp.h /^#define GCPRO6(varname1, varname2, varname3, varna/
1519GCPRO7 c-src/emacs/src/lisp.h /^#define GCPRO7(a, b, c, d, e, f, g) \\$/
1520GCPRO7 c-src/emacs/src/lisp.h /^#define GCPRO7(a, b, c, d, e, f, g) (GCPRO6 (a, b,/
1521gcpro c-src/emacs/src/lisp.h 3042
1522gcpro c-src/emacs/src/lisp.h 3132
1523g cp-src/c.C /^ int g(){return 2;};$/
1524GCTYPEBITS c-src/emacs/src/lisp.h 67
1525GCTYPEBITS c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (int, GCTYPEBITS)$/
1526GC_USE_GCPROS_AS_BEFORE c-src/emacs/src/lisp.h 3171
1527GC_USE_GCPROS_CHECK_ZOMBIES c-src/emacs/src/lisp.h 3174
1528genalgorithm html-src/algrthms.html /^Generating the Data<\/font><\/i><\/b>$/
1529generate_warning merc-src/accumulator.m /^:- pred generate_warning(module_info::in, prog_var/
1530generate_warnings merc-src/accumulator.m /^:- pred generate_warnings(module_info::in, prog_va/
1531~generic_object cp-src/clheir.cpp /^generic_object::~generic_object(void)$/
1532generic_object cp-src/clheir.cpp /^generic_object::generic_object(void)$/
1533generic_object cp-src/clheir.hpp 13
1534GENERIC_PTR y-src/cccp.y 56
1535GENERIC_PTR y-src/cccp.y 58
1536gen_help_event c-src/emacs/src/keyboard.c /^gen_help_event (Lisp_Object help, Lisp_Object fram/
1537GEQ y-src/cccp.c 15
1538getArchs objc-src/PackInsp.m /^-(void)getArchs$/
1539getcjmp c-src/emacs/src/keyboard.c 147
1540get_compressor_from_suffix c-src/etags.c /^get_compressor_from_suffix (char *file, char **ext/
1541get_contiguous_space c-src/emacs/src/gmalloc.c /^get_contiguous_space (ptrdiff_t size, void *positi/
1542get_current_dir_name c-src/emacs/src/gmalloc.c 33
1543getDomainNames php-src/lce_functions.php /^ function getDomainNames()$/
1544getFoo lua-src/test.lua /^function Cube.data.getFoo ()$/
1545get_input_pending c-src/emacs/src/keyboard.c /^get_input_pending (int flags)$/
1546get_language_from_filename c-src/etags.c /^get_language_from_filename (char *file, int case_s/
1547get_language_from_interpreter c-src/etags.c /^get_language_from_interpreter (char *interpreter)$/
1548get_language_from_langname c-src/etags.c /^get_language_from_langname (const char *name)$/
1549GetLayerByName lua-src/allegro.lua /^function GetLayerByName (name)$/
1550get_layer_by_name lua-src/allegro.lua /^local function get_layer_by_name (sprite, layer, n/
1551GetNameList pas-src/common.pas /^function GetNameList; (* : BinNodePointer;*)$/
1552GetNewNameListNode pas-src/common.pas /^function GetNewNameListNode;(*($/
1553getopt1.o make-src/Makefile /^getopt1.o: emacs\/lib-src\/getopt1.c$/
1554_GETOPT_H c-src/getopt.h 19
1555GETOPTOBJS make-src/Makefile /^GETOPTOBJS= #getopt.o getopt1.o$/
1556getopt.o make-src/Makefile /^getopt.o: emacs\/lib-src\/getopt.c$/
1557getopt perl-src/yagrip.pl /^sub getopt {$/
1558Get_Own_Priority/f ada-src/2ataspri.adb /^ function Get_Own_Priority return System.Any_Pri/
1559Get_Own_Priority/f ada-src/2ataspri.ads /^ function Get_Own_Priority return System.Any_Pri/
1560getPath objc-src/PackInsp.m /^-(const char *)getPath:(char *)buf forType:(const /
1561getPOReader php-src/lce_functions.php /^ function &getPOReader($domain)$/
1562getPos lua-src/test.lua /^function Circle.getPos ()$/
1563getPos lua-src/test.lua /^function Rectangle.getPos ()$/
1564Get_Priority/f ada-src/2ataspri.adb /^ function Get_Priority (T : TCB_Ptr) return Syst/
1565Get_Priority/f ada-src/2ataspri.ads /^ function Get_Priority (T : TCB_Ptr) return Syst/
1566getptys objc-src/Subprocess.m /^getptys (int *master, int *slave)$/
1567get_tag c-src/etags.c /^get_tag (register char *bp, char **namepp)$/
1568getTextDomains php-src/lce_functions.php /^ function getTextDomains($lines)$/
1569gettext php-src/lce_functions.php /^ function gettext($msgid)$/
1570GetTextRef pas-src/common.pas /^function GetTextRef;(*($/
1571GetUniqueLayerName lua-src/allegro.lua /^function GetUniqueLayerName ()$/
1572get_word c-src/tab.c /^static char *get_word(char **str, char delim)$/
1573GE y-src/parse.c 8
1574ggg c-src/h.h 10
1575ghi1 c-src/h.h 36
1576ghi2 c-src/h.h 39
1577giallo cp-src/c.C 40
1578glider cp-src/conway.cpp /^void glider(int x, int y)$/
1579\gloggingall tex-src/texinfo.tex /^\\def\\gloggingall{\\begingroup \\globaldefs = 1 \\logg/
1580/gn ps-src/rfc1245.ps /^\/gn { $/
1581gnu html-src/software.html /^Free software that I wrote for the GNU project or /
1582_GNU_SOURCE c-src/etags.c 94
1583gobble_input c-src/emacs/src/keyboard.c /^gobble_input (void)$/
1584goto-tag-location-function el-src/emacs/lisp/progmodes/etags.el /^(defvar goto-tag-location-function nil$/
1585goto_xy cp-src/screen.cpp /^void goto_xy(unsigned char x, unsigned char y)$/
1586/G ps-src/rfc1245.ps /^\/G { $/
1587/graymode ps-src/rfc1245.ps /^\/graymode true def$/
1588/grayness ps-src/rfc1245.ps /^\/grayness {$/
1589GREEN cp-src/screen.hpp 14
1590\group tex-src/texinfo.tex /^\\def\\group{\\begingroup$/
1591GROW_RAW_KEYBUF c-src/emacs/src/keyboard.c 119
1592\gtr tex-src/texinfo.tex /^\\def\\gtr{\\realbackslash gtr}%$/
1593\gtr tex-src/texinfo.tex /^\\def\\gtr{\\realbackslash gtr}$/
1594/guillemotleft ps-src/rfc1245.ps /^\/guillemotleft \/guillemotright \/ellipsis \/.notdef /
1595handle_async_input c-src/emacs/src/keyboard.c /^handle_async_input (void)$/
1596handle_input_available_signal c-src/emacs/src/keyboard.c /^handle_input_available_signal (int sig)$/
1597handle_interrupt c-src/emacs/src/keyboard.c /^handle_interrupt (bool in_signal_handler)$/
1598handle_interrupt_signal c-src/emacs/src/keyboard.c /^handle_interrupt_signal (int sig)$/
1599handleList pyt-src/server.py /^ def handleList(self, event):$/
1600handleNew pyt-src/server.py /^ def handleNew(self, event):$/
1601handler c-src/emacs/src/lisp.h 3023
1602handlertype c-src/emacs/src/lisp.h 3021
1603handle_user_signal c-src/emacs/src/keyboard.c /^handle_user_signal (int sig)$/
1604has_arg c-src/getopt.h 82
1605hash c-src/emacs/src/lisp.h 1843
1606hash c-src/etags.c /^hash (const char *str, int len)$/
1607hashfn c-src/emacs/src/lisp.h /^ EMACS_UINT (*hashfn) (struct hash_table_test *t,/
1608HASH_HASH c-src/emacs/src/lisp.h /^HASH_HASH (struct Lisp_Hash_Table *h, ptrdiff_t id/
1609HASH_INDEX c-src/emacs/src/lisp.h /^HASH_INDEX (struct Lisp_Hash_Table *h, ptrdiff_t i/
1610HASH_KEY c-src/emacs/src/lisp.h /^HASH_KEY (struct Lisp_Hash_Table *h, ptrdiff_t idx/
1611HASH_NEXT c-src/emacs/src/lisp.h /^HASH_NEXT (struct Lisp_Hash_Table *h, ptrdiff_t id/
1612HASH_TABLE_P c-src/emacs/src/lisp.h /^HASH_TABLE_P (Lisp_Object a)$/
1613HASH_TABLE_SIZE c-src/emacs/src/lisp.h /^HASH_TABLE_SIZE (struct Lisp_Hash_Table *h)$/
1614hash_table_test c-src/emacs/src/lisp.h 1805
1615HASH_VALUE c-src/emacs/src/lisp.h /^HASH_VALUE (struct Lisp_Hash_Table *h, ptrdiff_t i/
1616\hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}%$/
1617\hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}$/
1618HAVE_NTGUI c-src/etags.c 116
1619hdr c-src/emacs/src/gmalloc.c 1860
1620header c-src/emacs/src/lisp.h 1371
1621header c-src/emacs/src/lisp.h 1388
1622header c-src/emacs/src/lisp.h 1581
1623header c-src/emacs/src/lisp.h 1610
1624header c-src/emacs/src/lisp.h 1672
1625header c-src/emacs/src/lisp.h 1826
1626header_size c-src/emacs/src/lisp.h 1471
1627\HEADINGSafter tex-src/texinfo.tex /^\\def\\HEADINGSafter{\\let\\HEADINGShook=\\HEADINGSdoub/
1628\HEADINGSdouble tex-src/texinfo.tex /^\\def\\HEADINGSdouble{$/
1629\HEADINGSdoublex tex-src/texinfo.tex /^\\def\\HEADINGSdoublex{%$/
1630\HEADINGSoff tex-src/texinfo.tex /^\\def\\HEADINGSoff{$/
1631\HEADINGSon tex-src/texinfo.tex /^\\def\\HEADINGSon{\\HEADINGSdouble}$/
1632\HEADINGSon tex-src/texinfo.tex /^\\global\\def\\HEADINGSon{\\HEADINGSdouble}}$/
1633\HEADINGSon tex-src/texinfo.tex /^\\global\\def\\HEADINGSon{\\HEADINGSsingle}}$/
1634\HEADINGSsingleafter tex-src/texinfo.tex /^\\def\\HEADINGSsingleafter{\\let\\HEADINGShook=\\HEADIN/
1635\HEADINGSsingle tex-src/texinfo.tex /^\\def\\HEADINGSsingle{$/
1636\HEADINGSsinglex tex-src/texinfo.tex /^\\def\\HEADINGSsinglex{%$/
1637\headings tex-src/texinfo.tex /^\\def\\headings #1 {\\csname HEADINGS#1\\endcsname}$/
1638\heading tex-src/texinfo.tex /^\\def\\heading{\\parsearg\\secheadingi}$/
1639head_table c-src/emacs/src/keyboard.c 11027
1640_heapbase c-src/emacs/src/gmalloc.c 355
1641HEAP c-src/emacs/src/gmalloc.c 131
1642_heapindex c-src/emacs/src/gmalloc.c 364
1643_heapinfo c-src/emacs/src/gmalloc.c 358
1644_heaplimit c-src/emacs/src/gmalloc.c 367
1645heapsize c-src/emacs/src/gmalloc.c 361
1646hello scm-src/test.scm /^(define hello "Hello, Emacs!")$/
1647hello scm-src/test.scm /^(set! hello "Hello, world!")$/
1648hello-world scm-src/test.scm /^(define (hello-world)$/
1649help_char_p c-src/emacs/src/keyboard.c /^help_char_p (Lisp_Object c)$/
1650help c-src/etags.c 193
1651help_form_saved_window_configs c-src/emacs/src/keyboard.c 2156
1652helpPanel objcpp-src/SimpleCalc.M /^- helpPanel:sender$/
1653helpwin pyt-src/server.py /^def helpwin(helpdict):$/
1654hide_cursor cp-src/screen.cpp /^void hide_cursor(void)$/
1655hlds merc-src/accumulator.m /^:- import_module hlds.$/
1656/home/www/pub/etags.c.gz make-src/Makefile /^\/home\/www\/pub\/etags.c.gz: etags.c$/
1657/home/www/pub/software/unix/etags.tar.gz make-src/Makefile /^\/home\/www\/pub\/software\/unix\/etags.tar.gz: Makefile/
1658/H ps-src/rfc1245.ps /^\/H { $/
1659HTML_help c-src/etags.c 584
1660HTML_labels c-src/etags.c /^HTML_labels (FILE *inf)$/
1661HTMLSRC make-src/Makefile /^HTMLSRC=softwarelibero.html index.shtml algrthms.h/
1662HTML_suffixes c-src/etags.c 582
1663htmltreelist prol-src/natded.prolog /^htmltreelist([]).$/
1664/hx ps-src/rfc1245.ps /^\/hx { $/
1665hybrid_aligned_alloc c-src/emacs/src/gmalloc.c /^hybrid_aligned_alloc (size_t alignment, size_t siz/
1666hybrid_calloc c-src/emacs/src/gmalloc.c /^hybrid_calloc (size_t nmemb, size_t size)$/
1667hybrid_free c-src/emacs/src/gmalloc.c /^hybrid_free (void *ptr)$/
1668hybrid_get_current_dir_name c-src/emacs/src/gmalloc.c /^hybrid_get_current_dir_name (void)$/
1669hybrid_malloc c-src/emacs/src/gmalloc.c /^hybrid_malloc (size_t size)$/
1670hybrid_realloc c-src/emacs/src/gmalloc.c /^hybrid_realloc (void *ptr, size_t size)$/
1671hypothetical_mem prol-src/natded.prolog /^hypothetical_mem(fi(N),Ass,_):-$/
1672/iacute ps-src/rfc1245.ps /^\/iacute \/igrave \/icircumflex \/idieresis \/ntilde \/o/
1673ialpage tex-src/texinfo.tex /^ \\availdimen@=\\pageheight \\advance\\availdimen@ by/
1674ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\pa/
1675ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\parti/
1676ialpage tex-src/texinfo.tex /^\\newbox\\partialpage$/
1677ialpage= tex-src/texinfo.tex /^ \\output={\\global\\setbox\\partialpage=$/
1678i c.c 169
1679/Icircumflex ps-src/rfc1245.ps /^\/Icircumflex \/Idieresis \/Igrave \/Oacute \/Ocircumfl/
1680i cp-src/c.C 132
1681/ic ps-src/rfc1245.ps /^\/ic [ $/
1682i c-src/c.c 2
1683i c-src/emacs/src/lisp.h 4673
1684i c-src/emacs/src/lisp.h 4679
1685i c-src/emacs/src/lisp.h 567
1686identify_goal_type merc-src/accumulator.m /^:- pred identify_goal_type(pred_id::in, proc_id::i/
1687identify_out_and_out_prime merc-src/accumulator.m /^:- pred identify_out_and_out_prime(module_info::in/
1688identify_recursive_calls merc-src/accumulator.m /^:- pred identify_recursive_calls(pred_id::in, proc/
1689idx c-src/emacs/src/lisp.h 3150
1690IEEE_FLOATING_POINT c-src/emacs/src/lisp.h 2415
1691\ifclearfail tex-src/texinfo.tex /^\\def\\ifclearfail{\\begingroup\\ignoresections\\ifclea/
1692\ifclearfailxxx tex-src/texinfo.tex /^\\long\\def\\ifclearfailxxx #1\\end ifclear{\\endgroup\\/
1693\ifclear tex-src/texinfo.tex /^\\def\\ifclear{\\begingroup\\ignoresections\\parsearg\\i/
1694\ifclearxxx tex-src/texinfo.tex /^\\def\\ifclearxxx #1{\\endgroup$/
1695\ifinfo tex-src/texinfo.tex /^\\def\\ifinfo{\\begingroup\\ignoresections\\ifinfoxxx}$/
1696\ifinfoxxx tex-src/texinfo.tex /^\\long\\def\\ifinfoxxx #1\\end ifinfo{\\endgroup\\ignore/
1697\ifsetfail tex-src/texinfo.tex /^\\def\\ifsetfail{\\begingroup\\ignoresections\\ifsetfai/
1698\ifsetfailxxx tex-src/texinfo.tex /^\\long\\def\\ifsetfailxxx #1\\end ifset{\\endgroup\\igno/
1699\ifset tex-src/texinfo.tex /^\\def\\ifset{\\begingroup\\ignoresections\\parsearg\\ifs/
1700\ifsetxxx tex-src/texinfo.tex /^\\def\\ifsetxxx #1{\\endgroup$/
1701\iftex tex-src/texinfo.tex /^\\def\\iftex{}$/
1702\ifusingtt tex-src/texinfo.tex /^\\def\\ifusingtt#1#2{\\ifdim \\fontdimen3\\the\\font=0pt/
1703ignore_case c-src/etags.c 266
1704ignore_mouse_drag_p c-src/emacs/src/keyboard.c 1256
1705\ignoresections tex-src/texinfo.tex /^\\def\\ignoresections{%$/
1706\ignore tex-src/texinfo.tex /^\\def\\ignore{\\begingroup\\ignoresections$/
1707\ignorexxx tex-src/texinfo.tex /^\\long\\def\\ignorexxx #1\\end ignore{\\endgroup\\ignore/
1708\ii tex-src/texinfo.tex /^\\def\\ii#1{{\\it #1}} % italic font$/
1709ill=\relax tex-src/texinfo.tex /^\\let\\refill=\\relax$/
1710IMAGEP c-src/emacs/src/lisp.h /^IMAGEP (Lisp_Object x)$/
1711immediate_quit c-src/emacs/src/keyboard.c 174
1712impatto html-src/softwarelibero.html /^Impatto pratico del software libero$/
1713implementation merc-src/accumulator.m /^:- implementation.$/
1714inattribute c-src/etags.c 2400
1715inc cp-src/Range.h /^ double inc (void) const { return rng_inc; }$/
1716/inch ps-src/rfc1245.ps /^\/inch {72 mul} def$/
1717\include tex-src/texinfo.tex /^\\def\\include{\\parsearg\\includezzz}$/
1718\includezzz tex-src/texinfo.tex /^\\def\\includezzz #1{{\\def\\thisfile{#1}\\input #1$/
1719\indexbackslash tex-src/texinfo.tex /^ \\def\\indexbackslash{\\rawbackslashxx}$/
1720index c-src/emacs/src/lisp.h 1856
1721\indexdotfill tex-src/texinfo.tex /^\\def\\indexdotfill{\\cleaders$/
1722\indexdummies tex-src/texinfo.tex /^\\def\\indexdummies{%$/
1723\indexdummydots tex-src/texinfo.tex /^\\def\\indexdummydots{...}$/
1724\indexdummyfont tex-src/texinfo.tex /^\\def\\indexdummyfont#1{#1}$/
1725=\indexdummyfont tex-src/texinfo.tex /^\\let\\cite=\\indexdummyfont$/
1726\indexdummytex tex-src/texinfo.tex /^\\def\\indexdummytex{TeX}$/
1727\indexfonts tex-src/texinfo.tex /^\\def\\indexfonts{%$/
1728\indexnofonts tex-src/texinfo.tex /^\\def\\indexnofonts{%$/
1729\inENV tex-src/texinfo.tex /^\\newif\\ifENV \\ENVfalse \\def\\inENV{\\ifENV\\relax\\els/
1730infabsdir c-src/etags.c 206
1731infabsname c-src/etags.c 205
1732infiles make-src/Makefile /^infiles = $(filter-out ${NONSRCS},${SRCS}) srclist/
1733infname c-src/etags.c 204
1734\infoappendixsec tex-src/texinfo.tex /^\\def\\infoappendixsec{\\parsearg\\appendixseczzz}$/
1735\infoappendixsubsec tex-src/texinfo.tex /^\\def\\infoappendixsubsec{\\parsearg\\appendixsubseczz/
1736\infoappendixsubsubsec tex-src/texinfo.tex /^\\def\\infoappendixsubsubsec{\\parsearg\\appendixsubsu/
1737\infoappendix tex-src/texinfo.tex /^\\def\\infoappendix{\\parsearg\\appendixzzz}$/
1738\infochapter tex-src/texinfo.tex /^\\def\\infochapter{\\parsearg\\chapterzzz}$/
1739info c-src/emacs/src/gmalloc.c 157
1740infoPanel objcpp-src/SimpleCalc.M /^- infoPanel:sender$/
1741\inforef tex-src/texinfo.tex /^\\def\\inforef #1{\\inforefzzz #1,,,,**}$/
1742\inforefzzz tex-src/texinfo.tex /^\\def\\inforefzzz #1,#2,#3,#4**{See Info file \\file{/
1743\infosection tex-src/texinfo.tex /^\\def\\infosection{\\parsearg\\sectionzzz}$/
1744\infosubsection tex-src/texinfo.tex /^\\def\\infosubsection{\\parsearg\\subsectionzzz}$/
1745\infosubsubsection tex-src/texinfo.tex /^\\def\\infosubsubsection{\\parsearg\\subsubsectionzzz}/
1746\infotop tex-src/texinfo.tex /^\\def\\infotop{\\parsearg\\unnumberedzzz}$/
1747\infounnumberedsec tex-src/texinfo.tex /^\\def\\infounnumberedsec{\\parsearg\\unnumberedseczzz}/
1748\infounnumberedsubsec tex-src/texinfo.tex /^\\def\\infounnumberedsubsec{\\parsearg\\unnumberedsubs/
1749\infounnumberedsubsubsec tex-src/texinfo.tex /^\\def\\infounnumberedsubsubsec{\\parsearg\\unnumbereds/
1750\infounnumbered tex-src/texinfo.tex /^\\def\\infounnumbered{\\parsearg\\unnumberedzzz}$/
1751inita c.c /^static void inita () {}$/
1752initb c.c /^static void initb () {}$/
1753init_control c.c 239
1754init c-src/etags.c /^init (void)$/
1755Initialize_Cond/p ada-src/2ataspri.adb /^ procedure Initialize_Cond (Cond : in out Condit/
1756Initialize_Cond/p ada-src/2ataspri.ads /^ procedure Initialize_Cond (Cond : in out Condit/
1757initialize_goal_store merc-src/accumulator.m /^:- func initialize_goal_store(list(hlds_goal), ins/
1758Initialize_LL_Tasks/p ada-src/2ataspri.adb /^ procedure Initialize_LL_Tasks (T : TCB_Ptr) is$/
1759Initialize_LL_Tasks/p ada-src/2ataspri.ads /^ procedure Initialize_LL_Tasks (T : TCB_Ptr);$/
1760Initialize_Lock/p ada-src/2ataspri.adb /^ procedure Initialize_Lock$/
1761Initialize_Lock/p ada-src/2ataspri.ads /^ procedure Initialize_Lock (Prio : System.Any_Pr/
1762initialize-new-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun initialize-new-tags-table ()$/
1763initialize_random_junk y-src/cccp.y /^initialize_random_junk ()$/
1764InitializeStringPackage pas-src/common.pas /^procedure InitializeStringPackage;$/
1765Initialize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Initialize_TAS_Cell (Cell : out TAS_C/
1766Initialize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Initialize_TAS_Cell (Cell : out TA/
1767initial_kboard c-src/emacs/src/keyboard.c 84
1768\initial tex-src/texinfo.tex /^\\def\\initial #1{%$/
1769init_kboard c-src/emacs/src/keyboard.c /^init_kboard (KBOARD *kb, Lisp_Object type)$/
1770init_keyboard c-src/emacs/src/keyboard.c /^init_keyboard (void)$/
1771InitNameList pas-src/common.pas /^procedure InitNameList;$/
1772InitNameStringPool pas-src/common.pas /^procedure InitNameStringPool;$/
1773init objcpp-src/SimpleCalc.M /^- init$/
1774init objc-src/Subprocess.m /^ andStdErr:(BOOL)wantsStdErr$/
1775init objc-src/Subprocess.m /^- init:(const char *)subprocessString$/
1776__init__ pyt-src/server.py /^ def __init__(self):$/
1777__init__ pyt-src/server.py /^ def __init__(self, host, sitelist, master=None/
1778__init__ pyt-src/server.py /^ def __init__(self, master=None):$/
1779__init__ pyt-src/server.py /^ def __init__(self, Master, text, textvar, widt/
1780__init__ pyt-src/server.py /^ def __init__(self, newlegend, list, editor, ma/
1781__init__ pyt-src/server.py /^ def __init__(self, user, userlist, master=None/
1782init_registry cp-src/clheir.cpp /^void init_registry(void)$/
1783init_tool_bar_items c-src/emacs/src/keyboard.c /^init_tool_bar_items (Lisp_Object reuse)$/
1784Inner1/b ada-src/etags-test-for.ada /^ package body Inner1 is$/
1785Inner1/b ada-src/waroquiers.ada /^ package body Inner1 is$/
1786Inner1/s ada-src/etags-test-for.ada /^ package Inner1 is$/
1787Inner1/s ada-src/waroquiers.ada /^ package Inner1 is$/
1788Inner2/b ada-src/etags-test-for.ada /^ package body Inner2 is$/
1789Inner2/b ada-src/waroquiers.ada /^ package body Inner2 is$/
1790Inner2/s ada-src/etags-test-for.ada /^ package Inner2 is$/
1791Inner2/s ada-src/waroquiers.ada /^ package Inner2 is$/
1792input_available_clear_time c-src/emacs/src/keyboard.c 324
1793INPUT_EVENT_POS_MAX c-src/emacs/src/keyboard.c 3698
1794INPUT_EVENT_POS_MIN c-src/emacs/src/keyboard.c 3701
1795input_pending c-src/emacs/src/keyboard.c 239
1796input-pending-p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/
1797input_polling_used c-src/emacs/src/keyboard.c /^input_polling_used (void)$/
1798input_was_pending c-src/emacs/src/keyboard.c 287
1799insert-abbrev-table-description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/
1800insertion_type c-src/emacs/src/lisp.h 1989
1801insertname pas-src/common.pas /^function insertname;(*($/
1802INSERT_TREE_NODE pas-src/common.pas /^procedure INSERT_TREE_NODE;(*( $/
1803Install_Abort_Handler/p ada-src/2ataspri.adb /^ procedure Install_Abort_Handler (Handler : Abor/
1804Install_Abort_Handler/p ada-src/2ataspri.ads /^ procedure Install_Abort_Handler (Handler : Abor/
1805Install_Error_Handler/p ada-src/2ataspri.adb /^ procedure Install_Error_Handler (Handler : Syst/
1806Install_Error_Handler/p ada-src/2ataspri.ads /^ procedure Install_Error_Handler (Handler : Syst/
1807instance_method_equals= ruby-src/test.rb /^ def instance_method_equals=$/
1808instance_method_exclamation! ruby-src/test.rb /^ def instance_method_exclamation!$/
1809instance_method_question? ruby-src/test.rb /^ def instance_method_question?$/
1810instance_method ruby-src/test.rb /^ def instance_method$/
1811INSTANTIATE_MDIAGARRAY_FRIENDS cp-src/MDiagArray2.h /^#define INSTANTIATE_MDIAGARRAY_FRIENDS(T) \\$/
1812instruct c-src/etags.c 2527
1813instr y-src/parse.y 81
1814INT_BIT c-src/emacs/src/gmalloc.c 124
1815INT c-src/h.h 32
1816integer c-src/emacs/src/lisp.h 2127
1817integer_overflow y-src/cccp.y /^integer_overflow ()$/
1818INTEGERP c-src/emacs/src/lisp.h /^# define INTEGERP(x) lisp_h_INTEGERP (x)$/
1819INTEGER_TO_CONS c-src/emacs/src/lisp.h /^#define INTEGER_TO_CONS(i) \\$/
1820integertonmstr pas-src/common.pas /^function integertonmstr; (* (TheInteger : integer)/
1821integer y-src/cccp.y 112
1822intensity1 f-src/entry.for /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/
1823intensity1 f-src/entry.strange /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/
1824intensity1 f-src/entry.strange_suffix /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/
1825interface_locate c-src/c.c /^interface_locate(void)$/
1826interface merc-src/accumulator.m /^:- interface.$/
1827\internalBitem tex-src/texinfo.tex /^\\def\\internalBitem{\\smallbreak \\parsearg\\itemzzz}$/
1828\internalBitemx tex-src/texinfo.tex /^\\def\\internalBitemx{\\par \\parsearg\\itemzzz}$/
1829\internalBkitem tex-src/texinfo.tex /^\\def\\internalBkitem{\\smallbreak \\parsearg\\kitemzzz/
1830\internalBkitemx tex-src/texinfo.tex /^\\def\\internalBkitemx{\\par \\parsearg\\kitemzzz}$/
1831\internalBxitem tex-src/texinfo.tex /^\\def\\internalBxitem "#1"{\\def\\xitemsubtopix{#1} \\s/
1832\internalBxitemx tex-src/texinfo.tex /^\\def\\internalBxitemx "#1"{\\def\\xitemsubtopix{#1} \\/
1833internal_last_event_frame c-src/emacs/src/keyboard.c 228
1834\internalsetq tex-src/texinfo.tex /^\\def\\internalsetq #1#2{'xrdef {#1}{\\csname #2\\endc/
1835intern c-src/emacs/src/lisp.h /^intern (const char *str)$/
1836intern_c_string c-src/emacs/src/lisp.h /^intern_c_string (const char *str)$/
1837interned c-src/emacs/src/lisp.h 672
1838interpreters c-src/etags.c 197
1839interrupt_input_blocked c-src/emacs/src/keyboard.c 76
1840interrupt_input_blocked c-src/emacs/src/lisp.h 3048
1841interrupt_input c-src/emacs/src/keyboard.c 328
1842interrupts_deferred c-src/emacs/src/keyboard.c 331
1843INTERVAL c-src/emacs/src/lisp.h 1149
1844INTMASK c-src/emacs/src/lisp.h 437
1845int merc-src/accumulator.m /^:- import_module int.$/
1846intNumber go-src/test1.go 13
1847intoken c-src/etags.c /^#define intoken(c) (_itk[CHAR (c)]) \/* c can be in/
1848intspec c-src/emacs/src/lisp.h 1688
1849INTTYPEBITS c-src/emacs/src/lisp.h 249
1850INT_TYPE_SIZE y-src/cccp.y 91
1851intvar c-src/emacs/src/lisp.h 2277
1852INT y-src/cccp.c 6
1853invalidate_nodes c-src/etags.c /^invalidate_nodes (fdesc *badfdp, node **npp)$/
1854Invoking gzip tex-src/gzip.texi /^@node Invoking gzip, Advanced usage, Sample, Top$/
1855in_word_set c-src/etags.c /^in_word_set (register const char *str, register un/
1856io merc-src/accumulator.m /^:- import_module io.$/
1857IpAddrKind rs-src/test.rs 3
1858ipc3dChannelType cp-src/c.C 1
1859ipc3dCSC19 cp-src/c.C 6
1860ipc3dIslandHierarchy cp-src/c.C 1
1861ipc3dLinkControl cp-src/c.C 1
1862__ip c.c 159
1863/ip ps-src/rfc1245.ps /^\/ip { $/
1864/i ps-src/rfc1245.ps /^\/i \/j \/k \/l \/m \/n \/o \/p \/q \/r \/s \/t \/u \/v \/w \/x \/y/
1865irregular_location cp-src/clheir.hpp 47
1866irregular_location cp-src/clheir.hpp /^ irregular_location(double xi, double yi, doubl/
1867ISALNUM c-src/etags.c /^#define ISALNUM(c) isalnum (CHAR (c))$/
1868ISALPHA c-src/etags.c /^#define ISALPHA(c) isalpha (CHAR (c))$/
1869is_associative_construction merc-src/accumulator.m /^:- pred is_associative_construction(module_info::i/
1870isComment php-src/lce_functions.php /^ function isComment($class)$/
1871IsControlCharName pas-src/common.pas /^function IsControlCharName($/
1872IsControlChar pas-src/common.pas /^function IsControlChar; (*($/
1873is_curly_brace_form c-src/h.h 54
1874IS_DAEMON c-src/emacs/src/lisp.h 4257
1875IS_DAEMON c-src/emacs/src/lisp.h 4261
1876ISDIGIT c-src/etags.c /^#define ISDIGIT(c) isdigit (CHAR (c))$/
1877is_explicit c-src/h.h 49
1878is_func c-src/etags.c 221
1879isHoliday cp-src/functions.cpp /^bool isHoliday ( Date d ){$/
1880is_hor_space y-src/cccp.y 953
1881is_idchar y-src/cccp.y 948
1882is_idstart y-src/cccp.y 950
1883isLeap cp-src/functions.cpp /^bool isLeap ( int year ){$/
1884ISLOWER c-src/etags.c /^#define ISLOWER(c) islower (CHAR (c))$/
1885is_muldiv_operation cp-src/c.C /^is_muldiv_operation(pc)$/
1886ISO_FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5149
1887iso_lispy_function_keys c-src/emacs/src/keyboard.c 5151
1888isoperator prol-src/natded.prolog /^isoperator(Char):-$/
1889isoptab prol-src/natded.prolog /^isoptab('%').$/
1890is_ordset prol-src/ordsets.prolog /^is_ordset(X) :- var(X), !, fail.$/
1891is_recursive_case merc-src/accumulator.m /^:- pred is_recursive_case(list(hlds_goal)::in, pre/
1892Is_Set/f ada-src/2ataspri.adb /^ function Is_Set (Cell : in TAS_Cell) return Bo/
1893Is_Set/f ada-src/2ataspri.ads /^ function Is_Set (Cell : in TAS_Cell)/
1894ISUPPER c-src/etags.c /^# define ISUPPER(c) isupper (CHAR (c))$/
1895iswhite c-src/etags.c /^#define iswhite(c) (_wht[CHAR (c)]) \/* c is white /
1896\itemcontents tex-src/texinfo.tex /^\\def\\itemcontents{#1}%$/
1897\itemfont tex-src/texinfo.tex /^\\def\\itemfont{#2}%$/
1898\itemizeitem tex-src/texinfo.tex /^\\def\\itemizeitem{%$/
1899\itemize tex-src/texinfo.tex /^\\def\\itemize{\\parsearg\\itemizezzz}$/
1900\itemizey tex-src/texinfo.tex /^\\def\\itemizey #1#2{%$/
1901\itemizezzz tex-src/texinfo.tex /^\\def\\itemizezzz #1{%$/
1902item_properties c-src/emacs/src/keyboard.c 7568
1903\item tex-src/texinfo.tex /^\\def\\item{\\errmessage{@item while not in a table}}/
1904\itemx tex-src/texinfo.tex /^\\def\\itemx{\\errmessage{@itemx while not in a table/
1905\itemzzz tex-src/texinfo.tex /^\\def\\itemzzz #1{\\begingroup %$/
1906\i tex-src/texinfo.tex /^\\def\\i##1{\\realbackslash i {##1}}%$/
1907\i tex-src/texinfo.tex /^\\def\\i##1{\\realbackslash i {##1}}$/
1908JAVASRC make-src/Makefile /^JAVASRC=AWTEMul.java KeyEve.java SMan.java SysCol./
1909jmp c-src/emacs/src/lisp.h 3044
1910just_read_file c-src/etags.c /^just_read_file (FILE *inf)$/
1911kbd_buffer c-src/emacs/src/keyboard.c 291
1912kbd_buffer_events_waiting c-src/emacs/src/keyboard.c /^kbd_buffer_events_waiting (void)$/
1913kbd_buffer_get_event c-src/emacs/src/keyboard.c /^kbd_buffer_get_event (KBOARD **kbp,$/
1914kbd_buffer_nr_stored c-src/emacs/src/keyboard.c /^kbd_buffer_nr_stored (void)$/
1915KBD_BUFFER_SIZE c-src/emacs/src/keyboard.c 82
1916kbd_buffer_store_event c-src/emacs/src/keyboard.c /^kbd_buffer_store_event (register struct input_even/
1917kbd_buffer_store_event_hold c-src/emacs/src/keyboard.c /^kbd_buffer_store_event_hold (register struct input/
1918kbd_buffer_store_help_event c-src/emacs/src/keyboard.c /^kbd_buffer_store_help_event (Lisp_Object frame, Li/
1919kbd_buffer_unget_event c-src/emacs/src/keyboard.c /^kbd_buffer_unget_event (register struct input_even/
1920kbd_fetch_ptr c-src/emacs/src/keyboard.c 297
1921\kbdfoo tex-src/texinfo.tex /^\\def\\kbdfoo#1#2#3\\par{\\def\\one{#1}\\def\\three{#3}\\d/
1922kbd_store_ptr c-src/emacs/src/keyboard.c 302
1923\kbd tex-src/texinfo.tex /^\\def\\kbd#1{\\def\\look{#1}\\expandafter\\kbdfoo\\look??/
1924\kbd tex-src/texinfo.tex /^\\def\\kbd##1{\\realbackslash kbd {##1}}%$/
1925\kbd tex-src/texinfo.tex /^\\def\\kbd##1{\\realbackslash kbd {##1}}$/
1926kboard c-src/emacs/src/keyboard.c 860
1927kboard_stack c-src/emacs/src/keyboard.c 858
1928kboard_stack c-src/emacs/src/keyboard.c 864
1929KBYTES objc-src/PackInsp.m 58
1930key_and_value c-src/emacs/src/lisp.h 1868
1931keyremap c-src/emacs/src/keyboard.c 8742
1932keyremap c-src/emacs/src/keyboard.c 8754
1933keyremap_step c-src/emacs/src/keyboard.c /^keyremap_step (Lisp_Object *keybuf, int bufsize, v/
1934keys_of_keyboard c-src/emacs/src/keyboard.c /^keys_of_keyboard (void)$/
1935\key tex-src/texinfo.tex /^\\def\\key##1{\\realbackslash key {##1}}%$/
1936\key tex-src/texinfo.tex /^\\def\\key##1{\\realbackslash key {##1}}$/
1937\key tex-src/texinfo.tex /^\\def\\key #1{{\\tt \\exhyphenpenalty=10000\\uppercase{/
1938KEY_TO_CHAR c-src/emacs/src/keyboard.c /^#define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTE/
1939keyvalcgi prol-src/natded.prolog /^keyvalcgi(Key,Val):-$/
1940keyval prol-src/natded.prolog /^keyval(key(Key,Val)) --> [Key,'='], valseq(Val).$/
1941keyvalscgi prol-src/natded.prolog /^keyvalscgi(KeyVals),$/
1942keyvalseq prol-src/natded.prolog /^keyvalseq([KeyVal|KeyVals]) --> $/
1943keyword_parsing y-src/cccp.y 73
1944keywords y-src/cccp.y 114
1945keywords y-src/cccp.y 306
1946kind c-src/emacs/src/keyboard.c 11024
1947kind c-src/h.h 46
1948\kindex tex-src/texinfo.tex /^\\def\\kindex {\\kyindex}$/
1949\kitem tex-src/texinfo.tex /^\\def\\kitem{\\errmessage{@kitem while not in a table/
1950\kitemx tex-src/texinfo.tex /^\\def\\kitemx{\\errmessage{@kitemx while not in a tab/
1951\kitemzzz tex-src/texinfo.tex /^\\def\\kitemzzz #1{\\dosubind {kw}{\\code{#1}}{for {\\b/
1952kset_echo_string c-src/emacs/src/keyboard.c /^kset_echo_string (struct kboard *kb, Lisp_Object v/
1953kset_kbd_queue c-src/emacs/src/keyboard.c /^kset_kbd_queue (struct kboard *kb, Lisp_Object val/
1954kset_keyboard_translate_table c-src/emacs/src/keyboard.c /^kset_keyboard_translate_table (struct kboard *kb, /
1955kset_last_prefix_arg c-src/emacs/src/keyboard.c /^kset_last_prefix_arg (struct kboard *kb, Lisp_Obje/
1956kset_last_repeatable_command c-src/emacs/src/keyboard.c /^kset_last_repeatable_command (struct kboard *kb, L/
1957kset_local_function_key_map c-src/emacs/src/keyboard.c /^kset_local_function_key_map (struct kboard *kb, Li/
1958kset_overriding_terminal_local_map c-src/emacs/src/keyboard.c /^kset_overriding_terminal_local_map (struct kboard /
1959kset_real_last_command c-src/emacs/src/keyboard.c /^kset_real_last_command (struct kboard *kb, Lisp_Ob/
1960kset_system_key_syms c-src/emacs/src/keyboard.c /^kset_system_key_syms (struct kboard *kb, Lisp_Obje/
1961LabeledEntry pyt-src/server.py /^class LabeledEntry(Frame):$/
1962\labelspace tex-src/texinfo.tex /^\\def\\labelspace{\\hskip1em \\relax}$/
1963lang c-src/etags.c 208
1964lang c-src/etags.c 251
1965lang c-src/etags.c 259
1966Lang_function c-src/etags.c 182
1967Lang_function c-src/h.h 6
1968lang_names c-src/etags.c 718
1969language c-src/etags.c 199
1970last_abbrev_point c-src/abbrev.c 79
1971lasta c.c 272
1972lastargmargin tex-src/texinfo.tex /^\\newskip\\deflastargmargin \\deflastargmargin=18pt$/
1973lastargmargin tex-src/texinfo.tex /^\\setbox0=\\hbox{\\hskip \\deflastargmargin{\\rm #2}\\hs/
1974last_auto_save c-src/emacs/src/keyboard.c 214
1975lastb c.c 278
1976last_heapinfo c-src/emacs/src/gmalloc.c 402
1977last_mouse_button c-src/emacs/src/keyboard.c 5215
1978last_mouse_x c-src/emacs/src/keyboard.c 5216
1979last_mouse_y c-src/emacs/src/keyboard.c 5217
1980last_non_minibuf_size c-src/emacs/src/keyboard.c 207
1981last_point_position c-src/emacs/src/keyboard.c 217
1982last_state_size c-src/emacs/src/gmalloc.c 401
1983last-tag el-src/emacs/lisp/progmodes/etags.el /^(defvar last-tag nil$/
1984last_undo_boundary c-src/emacs/src/keyboard.c 1287
1985LATEST make-src/Makefile /^LATEST=17$/
1986lb c-src/etags.c 2923
1987\lbrb tex-src/texinfo.tex /^\\def\\lbrb{{\\bf\\char`\\[}} \\def\\rbrb{{\\bf\\char`\\]}}$/
1988lbs c-src/etags.c 2924
1989lce_bindtextdomain php-src/lce_functions.php /^ function lce_bindtextdomain($d_name, $d_path/
1990lce_bindtextdomain php-src/lce_functions.php /^ function lce_bindtextdomain($domain, $path)$/
1991LCE_COMMENT php-src/lce_functions.php 13
1992LCE_COMMENT_TOOL php-src/lce_functions.php 17
1993LCE_COMMENT_USER php-src/lce_functions.php 15
1994lce_dgettext php-src/lce_functions.php /^ function lce_dgettext($domain, $msgid)$/
1995LCE_FUNCTIONS php-src/lce_functions.php 4
1996lce_geteditcode php-src/lce_functions.php /^ function lce_geteditcode($type, $name, $text, $r/
1997lce_gettext php-src/lce_functions.php /^ function lce_gettext($msgid)$/
1998L_CELL y-src/parse.c 10
1999LCE_MSGID php-src/lce_functions.php 19
2000LCE_MSGSTR php-src/lce_functions.php 21
2001lce php-src/lce_functions.php /^ function lce()$/
2002lce_textdomain php-src/lce_functions.php /^ function lce_textdomain($domain)$/
2003LCE_TEXT php-src/lce_functions.php 23
2004LCE_UNKNOWN php-src/lce_functions.php 9
2005LCE_WS php-src/lce_functions.php 11
2006L_CONST y-src/parse.c 13
2007LDFLAGS make-src/Makefile /^LDFLAGS=#-static -lc_p$/
2008leasqr html-src/software.html /^Leasqr$/
2009left c-src/etags.c 216
2010left_shift y-src/cccp.y /^left_shift (a, b)$/
2011len c-src/etags.c 237
2012length c-src/etags.c 2495
2013length y-src/cccp.y 113
2014length y-src/cccp.y 44
2015LEQ y-src/cccp.c 14
2016/less ps-src/rfc1245.ps /^\/less \/equal \/greater \/question \/at \/A \/B \/C \/D \/E/
2017\less tex-src/texinfo.tex /^\\def\\less{\\realbackslash less}%$/
2018\less tex-src/texinfo.tex /^\\def\\less{\\realbackslash less}$/
2019let c-src/emacs/src/lisp.h 2981
2020letter tex-src/texinfo.tex /^ {#1}{Appendix \\appendixletter}{\\noexpand\\folio}}/
2021letter tex-src/texinfo.tex /^{#1}{\\appendixletter}{\\the\\secno}{\\noexpand\\folio}/
2022letter tex-src/texinfo.tex /^{#1}{\\appendixletter}{\\the\\secno}{\\the\\subsecno}{\\/
2023letter tex-src/texinfo.tex /^ {\\appendixletter}$/
2024letter tex-src/texinfo.tex /^ {\\appendixletter}{\\the\\secno}{\\the\\subsecno}{\\th/
2025letter tex-src/texinfo.tex /^\\chapmacro {#1}{Appendix \\appendixletter}%$/
2026letter tex-src/texinfo.tex /^\\gdef\\thissection{#1}\\secheading {#1}{\\appendixlet/
2027letter tex-src/texinfo.tex /^\\subsecheading {#1}{\\appendixletter}{\\the\\secno}{\\/
2028letter: tex-src/texinfo.tex /^\\xdef\\thischapter{Appendix \\appendixletter: \\noexp/
2029level c-src/emacs/src/lisp.h 3153
2030lex prol-src/natded.prolog /^lex(W,SynOut,Sem):-$/
2031lexptr y-src/cccp.y 332
2032LE y-src/parse.c 7
2033L_FN0 y-src/parse.c 14
2034L_FN1R y-src/parse.c 20
2035L_FN1 y-src/parse.c 15
2036L_FN2R y-src/parse.c 21
2037L_FN2 y-src/parse.c 16
2038L_FN3R y-src/parse.c 22
2039L_FN3 y-src/parse.c 17
2040L_FN4R y-src/parse.c 23
2041L_FN4 y-src/parse.c 18
2042L_FNNR y-src/parse.c 24
2043L_FNN y-src/parse.c 19
2044L_getit c-src/etags.c /^L_getit (void)$/
2045L_GE y-src/parse.c 27
2046__libc_atexit c-src/exit.c 30
2047__libc_atexit c-src/exit.strange_suffix 30
2048libs merc-src/accumulator.m /^:- import_module libs.$/
2049licenze html-src/softwarelibero.html /^Licenze d'uso di un programma$/
2050LIGHTBLUE cp-src/screen.hpp 21
2051LIGHTCYAN cp-src/screen.hpp 23
2052LIGHTGRAY cp-src/screen.hpp 19
2053LIGHTGREEN cp-src/screen.hpp 22
2054LIGHTMAGENTA cp-src/screen.hpp 25
2055LIGHTRED cp-src/screen.hpp 24
2056limit cp-src/Range.h /^ double limit (void) const { return rng_limit; }$/
2057linebuffer c-src/etags.c 239
2058linebuffer_init c-src/etags.c /^linebuffer_init (linebuffer *lbp)$/
2059linebuffer_setlen c-src/etags.c /^linebuffer_setlen (linebuffer *lbp, int toksize)$/
2060lineCount php-src/lce_functions.php /^ function lineCount($entry)$/
2061line c-src/etags.c 2493
2062lineno c-src/emacs/src/lisp.h 3147
2063lineno c-src/etags.c 2506
2064\linenumber tex-src/texinfo.tex /^ \\def\\linenumber{\\the\\inputlineno:\\space}$/
2065line perl-src/htlmify-cystic 37
2066linepos c-src/etags.c 2507
2067linepos c-src/etags.c 2922
2068line y-src/parse.y 87
2069links html-src/software.html /^Links to interesting software$/
2070Lisp_Bits c-src/emacs/src/lisp.h 239
2071Lisp_Boolfwd c-src/emacs/src/lisp.h 2284
2072Lisp_Bool_Vector c-src/emacs/src/lisp.h 1384
2073Lisp_Buffer_Local_Value c-src/emacs/src/lisp.h 2334
2074Lisp_Buffer_Objfwd c-src/emacs/src/lisp.h 2302
2075Lisp_Char_Table c-src/emacs/src/lisp.h 1575
2076Lisp_Compiled c-src/emacs/src/lisp.h 2429
2077Lisp_Cons c-src/emacs/src/lisp.h 475
2078lisp_eval_depth c-src/emacs/src/lisp.h 3045
2079Lisp_Finalizer c-src/emacs/src/lisp.h 2186
2080Lisp_Float c-src/emacs/src/lisp.h 2391
2081Lisp_Float c-src/emacs/src/lisp.h 477
2082Lisp_Free c-src/emacs/src/lisp.h 2201
2083Lisp_functions c-src/etags.c /^Lisp_functions (FILE *inf)$/
2084Lisp_Fwd_Bool c-src/emacs/src/lisp.h 505
2085Lisp_Fwd_Buffer_Obj c-src/emacs/src/lisp.h 507
2086Lisp_Fwd c-src/emacs/src/lisp.h 2368
2087Lisp_Fwd_Int c-src/emacs/src/lisp.h 504
2088Lisp_Fwd_Kboard_Obj c-src/emacs/src/lisp.h 508
2089Lisp_Fwd_Obj c-src/emacs/src/lisp.h 506
2090Lisp_Fwd_Type c-src/emacs/src/lisp.h 502
2091Lisp_Hash_Table c-src/emacs/src/lisp.h 1823
2092lisp_h_check_cons_list c-src/emacs/src/lisp.h /^# define lisp_h_check_cons_list() ((void) 0)$/
2093lisp_h_CHECK_LIST_CONS c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_LIST_CONS(x, y) CHECK_TYPE (C/
2094lisp_h_CHECK_NUMBER c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_NUMBER(x) CHECK_TYPE (INTEGER/
2095lisp_h_CHECK_SYMBOL c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_SYMBOL(x) CHECK_TYPE (SYMBOLP/
2096lisp_h_CHECK_TYPE c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_TYPE(ok, predicate, x) \\$/
2097lisp_h_CONSP c-src/emacs/src/lisp.h /^#define lisp_h_CONSP(x) (XTYPE (x) == Lisp_Cons)$/
2098Lisp_help c-src/etags.c 591
2099lisp_h_EQ c-src/emacs/src/lisp.h /^#define lisp_h_EQ(x, y) (XLI (x) == XLI (y))$/
2100lisp_h_FLOATP c-src/emacs/src/lisp.h /^#define lisp_h_FLOATP(x) (XTYPE (x) == Lisp_Float)/
2101lisp_h_INTEGERP c-src/emacs/src/lisp.h /^#define lisp_h_INTEGERP(x) ((XTYPE (x) & (Lisp_Int/
2102lisp_h_make_number c-src/emacs/src/lisp.h /^# define lisp_h_make_number(n) \\$/
2103lisp_h_MARKERP c-src/emacs/src/lisp.h /^#define lisp_h_MARKERP(x) (MISCP (x) && XMISCTYPE /
2104lisp_h_MISCP c-src/emacs/src/lisp.h /^#define lisp_h_MISCP(x) (XTYPE (x) == Lisp_Misc)$/
2105lisp_h_NILP c-src/emacs/src/lisp.h /^#define lisp_h_NILP(x) EQ (x, Qnil)$/
2106lisp_h_SET_SYMBOL_VAL c-src/emacs/src/lisp.h /^#define lisp_h_SET_SYMBOL_VAL(sym, v) \\$/
2107lisp_h_SYMBOL_CONSTANT_P c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOL_CONSTANT_P(sym) (XSYMBOL (sy/
2108lisp_h_SYMBOLP c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOLP(x) (XTYPE (x) == Lisp_Symbo/
2109lisp_h_SYMBOL_VAL c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOL_VAL(sym) \\$/
2110lisp_h_VECTORLIKEP c-src/emacs/src/lisp.h /^#define lisp_h_VECTORLIKEP(x) (XTYPE (x) == Lisp_V/
2111lisp_h_XCAR c-src/emacs/src/lisp.h /^#define lisp_h_XCAR(c) XCONS (c)->car$/
2112lisp_h_XCDR c-src/emacs/src/lisp.h /^#define lisp_h_XCDR(c) XCONS (c)->u.cdr$/
2113lisp_h_XCONS c-src/emacs/src/lisp.h /^#define lisp_h_XCONS(a) \\$/
2114lisp_h_XFASTINT c-src/emacs/src/lisp.h /^# define lisp_h_XFASTINT(a) XINT (a)$/
2115lisp_h_XHASH c-src/emacs/src/lisp.h /^#define lisp_h_XHASH(a) XUINT (a)$/
2116lisp_h_XIL c-src/emacs/src/lisp.h /^# define lisp_h_XIL(i) (i)$/
2117lisp_h_XIL c-src/emacs/src/lisp.h /^# define lisp_h_XIL(i) ((Lisp_Object) { i })$/
2118lisp_h_XINT c-src/emacs/src/lisp.h /^# define lisp_h_XINT(a) (XLI (a) >> INTTYPEBITS)$/
2119lisp_h_XLI c-src/emacs/src/lisp.h /^# define lisp_h_XLI(o) (o)$/
2120lisp_h_XLI c-src/emacs/src/lisp.h /^# define lisp_h_XLI(o) ((o).i)$/
2121lisp_h_XPNTR c-src/emacs/src/lisp.h /^#define lisp_h_XPNTR(a) \\$/
2122lisp_h_XSYMBOL c-src/emacs/src/lisp.h /^# define lisp_h_XSYMBOL(a) \\$/
2123lisp_h_XTYPE c-src/emacs/src/lisp.h /^# define lisp_h_XTYPE(a) ((enum Lisp_Type) (XLI (a/
2124lisp_h_XUNTAG c-src/emacs/src/lisp.h /^# define lisp_h_XUNTAG(a, type) ((void *) (intptr_/
2125LISP_INITIALLY c-src/emacs/src/lisp.h /^#define LISP_INITIALLY(i) (i)$/
2126LISP_INITIALLY c-src/emacs/src/lisp.h /^#define LISP_INITIALLY(i) {i}$/
2127LISP_INITIALLY_ZERO c-src/emacs/src/lisp.h 582
2128Lisp_Int0 c-src/emacs/src/lisp.h 461
2129Lisp_Int1 c-src/emacs/src/lisp.h 462
2130Lisp_Intfwd c-src/emacs/src/lisp.h 2274
2131Lisp_Kboard_Objfwd c-src/emacs/src/lisp.h 2362
2132LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^#define LISP_MACRO_DEFUN(name, type, argdecls, arg/
2133LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (CONSP, bool, (Lisp_Object x), (x/
2134LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (NILP, bool, (Lisp_Object x), (x)/
2135LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (SYMBOL_VAL, Lisp_Object, (struct/
2136LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XCAR, Lisp_Object, (Lisp_Object /
2137LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XCONS, struct Lisp_Cons *, (Lisp/
2138LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XHASH, EMACS_INT, (Lisp_Object a/
2139LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XLI, EMACS_INT, (Lisp_Object o),/
2140LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XPNTR, void *, (Lisp_Object a), /
2141LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^#define LISP_MACRO_DEFUN_VOID(name, argdecls, args/
2142LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (CHECK_LIST_CONS, (Lisp_Obje/
2143LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (CHECK_TYPE,$/
2144LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (SET_SYMBOL_VAL,$/
2145Lisp_Marker c-src/emacs/src/lisp.h 1978
2146Lisp_Misc_Any c-src/emacs/src/lisp.h 1971
2147Lisp_Misc c-src/emacs/src/lisp.h 2212
2148Lisp_Misc c-src/emacs/src/lisp.h 458
2149Lisp_Misc_Finalizer c-src/emacs/src/lisp.h 491
2150Lisp_Misc_Float c-src/emacs/src/lisp.h 494
2151Lisp_Misc_Free c-src/emacs/src/lisp.h 487
2152Lisp_Misc_Limit c-src/emacs/src/lisp.h 496
2153Lisp_Misc_Marker c-src/emacs/src/lisp.h 488
2154Lisp_Misc_Overlay c-src/emacs/src/lisp.h 489
2155Lisp_Misc_Save_Value c-src/emacs/src/lisp.h 490
2156Lisp_Misc_Type c-src/emacs/src/lisp.h 485
2157Lisp_Object c-src/emacs/src/lisp.h 567
2158Lisp_Object c-src/emacs/src/lisp.h 577
2159Lisp_Objfwd c-src/emacs/src/lisp.h 2294
2160Lisp_Overlay c-src/emacs/src/lisp.h 2021
2161Lisp_Save_Type c-src/emacs/src/lisp.h 2064
2162Lisp_Save_Value c-src/emacs/src/lisp.h 2110
2163Lisp_String c-src/emacs/src/lisp.h 466
2164Lisp_Sub_Char_Table c-src/emacs/src/lisp.h 1606
2165Lisp_Subr c-src/emacs/src/lisp.h 1670
2166Lisp_suffixes c-src/etags.c 589
2167Lisp_Symbol c-src/emacs/src/lisp.h 454
2168Lisp_Symbol c-src/emacs/src/lisp.h 654
2169\lisp tex-src/texinfo.tex /^\\def\\lisp{\\aboveenvbreak$/
2170Lisp_Type c-src/emacs/src/lisp.h 451
2171Lisp_Vector c-src/emacs/src/lisp.h 1369
2172Lisp_Vectorlike c-src/emacs/src/lisp.h 472
2173lispy_accent_codes c-src/emacs/src/keyboard.c 4634
2174lispy_accent_keys c-src/emacs/src/keyboard.c 4741
2175lispy_drag_n_drop_names c-src/emacs/src/keyboard.c 5181
2176lispy_function_keys c-src/emacs/src/keyboard.c 4768
2177lispy_function_keys c-src/emacs/src/keyboard.c 5065
2178lispy_kana_keys c-src/emacs/src/keyboard.c 5026
2179lispy_modifier_list c-src/emacs/src/keyboard.c /^lispy_modifier_list (int modifiers)$/
2180lispy_multimedia_keys c-src/emacs/src/keyboard.c 4962
2181lispy_wheel_names c-src/emacs/src/keyboard.c 5174
2182list2i c-src/emacs/src/lisp.h /^list2i (EMACS_INT x, EMACS_INT y)$/
2183list3i c-src/emacs/src/lisp.h /^list3i (EMACS_INT x, EMACS_INT y, EMACS_INT w)$/
2184list4i c-src/emacs/src/lisp.h /^list4i (EMACS_INT x, EMACS_INT y, EMACS_INT w, EMA/
2185LISTCONTENTSBUTTON objc-src/PackInsp.m 48
2186LISTCONTENTS objc-src/PackInsp.m 39
2187list c-src/emacs/src/gmalloc.c 186
2188LISTDESCRIPTIONBUTTON objc-src/PackInsp.m 49
2189ListEdit pyt-src/server.py /^class ListEdit(Frame):$/
2190list merc-src/accumulator.m /^:- import_module list.$/
2191list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun list-tags (file &optional _next-match)$/
2192list-tags-function el-src/emacs/lisp/progmodes/etags.el /^(defvar list-tags-function nil$/
2193list_to_ord_set prol-src/ordsets.prolog /^list_to_ord_set(List, Set) :-$/
2194LL_Assert/p ada-src/2ataspri.adb /^ procedure LL_Assert (B : Boolean; M : String) i/
2195LL_Assert/p ada-src/2ataspri.ads /^ procedure LL_Assert (B : Boolean; M : String);$/
2196L_LE y-src/parse.c 25
2197LL_Task_Procedure_Access/t ada-src/2ataspri.ads /^ type LL_Task_Procedure_Access is access procedu/
2198LL_Task_Procedure_Access/t ada-src/etags-test-for.ada /^ type LL_Task_Procedure_Access is access procedu/
2199LL_Wrapper/p ada-src/2ataspri.adb /^ procedure LL_Wrapper (T : TCB_Ptr);$/
2200LL_Wrapper/p ada-src/2ataspri.adb /^ procedure LL_Wrapper (T : TCB_Ptr) is$/
2201LL_Wrapper/p ada-src/etags-test-for.ada /^ procedure LL_Wrapper (T : TCB_Ptr);$/
2202L_NE y-src/parse.c 26
2203lno c-src/etags.c 223
2204/lnormalize ps-src/rfc1245.ps /^\/lnormalize { $/
2205loadContentsOf objc-src/PackInsp.m /^-loadContentsOf:(const char *)type inTable:(HashTa/
2206loadImage objc-src/PackInsp.m /^-loadImage$/
2207loadKeyValuesFrom objc-src/PackInsp.m /^-loadKeyValuesFrom:(const char *)type inTable:(Has/
2208load objc-src/PackInsp.m /^-load$/
2209loadPORManager php-src/lce_functions.php /^ function &loadPORManager()$/
2210local_if_set c-src/emacs/src/lisp.h 2338
2211LOCALIZE_ARCH objc-src/PackInsp.m /^#define LOCALIZE_ARCH(s) NXLoadLocalizedStringFrom/
2212LOCALIZE objc-src/PackInsp.m /^#define LOCALIZE(s) NXLoadLocalizedStringFromTabl/
2213Locate pas-src/common.pas /^function Locate; (*($/
2214location cp-src/clheir.hpp 33
2215location cp-src/clheir.hpp /^ location() { }$/
2216LOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define LOCK_ALIGNED_BLOCKS() \\$/
2217LOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define LOCK_ALIGNED_BLOCKS()$/
2218LOCK c-src/emacs/src/gmalloc.c /^#define LOCK() \\$/
2219LOCK c-src/emacs/src/gmalloc.c /^#define LOCK()$/
2220Lock/t ada-src/2ataspri.ads /^ type Lock is$/
2221Lock/t ada-src/2ataspri.ads /^ type Lock is private;$/
2222\loggingall tex-src/texinfo.tex /^\\def\\loggingall{\\tracingcommands2 \\tracingstats2 $/
2223LONG_TYPE_SIZE y-src/cccp.y 95
2224LOOKING_AT c-src/etags.c /^#define LOOKING_AT(cp, kw) \/* kw is the keyword, /
2225LOOKING_AT_NOCASE c-src/etags.c /^#define LOOKING_AT_NOCASE(cp, kw) \/* the keyword i/
2226lookup_call merc-src/accumulator.m /^:- pred lookup_call(accu_goal_store::in, accu_goal/
2227LOOKUP objc-src/PackInsp.m 176
2228LOOKUP objc-src/PackInsp.m /^#define LOOKUP(key, notfound) ([table isKey:key] ?/
2229lookup y-src/cccp.y /^lookup (name, len, hash)$/
2230LOOP_ON_INPUT_LINES c-src/etags.c /^#define LOOP_ON_INPUT_LINES(file_pointer, line_buf/
2231\losespace tex-src/texinfo.tex /^\\def\\losespace #1{#1}$/
2232lowcase c-src/etags.c /^#define lowcase(c) tolower (CHAR (c))$/
2233\lowercaseenumerate tex-src/texinfo.tex /^\\def\\lowercaseenumerate{%$/
2234LowerCaseNmStr pas-src/common.pas /^function LowerCaseNmStr; (*($/
2235/L ps-src/rfc1245.ps /^\/L { $/
2236/L ps-src/rfc1245.ps /^\/L \/M \/N \/O \/P \/Q \/R \/S \/T \/U \/V \/W \/X \/Y \/Z \/brac/
2237L_RANGE y-src/parse.c 11
2238LSH y-src/cccp.c 16
2239\l tex-src/texinfo.tex /^\\def\\l#1{{\\li #1}\\null} % $/
2240LTGT cp-src/MDiagArray2.h 144
2241LTGT cp-src/MDiagArray2.h 35
2242LTGT cp-src/MDiagArray2.h 39
2243LTGT cp-src/MDiagArray2.h 42
2244Lua_functions c-src/etags.c /^Lua_functions (FILE *inf)$/
2245Lua_help c-src/etags.c 600
2246LUASRC make-src/Makefile /^LUASRC=allegro.lua$/
2247Lua_suffixes c-src/etags.c 598
2248lucid_event_type_list_p c-src/emacs/src/keyboard.c /^lucid_event_type_list_p (Lisp_Object object)$/
2249L_VAR y-src/parse.c 12
2250\lvvmode tex-src/texinfo.tex /^\\def\\lvvmode{\\vbox to 0pt{}}$/
2251mabort c-src/emacs/src/gmalloc.c /^mabort (enum mcheck_status status)$/
2252mach_host_self c-src/machsyscalls.h /^SYSCALL (mach_host_self, -29,$/
2253Machine_Exceptions/t ada-src/2ataspri.ads /^ type Machine_Exceptions is new Interfaces.C.POS/
2254Machin_T/b ada-src/waroquiers.ada /^ protected body Machin_T is$/
2255Machin_T/t ada-src/etags-test-for.ada /^ protected Machin_T is$/
2256Machin_T/t ada-src/etags-test-for.ada /^ protected type Machin_T is$/
2257Machin_T/t ada-src/waroquiers.ada /^ protected type Machin_T is$/
2258mach_msg_trap c-src/machsyscalls.h /^SYSCALL (mach_msg_trap, -25,$/
2259mach_reply_port c-src/machsyscalls.h /^SYSCALL (mach_reply_port, -26,$/
2260mach_task_self c-src/machsyscalls.h /^SYSCALL (mach_task_self, -28,$/
2261mach_thread_self c-src/machsyscalls.h /^SYSCALL (mach_thread_self, -27,$/
2262MAGENTA cp-src/screen.hpp 17
2263MAGICBYTE c-src/emacs/src/gmalloc.c 1856
2264magic c-src/emacs/src/gmalloc.c 1863
2265MAGICFREE c-src/emacs/src/gmalloc.c 1855
2266MAGICWORD c-src/emacs/src/gmalloc.c 1854
2267maintaining.info make-src/Makefile /^maintaining.info: maintaining.texi$/
2268\majorheading tex-src/texinfo.tex /^\\def\\majorheading{\\parsearg\\majorheadingzzz}$/
2269\majorheadingzzz tex-src/texinfo.tex /^\\def\\majorheadingzzz #1{%$/
2270make-abbrev-table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/
2271make_coor prol-src/natded.prolog /^make_coor(s(_),Alpha,Sem1,Sem2,Alpha@Sem1@Sem2).$/
2272make_C_tag c-src/etags.c /^make_C_tag (bool isfun)$/
2273make_ctrl_char c-src/emacs/src/keyboard.c /^make_ctrl_char (int c)$/
2274MakeDispose pyt-src/server.py /^ def MakeDispose(self):$/
2275Makefile_filenames c-src/etags.c 603
2276Makefile_help c-src/etags.c 605
2277Makefile_targets c-src/etags.c /^Makefile_targets (FILE *inf)$/
2278make_fixnum_or_float c-src/emacs/src/lisp.h /^#define make_fixnum_or_float(val) \\$/
2279make_formatted_string c-src/emacs/src/lisp.h /^extern Lisp_Object make_formatted_string (char *, /
2280make_lisp_ptr c-src/emacs/src/lisp.h /^make_lisp_ptr (void *ptr, enum Lisp_Type type)$/
2281make_lisp_symbol c-src/emacs/src/lisp.h /^make_lisp_symbol (struct Lisp_Symbol *sym)$/
2282make_lispy_event c-src/emacs/src/keyboard.c /^make_lispy_event (struct input_event *event)$/
2283make_lispy_focus_in c-src/emacs/src/keyboard.c /^make_lispy_focus_in (Lisp_Object frame)$/
2284make_lispy_focus_out c-src/emacs/src/keyboard.c /^make_lispy_focus_out (Lisp_Object frame)$/
2285make_lispy_movement c-src/emacs/src/keyboard.c /^make_lispy_movement (struct frame *frame, Lisp_Obj/
2286make_lispy_position c-src/emacs/src/keyboard.c /^make_lispy_position (struct frame *f, Lisp_Object /
2287make_lispy_switch_frame c-src/emacs/src/keyboard.c /^make_lispy_switch_frame (Lisp_Object frame)$/
2288MAKE make-src/Makefile /^MAKE:=$(MAKE) --no-print-directory$/
2289make_number c-src/emacs/src/lisp.h /^# define make_number(n) lisp_h_make_number (n)$/
2290make_pointer_integer c-src/emacs/src/lisp.h /^make_pointer_integer (void *p)$/
2291make_scroll_bar_position c-src/emacs/src/keyboard.c /^make_scroll_bar_position (struct input_event *ev, /
2292MakeSitelist pyt-src/server.py /^ def MakeSitelist(self, master):$/
2293MAKESRC make-src/Makefile /^MAKESRC=Makefile$/
2294make_tag c-src/etags.c /^make_tag (const char *name, \/* tag name, or NULL /
2295make_uninit_sub_char_table c-src/emacs/src/lisp.h /^make_uninit_sub_char_table (int depth, int min_cha/
2296make_uninit_vector c-src/emacs/src/lisp.h /^make_uninit_vector (ptrdiff_t size)$/
2297malloc_atfork_handler_child c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_child (void)$/
2298malloc_atfork_handler_parent c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_parent (void)$/
2299malloc_atfork_handler_prepare c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_prepare (void)$/
2300malloc c-src/emacs/src/gmalloc.c 1715
2301malloc c-src/emacs/src/gmalloc.c 64
2302malloc c-src/emacs/src/gmalloc.c 68
2303malloc c-src/emacs/src/gmalloc.c /^extern void *malloc (size_t size) ATTRIBUTE_MALLOC/
2304_malloc c-src/emacs/src/gmalloc.c /^_malloc (size_t size)$/
2305malloc c-src/emacs/src/gmalloc.c /^malloc (size_t size)$/
2306malloc_enable_thread c-src/emacs/src/gmalloc.c /^malloc_enable_thread (void)$/
2307__malloc_extra_blocks c-src/emacs/src/gmalloc.c 381
2308MALLOCFLOOD c-src/emacs/src/gmalloc.c 1857
2309mallochook c-src/emacs/src/gmalloc.c /^mallochook (size_t size)$/
2310malloc_info c-src/emacs/src/gmalloc.c 167
2311malloc_initialize_1 c-src/emacs/src/gmalloc.c /^malloc_initialize_1 (void)$/
2312__malloc_initialize c-src/emacs/src/gmalloc.c /^__malloc_initialize (void)$/
2313__malloc_initialized c-src/emacs/src/gmalloc.c 379
2314_malloc_internal c-src/emacs/src/gmalloc.c /^_malloc_internal (size_t size)$/
2315_malloc_internal_nolock c-src/emacs/src/gmalloc.c /^_malloc_internal_nolock (size_t size)$/
2316_malloc_mutex c-src/emacs/src/gmalloc.c 517
2317_malloc_thread_enabled_p c-src/emacs/src/gmalloc.c 519
2318man manpage make-src/Makefile /^man manpage: etags.1.man$/
2319/manualpapersize ps-src/rfc1245.ps /^\/manualpapersize {$/
2320MANY c-src/emacs/src/lisp.h 2833
2321mao c-src/h.h 101
2322map c-src/emacs/src/keyboard.c 8748
2323map merc-src/accumulator.m /^:- import_module map.$/
2324mapping html-src/algrthms.html /^Mapping the Channel Symbols$/
2325mapsyn prol-src/natded.prolog /^mapsyn(A\/B,AM\/BM):-$/
2326map_word prol-src/natded.prolog /^map_word([[_]|Ws],Exp):-$/
2327MARKERP c-src/emacs/src/lisp.h /^# define MARKERP(x) lisp_h_MARKERP (x)$/
2328mark_kboards c-src/emacs/src/keyboard.c /^mark_kboards (void)$/
2329\math tex-src/texinfo.tex /^\\def\\math#1{\\implicitmath #1\\implicitmath}$/
2330MAX_ALLOCA c-src/emacs/src/lisp.h 4556
2331max_args c-src/emacs/src/lisp.h 1686
2332maxargs c-src/emacs/src/lisp.h 2831
2333max c.c /^__attribute__ ((always_inline)) max (int a, int b)/
2334max c.c /^max (int a, int b)$/
2335max cp-src/conway.cpp /^#define max(x,y) ((x > y) ? x : y)$/
2336max c-src/emacs/src/lisp.h 58
2337max c-src/emacs/src/lisp.h /^#define max(a, b) ((a) > (b) ? (a) : (b))$/
2338MAX_ENCODED_BYTES c-src/emacs/src/keyboard.c 2254
2339MAX_HASH_VALUE c-src/etags.c 2329
2340max_num_directions cp-src/clheir.hpp 31
2341max_num_generic_objects cp-src/clheir.cpp 9
2342MAXPATHLEN c-src/etags.c 115
2343/max ps-src/rfc1245.ps /^\/max {2 copy lt {exch} if pop} bind def$/
2344MAX_WORD_LENGTH c-src/etags.c 2327
2345maybe_gc c-src/emacs/src/lisp.h /^maybe_gc (void)$/
2346maybe merc-src/accumulator.m /^:- import_module maybe.$/
2347MAYBEREL y-src/parse.y /^#define MAYBEREL(p) (*(p)=='[' && (isdigit((p)[1])/
2348MBYTES objc-src/PackInsp.m 59
2349Mcccp y-src/cccp.y /^main ()$/
2350Mc cp-src/c.C /^int main (void) { my_function0(0); my_function1(1)/
2351mcCSC cp-src/c.C 6
2352mcheck c-src/emacs/src/gmalloc.c /^mcheck (void (*func) (enum mcheck_status))$/
2353MCHECK_DISABLED c-src/emacs/src/gmalloc.c 285
2354MCHECK_FREE c-src/emacs/src/gmalloc.c 287
2355MCHECK_HEAD c-src/emacs/src/gmalloc.c 288
2356MCHECK_OK c-src/emacs/src/gmalloc.c 286
2357mcheck_status c-src/emacs/src/gmalloc.c 283
2358MCHECK_TAIL c-src/emacs/src/gmalloc.c 289
2359mcheck_used c-src/emacs/src/gmalloc.c 2012
2360Mconway.cpp cp-src/conway.cpp /^void main(void)$/
2361mdbcomp merc-src/accumulator.m /^:- import_module mdbcomp.$/
2362MDiagArray2 cp-src/MDiagArray2.h 78
2363MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const Array<T>& a) : DiagArray2<T> /
2364MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const DiagArray2<T>& a) : DiagArray/
2365MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const MDiagArray2<T>& a) : DiagArra/
2366MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (int r, int c, const T& val) : DiagA/
2367MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (int r, int c) : DiagArray2<T> (r, c/
2368MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (T *d, int r, int c) : DiagArray2<T>/
2369~MDiagArray2 cp-src/MDiagArray2.h /^ ~MDiagArray2 (void) { }$/
2370MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (void) : DiagArray2<T> () { }$/
2371me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/
2372me22b lua-src/test.lua /^ local function test.me22b (one)$/
2373memalign c-src/emacs/src/gmalloc.c /^memalign (size_t alignment, size_t size)$/
2374member_lessthan_goalid merc-src/accumulator.m /^:- pred member_lessthan_goalid(accu_goal_store::in/
2375member prol-src/natded.prolog /^member(X,[X|_]).$/
2376memclear c-src/emacs/src/lisp.h /^memclear (void *p, ptrdiff_t nbytes)$/
2377menu_bar_item c-src/emacs/src/keyboard.c /^menu_bar_item (Lisp_Object key, Lisp_Object item, /
2378menu_bar_items c-src/emacs/src/keyboard.c /^menu_bar_items (Lisp_Object old)$/
2379menu_bar_items_index c-src/emacs/src/keyboard.c 7369
2380menu_bar_items_vector c-src/emacs/src/keyboard.c 7368
2381menu_bar_one_keymap_changed_items c-src/emacs/src/keyboard.c 7363
2382menu_item_eval_property_1 c-src/emacs/src/keyboard.c /^menu_item_eval_property_1 (Lisp_Object arg)$/
2383menu_item_eval_property c-src/emacs/src/keyboard.c /^menu_item_eval_property (Lisp_Object sexpr)$/
2384menu_separator_name_p c-src/emacs/src/keyboard.c /^menu_separator_name_p (const char *label)$/
2385\menu tex-src/texinfo.tex /^\\long\\def\\menu #1\\end menu{}$/
2386Metags c-src/etags.c /^main (int argc, char **argv)$/
2387metasource c-src/etags.c 198
2388Mfail cp-src/fail.C /^main()$/
2389min_args c-src/emacs/src/lisp.h 1686
2390min_char c-src/emacs/src/lisp.h 1621
2391min cp-src/conway.cpp /^#define min(x,y) ((x > y) ? y : x)$/
2392min c-src/emacs/src/gmalloc.c /^#define min(a, b) ((a) < (b) ? (a) : (b))$/
2393min c-src/emacs/src/lisp.h 57
2394min c-src/emacs/src/lisp.h /^#define min(a, b) ((a) < (b) ? (a) : (b))$/
2395MIN_HASH_VALUE c-src/etags.c 2328
2396/min ps-src/rfc1245.ps /^\/min {2 copy gt {exch} if pop} bind def$/
2397minus cp-src/functions.cpp /^void Date::minus ( int days , int month , int year/
2398\minus tex-src/texinfo.tex /^\\def\\minus{$-$}$/
2399MIN_WORD_LENGTH c-src/etags.c 2326
2400MISCP c-src/emacs/src/lisp.h /^# define MISCP(x) lisp_h_MISCP (x)$/
2401miti html-src/softwarelibero.html /^Sfatiamo alcuni miti$/
2402Mkai-test.pl perl-src/kai-test.pl /^package main;$/
2403modifier_names c-src/emacs/src/keyboard.c 6319
2404modifier_symbols c-src/emacs/src/keyboard.c 6327
2405modify_event_symbol c-src/emacs/src/keyboard.c /^modify_event_symbol (ptrdiff_t symbol_num, int mod/
2406module_class_method ruby-src/test.rb /^ def ModuleExample.module_class_method$/
2407ModuleExample ruby-src/test.rb /^module ModuleExample$/
2408module_instance_method ruby-src/test.rb /^ def module_instance_method$/
2409more_aligned_int c.c 165
2410morecore_nolock c-src/emacs/src/gmalloc.c /^morecore_nolock (size_t size)$/
2411morecore_recursing c-src/emacs/src/gmalloc.c 604
2412More_Lisp_Bits c-src/emacs/src/lisp.h 801
2413more= ruby-src/test1.ru /^ :more$/
2414MOST_NEGATIVE_FIXNUM c-src/emacs/src/lisp.h 835
2415MOST_POSITIVE_FIXNUM c-src/emacs/src/lisp.h 834
2416mouse_syms c-src/emacs/src/keyboard.c 4627
2417move cp-src/clheir.cpp /^void agent::move(int direction)$/
2418MOVE c-src/sysdep.h /^#define MOVE(x,y) movl x, y$/
2419MoveLayerAfter lua-src/allegro.lua /^function MoveLayerAfter (this_one)$/
2420MoveLayerBefore lua-src/allegro.lua /^function MoveLayerBefore (this_one)$/
2421MoveLayerBottom lua-src/allegro.lua /^function MoveLayerBottom ()$/
2422MoveLayerTop lua-src/allegro.lua /^function MoveLayerTop ()$/
2423mprobe c-src/emacs/src/gmalloc.c /^mprobe (void *ptr)$/
2424/M ps-src/rfc1245.ps /^\/M {newpath moveto} bind def$/
2425MSDOS c-src/etags.c 100
2426MSDOS c-src/etags.c 106
2427MSDOS c-src/etags.c 107
2428MSDOS c-src/etags.c 110
2429msgid php-src/lce_functions.php /^ function msgid($line, $class)$/
2430MSGSEL f-src/entry.for /^ ENTRY MSGSEL ( TYPE )$/
2431MSGSEL f-src/entry.strange /^ ENTRY MSGSEL ( TYPE )$/
2432MSGSEL f-src/entry.strange_suffix /^ ENTRY MSGSEL ( TYPE )$/
2433msgstr php-src/lce_functions.php /^ function msgstr($line, $class)$/
2434/ms ps-src/rfc1245.ps /^\/ms { $/
2435mstats c-src/emacs/src/gmalloc.c 308
2436Mtest1.go go-src/test1.go 1
2437Mtest1.go go-src/test1.go /^func main() {$/
2438Mtest.go go-src/test.go 1
2439Mtest.go go-src/test.go /^func main() {$/
2440Mtest.rs rs-src/test.rs /^fn main() {$/
2441mtg html-src/software.html /^MTG$/
2442mt prol-src/natded.prolog /^mt:-$/
2443multibyte c-src/emacs/src/regex.h 403
2444MULTI_LETTER_MOD c-src/emacs/src/keyboard.c 6231
2445MULTI_LETTER_MOD c-src/emacs/src/keyboard.c 6764
2446MULTI_LETTER_MOD c-src/emacs/src/keyboard.c /^#define MULTI_LETTER_MOD(BIT, NAME, LEN) \\$/
2447MULTI_LETTER_MOD c-src/emacs/src/keyboard.c /^#define MULTI_LETTER_MOD(BIT, NAME, LEN) \\$/
2448multi_line c-src/etags.c 267
2449Mx.cc cp-src/x.cc /^main(int argc, char *argv[])$/
2450\mylbrace tex-src/texinfo.tex /^\\def\\mylbrace {{\\tt \\char '173}}$/
2451mypi forth-src/test-forth.fth /^synonym mypi fconst$/
2452my_printf c.c /^my_printf (void *my_object, const char *my_format,/
2453\myrbrace tex-src/texinfo.tex /^\\def\\myrbrace {{\\tt \\char '175}}$/
2454my_struct c.c 226
2455my_struct c-src/h.h 91
2456my_typedef c.c 228
2457my_typedef c-src/h.h 93
2458name c-src/emacs/src/keyboard.c 7241
2459name c-src/emacs/src/lisp.h 1808
2460name c-src/emacs/src/lisp.h 3144
2461name c-src/emacs/src/lisp.h 682
2462name c-src/etags.c 192
2463name c-src/etags.c 218
2464name c-src/etags.c 2271
2465name c-src/etags.c 261
2466name c-src/getopt.h 76
2467name c-src/getopt.h 78
2468named c-src/etags.c 2505
2469NameHasChar pas-src/common.pas /^function NameHasChar; (* (TheName : NameString; Th/
2470name perl-src/htlmify-cystic 357
2471namestringequal pas-src/common.pas /^function namestringequal;(*(var Name1,Name2 : Name/
2472NameStringLess pas-src/common.pas /^function NameStringLess;(*(var Name1,Name2 : NameS/
2473name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Function}%$/
2474name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Macro}%$/
2475name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Special Form}%$/
2476name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{User Option}%$/
2477name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Variable}%$/
2478name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\deftpargs{#3}\\endgrou/
2479name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defunargs{#3}\\endgrou/
2480name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defvarargs{#3}\\endgro/
2481name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defcvtype{} of #1}%$/
2482name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defoptype{} on #1}%$/
2483name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{Instance Variable of #1}%/
2484name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{Method on #1}%$/
2485name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#1} #2}{Function}%$/
2486name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#1} #2}{Variable}%$/
2487name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#2} #3}{#1}%$/
2488name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#2} #3}{#1}$/
2489NAME y-src/cccp.c 8
2490name y-src/cccp.y 113
2491name y-src/cccp.y 43
2492nargs c-src/emacs/src/lisp.h 2987
2493NATNUMP c-src/emacs/src/lisp.h /^NATNUMP (Lisp_Object x)$/
2494/nbluet ps-src/rfc1245.ps /^\/nbluet 256 array def$/
2495n c-src/exit.c 28
2496n c-src/exit.strange_suffix 28
2497NDEBUG c-src/etags.c 88
2498need_adjustment c-src/emacs/src/lisp.h 1986
2499\need tex-src/texinfo.tex /^\\def\\need{\\parsearg\\needx}$/
2500\needx tex-src/texinfo.tex /^\\def\\needx#1{%$/
2501NEG y-src/parse.c 9
2502neighbors cp-src/clheir.hpp 59
2503nelem cp-src/Range.h /^ int nelem (void) const { return rng_nelem; }$/
2504nestlev c-src/etags.c 2525
2505\newcodeindex tex-src/texinfo.tex /^\\def\\newcodeindex #1{$/
2506\newindex tex-src/texinfo.tex /^\\def\\newindex #1{$/
2507NewLayer lua-src/allegro.lua /^function NewLayer (name, x, y, w, h)$/
2508NewLayerSet lua-src/allegro.lua /^function NewLayerSet (name)$/
2509newlb c-src/etags.c 2930
2510newlinepos c-src/etags.c 2932
2511NewNameString pas-src/common.pas /^procedure NewNameString; (* (var NSP: NameStringPo/
2512new objc-src/PackInsp.m /^+new$/
2513new perl-src/htlmify-cystic 163
2514new_tag perl-src/htlmify-cystic 18
2515newtextstring pas-src/common.pas /^function newtextstring; (*: TextString;*)$/
2516next_alive cp-src/conway.hpp 7
2517next_almost_prime c-src/emacs/src/lisp.h /^extern EMACS_INT next_almost_prime (EMACS_INT) ATT/
2518NEXT_ALMOST_PRIME_LIMIT c-src/emacs/src/lisp.h 3573
2519next c.c 174
2520next c-src/emacs/src/gmalloc.c 164
2521next c-src/emacs/src/gmalloc.c 188
2522next c-src/emacs/src/gmalloc.c 198
2523next c-src/emacs/src/keyboard.c 7246
2524next c-src/emacs/src/keyboard.c 861
2525next c-src/emacs/src/lisp.h 1848
2526next c-src/emacs/src/lisp.h 2009
2527next c-src/emacs/src/lisp.h 2037
2528next c-src/emacs/src/lisp.h 2192
2529next c-src/emacs/src/lisp.h 3028
2530next c-src/emacs/src/lisp.h 3134
2531next c-src/emacs/src/lisp.h 700
2532next c-src/etags.c 203
2533next-file el-src/emacs/lisp/progmodes/etags.el /^(defun next-file (&optional initialize novisit)$/
2534next-file-list el-src/emacs/lisp/progmodes/etags.el /^(defvar next-file-list nil$/
2535next_free c-src/emacs/src/lisp.h 1851
2536nextfree c-src/emacs/src/lisp.h 3029
2537\next tex-src/texinfo.tex /^\\def\\next##1{}\\next}$/
2538next_weak c-src/emacs/src/lisp.h 1875
2539next y-src/cccp.y 42
2540NE y-src/parse.c 6
2541nfree c-src/emacs/src/gmalloc.c 150
2542/ngrayt ps-src/rfc1245.ps /^\/ngrayt 256 array def$/
2543/ngreent ps-src/rfc1245.ps /^\/ngreent 256 array def$/
2544NIL_IS_ZERO c-src/emacs/src/lisp.h 1515
2545NILP c-src/emacs/src/lisp.h /^# define NILP(x) lisp_h_NILP (x)$/
2546nl c-src/etags.c 2521
2547NmStrToErrStr pas-src/common.pas /^function NmStrToErrStr;(*($/
2548NmStrToInteger pas-src/common.pas /^function NmStrToInteger; (* (Str : NameString) : i/
2549\nm tex-src/testenv.tex /^\\newcommand{\\nm}[2]{\\nomenclature{#1}{#2}}$/
2550no_argument c-src/getopt.h 89
2551nocase_tail c-src/etags.c /^nocase_tail (const char *cp)$/
2552node c-src/etags.c 225
2553noderef tex-src/texinfo.tex /^\\appendixnoderef %$/
2554node_st c-src/etags.c 214
2555\node tex-src/texinfo.tex /^\\def\\node{\\ENVcheck\\parsearg\\nodezzz}$/
2556\nodexxx[ tex-src/texinfo.tex /^\\def\\nodexxx[#1,#2]{\\gdef\\lastnode{#1}}$/
2557\nodezzz tex-src/texinfo.tex /^\\def\\nodezzz#1{\\nodexxx [#1,]}$/
2558\nofillexdent tex-src/texinfo.tex /^\\def\\nofillexdent{\\parsearg\\nofillexdentyyy}$/
2559\nofillexdentyyy tex-src/texinfo.tex /^\\def\\nofillexdentyyy #1{{\\advance \\leftskip by -\\e/
2560nofonts% tex-src/texinfo.tex /^{\\chapternofonts%$/
2561nofonts tex-src/texinfo.tex /^{\\indexnofonts$/
2562no_lang_help c-src/etags.c 707
2563none_help c-src/etags.c 703
2564NONPOINTER_BITS c-src/emacs/src/lisp.h 78
2565NONPOINTER_BITS c-src/emacs/src/lisp.h 80
2566NONSRCS make-src/Makefile /^NONSRCS=entry.strange lists.erl clheir.hpp.gz$/
2567\normalbackslash tex-src/texinfo.tex /^\\def\\normalbackslash{{\\tt\\rawbackslashxx}}$/
2568\normalcaret tex-src/texinfo.tex /^\\def\\normalcaret{^}$/
2569\normaldoublequote tex-src/texinfo.tex /^\\def\\normaldoublequote{"}$/
2570\normalgreater tex-src/texinfo.tex /^\\def\\normalgreater{>}$/
2571normalize_fresh prol-src/natded.prolog /^normalize_fresh(M,N):-$/
2572normalize prol-src/natded.prolog /^normalize(M,MNorm):-$/
2573/normalize ps-src/rfc1245.ps /^\/normalize {$/
2574normalize_tree prol-src/natded.prolog /^normalize_tree(tree(Rule,Syn:Sem,Trees),$/
2575normalize_trees prol-src/natded.prolog /^normalize_trees([],[]).$/
2576\normalless tex-src/texinfo.tex /^\\def\\normalless{<}$/
2577\normalplus tex-src/texinfo.tex /^\\def\\normalplus{+}$/
2578\normaltilde tex-src/texinfo.tex /^\\def\\normaltilde{~}$/
2579\normalunderscore tex-src/texinfo.tex /^\\def\\normalunderscore{_}$/
2580\normalverticalbar tex-src/texinfo.tex /^\\def\\normalverticalbar{|}$/
2581nosave pyt-src/server.py /^ def nosave(self):$/
2582no_sub c-src/emacs/src/regex.h 387
2583notag2 c-src/dostorture.c 26
2584notag2 c-src/torture.c 26
2585notag4 c-src/dostorture.c 45
2586notag4 c-src/torture.c 45
2587not_bol c-src/emacs/src/regex.h 391
2588/.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/.notdef \/.not/
2589/.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/space \/exclam/
2590not_eol c-src/emacs/src/regex.h 394
2591NOTEQUAL y-src/cccp.c 13
2592no tex-src/texinfo.tex /^\\global\\advance \\appendixno by 1 \\message{Appendix/
2593no tex-src/texinfo.tex /^\\ifnum\\secno=0 Appendix\\xreftie'char\\the\\appendixn/
2594no tex-src/texinfo.tex /^\\newcount \\appendixno \\appendixno = `\\@$/
2595no.\the\secno tex-src/texinfo.tex /^\\else \\ifnum \\subsecno=0 Section\\xreftie'char\\the\\/
2596no.\the\secno.\the\subsecno tex-src/texinfo.tex /^Section\\xreftie'char\\the\\appendixno.\\the\\secno.\\th/
2597no.\the\secno.\the\subsecno.\the\subsubsecno tex-src/texinfo.tex /^Section\\xreftie'char\\the\\appendixno.\\the\\secno.\\th/
2598notinname c-src/etags.c /^#define notinname(c) (_nin[CHAR (c)]) \/* c is not /
2599not_single_kboard_state c-src/emacs/src/keyboard.c /^not_single_kboard_state (KBOARD *kboard)$/
2600npending c-src/emacs/src/keyboard.c 7244
2601/N ps-src/rfc1245.ps /^\/N { $/
2602/nredt ps-src/rfc1245.ps /^\/nredt 256 array def$/
2603\nsbot tex-src/texinfo.tex /^\\def\\nsbot{\\vbox$/
2604\nstop tex-src/texinfo.tex /^\\def\\nstop{\\vbox$/
2605/Ntilde ps-src/rfc1245.ps /^\/Ntilde \/Odieresis \/Udieresis \/aacute \/agrave \/aci/
2606ntool_bar_items c-src/emacs/src/keyboard.c 7974
2607NULL_PTR y-src/cccp.y 63
2608NULL y-src/cccp.y 51
2609\numberedsec tex-src/texinfo.tex /^\\outer\\def\\numberedsec{\\parsearg\\seczzz}$/
2610\numberedsubsec tex-src/texinfo.tex /^\\outer\\def\\numberedsubsec{\\parsearg\\numberedsubsec/
2611\numberedsubseczzz tex-src/texinfo.tex /^\\def\\numberedsubseczzz #1{\\seccheck{subsection}%$/
2612\numberedsubsubsec tex-src/texinfo.tex /^\\outer\\def\\numberedsubsubsec{\\parsearg\\numberedsub/
2613\numberedsubsubseczzz tex-src/texinfo.tex /^\\def\\numberedsubsubseczzz #1{\\seccheck{subsubsecti/
2614numberKeys objcpp-src/SimpleCalc.M /^- numberKeys:sender$/
2615number_len c-src/etags.c /^static int number_len (long) ATTRIBUTE_CONST;$/
2616/numbersign ps-src/rfc1245.ps /^\/numbersign \/dollar \/percent \/ampersand \/quotesing/
2617numbervars prol-src/natded.prolog /^numbervars(X):-$/
2618num_columns cp-src/conway.cpp 16
2619\numericenumerate tex-src/texinfo.tex /^\\def\\numericenumerate{%$/
2620num_input_events c-src/emacs/src/keyboard.c 210
2621NUM_MOD_NAMES c-src/emacs/src/keyboard.c 6325
2622numOfChannels cp-src/c.C 1
2623NUM_RECENT_KEYS c-src/emacs/src/keyboard.c 91
2624num_regs c-src/emacs/src/regex.h 430
2625num_rows cp-src/conway.cpp 15
2626NUMSTATS objc-src/PackInsp.h 36
2627nvars c-src/emacs/src/lisp.h 3140
2628Objc_help c-src/etags.c 613
2629OBJCPPSRC make-src/Makefile /^OBJCPPSRC=SimpleCalc.H SimpleCalc.M$/
2630OBJCSRC make-src/Makefile /^OBJCSRC=Subprocess.h Subprocess.m PackInsp.h PackI/
2631Objc_suffixes c-src/etags.c 609
2632objdef c-src/etags.c 2484
2633object c-src/emacs/src/lisp.h 2128
2634object_registry cp-src/clheir.cpp 10
2635OBJS make-src/Makefile /^OBJS=${GETOPTOBJS} ${REGEXOBJS} ${CHECKOBJS}$/
2636objtag c-src/etags.c 2453
2637objvar c-src/emacs/src/lisp.h 2297
2638obstack_chunk_alloc y-src/parse.y 47
2639obstack_chunk_free y-src/parse.y 48
2640ocatseen c-src/etags.c 2477
2641/ocircumflex ps-src/rfc1245.ps /^\/ocircumflex \/odieresis \/otilde \/uacute \/ugrave \/u/
2642octave_MDiagArray2_h cp-src/MDiagArray2.h 29
2643octave_Range_h cp-src/Range.h 24
2644\oddfooting tex-src/texinfo.tex /^\\def\\oddfooting{\\parsearg\\oddfootingxxx}$/
2645\oddheading tex-src/texinfo.tex /^\\def\\oddheading{\\parsearg\\oddheadingxxx}$/
2646oediff make-src/Makefile /^oediff: OTAGS ETAGS ${infiles}$/
2647offset c-src/emacs/src/lisp.h 2305
2648offset c-src/emacs/src/lisp.h 2365
2649offset c-src/etags.c 2494
2650oignore c-src/etags.c 2483
2651oimplementation c-src/etags.c 2474
2652oinbody c-src/etags.c 2478
2653ok objc-src/PackInsp.m /^-ok:sender$/
2654ok_to_echo_at_next_pause c-src/emacs/src/keyboard.c 159
2655old_value c-src/emacs/src/lisp.h 2980
2656omethodcolon c-src/etags.c 2481
2657omethodparm c-src/etags.c 2482
2658omethodsign c-src/etags.c 2479
2659omethodtag c-src/etags.c 2480
2660\onepageout tex-src/texinfo.tex /^\\def\\onepageout#1{\\hoffset=\\normaloffset$/
2661onone c-src/etags.c 2472
2662oparenseen c-src/etags.c 2476
2663OPENBUTTON objc-src/PackInsp.m 47
2664\opencontents tex-src/texinfo.tex /^\\def\\opencontents{\\openout \\contentsfile = \\jobnam/
2665open-dribble-file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/
2666\openindices tex-src/texinfo.tex /^\\def\\openindices{%$/
2667openInWorkspace objc-src/PackInsp.m /^static void openInWorkspace(const char *filename)$/
2668open objc-src/PackInsp.m /^-open:sender$/
2669operationKeys objcpp-src/SimpleCalc.M /^- operationKeys:sender$/
2670operator+ cp-src/c.C /^ A operator+(A& a) {};$/
2671operator+ cp-src/c.C /^const A& A::operator+(const A&) { }$/
2672operator - cp-src/c.C /^void operator -(int, int) {}$/
2673operator+ cp-src/c.C /^void operator+(int, int) {}$/
2674operator = cp-src/functions.cpp /^Date & Date::operator = ( Date d ){$/
2675operator += cp-src/functions.cpp /^Date & Date::operator += ( int days ){$/
2676operator -= cp-src/functions.cpp /^Date & Date::operator -= ( int days ){$/
2677operator ++ cp-src/functions.cpp /^Date & Date::operator ++ ( void ){$/
2678operator -- cp-src/functions.cpp /^Date & Date::operator -- ( void ){$/
2679operator - cp-src/functions.cpp /^int Date::operator - ( Date d ){$/
2680operator < cp-src/functions.cpp /^int Date::operator < ( Date d ) {$/
2681operator == cp-src/functions.cpp /^int Date::operator == ( Date d ) {$/
2682operator > cp-src/functions.cpp /^int Date::operator > ( Date d ) {$/
2683operator >> cp-src/functions.cpp /^istream& operator >> ( istream &i, Date & dd ){$/
2684operator << cp-src/functions.cpp /^ostream& operator << ( ostream &c, Date d ) {$/
2685operator = cp-src/MDiagArray2.h /^ MDiagArray2<T>& operator = (const MDiagArray2<T>/
2686OperatorFun c-src/h.h 88
2687operator int cp-src/c.C /^void operator int(int, int) {}$/
2688operator int cp-src/fail.C /^ operator int() const {return x;}$/
2689operator MArray2<T> cp-src/MDiagArray2.h /^ operator MArray2<T> () const$/
2690operator y-src/cccp.y 438
2691\opnr tex-src/texinfo.tex /^\\def\\opnr{{\\sf\\char`\\(}} \\def\\clnr{{\\sf\\char`\\)}} /
2692opparsebody\Edefop\defopx\defopheader\defoptype tex-src/texinfo.tex /^\\defopparsebody\\Edefop\\defopx\\defopheader\\defoptyp/
2693oprotocol c-src/etags.c 2473
2694/O ps-src/rfc1245.ps /^\/O {closepath} bind def$/
2695optional_argument c-src/getopt.h 91
2696option c-src/getopt.h 73
2697OPTIONS make-src/Makefile /^OPTIONS=--members --declarations --regex=@regexfil/
2698opvarparsebody\Edefcv\defcvx\defcvarheader\defcvtype tex-src/texinfo.tex /^\\defopvarparsebody\\Edefcv\\defcvx\\defcvarheader\\def/
2699ord_add_element prol-src/ordsets.prolog /^ord_add_element([], Element, [Element]).$/
2700ord_del_element prol-src/ordsets.prolog /^ord_del_element([], _, []).$/
2701ord_disjoint prol-src/ordsets.prolog /^ord_disjoint(Set1, Set2) :-$/
2702/ordfeminine ps-src/rfc1245.ps /^\/ordfeminine \/ordmasculine \/.notdef \/ae \/oslash \/q/
2703ord_intersection2 prol-src/ordsets.prolog /^ord_intersection2(1, [Set|Sets], Set0, Sets0) :- !/
2704ord_intersection3 prol-src/ordsets.prolog /^ord_intersection3(<, _, Set1, Head2, Tail2, Inters/
2705ord_intersection4 prol-src/ordsets.prolog /^ord_intersection4(<, _, Set1, Head2, Tail2, Inters/
2706ord_intersection prol-src/ordsets.prolog /^ord_intersection([], _, []).$/
2707ord_intersection prol-src/ordsets.prolog /^ord_intersection([], Set2, [], Set2).$/
2708ord_intersection prol-src/ordsets.prolog /^ord_intersection(Sets, Intersection) :- $/
2709ord_intersect prol-src/ordsets.prolog /^ord_intersect([Head1|Tail1], [Head2|Tail2]) :-$/
2710ord_member prol-src/ordsets.prolog /^ord_member(X, [E|Es]) :-$/
2711ord_seteq prol-src/ordsets.prolog /^ord_seteq(Set1, Set2) :-$/
2712ord_setproduct prol-src/ordsets.prolog /^ord_setproduct([], _, []).$/
2713ord_subset prol-src/ordsets.prolog /^ord_subset([], _).$/
2714ord_subtract prol-src/ordsets.prolog /^ord_subtract(Set1, Set2, Union) :-$/
2715ord_symdiff prol-src/ordsets.prolog /^ord_symdiff([], Set2, Set2).$/
2716ord_union4 prol-src/ordsets.prolog /^ord_union4(<, Head, Set1, Head2, Tail2, [Head|Unio/
2717ord_union_all prol-src/ordsets.prolog /^ord_union_all(1, [Set|Sets], Set, Sets) :- !.$/
2718ord_union prol-src/ordsets.prolog /^ord_union(Set1, Set2, Union) :-$/
2719ord_union prol-src/ordsets.prolog /^ord_union([], Union) :- !, Union = [].$/
2720OR y-src/cccp.c 10
2721oss html-src/softwarelibero.html /^Il movimento open source$/
2722otagseen c-src/etags.c 2475
2723OTAGS make-src/Makefile /^OTAGS: oetags ${SRCS} srclist$/
2724/Otilde ps-src/rfc1245.ps /^\/Otilde \/OE \/oe \/endash \/emdash \/quotedblleft \/quo/
2725output_file perl-src/htlmify-cystic 35
2726output_files perl-src/htlmify-cystic 32
2727outputtable html-src/algrthms.html /^Output$/
2728outputTime cp-src/c.C 9
2729outsyn prol-src/natded.prolog /^outsyn(['Any'],_).$/
2730OVERLAYP c-src/emacs/src/lisp.h /^OVERLAYP (Lisp_Object x)$/
2731Overview tex-src/gzip.texi /^@node Overview, Sample, Copying, Top$/
2732PackageInspector objc-src/PackInsp.h /^@interface PackageInspector:WMInspector$/
2733\pagebody tex-src/texinfo.tex /^\\def\\pagebody#1{\\vbox to\\pageheight{\\boxmaxdepth=\\/
2734/pagedimen ps-src/rfc1245.ps /^\/pagedimen { $/
2735pagesize c-src/emacs/src/gmalloc.c 1703
2736\pagesofar tex-src/texinfo.tex /^\\def\\pagesofar{\\unvbox\\partialpage %$/
2737\page tex-src/texinfo.tex /^ \\def\\page{%$/
2738\page tex-src/texinfo.tex /^\\def\\page{\\par\\vfill\\supereject}$/
2739pair merc-src/accumulator.m /^:- import_module pair.$/
2740/papersize ps-src/rfc1245.ps /^\/papersize {$/
2741/paragraph ps-src/rfc1245.ps /^\/paragraph \/germandbls \/registered \/copyright \/tra/
2742/parenright ps-src/rfc1245.ps /^\/parenright \/asterisk \/plus \/comma \/hyphen \/period/
2743parent c-src/emacs/src/keyboard.c 8745
2744parent c-src/emacs/src/lisp.h 1590
2745\parseargline tex-src/texinfo.tex /^\\def\\parseargline{\\begingroup \\obeylines \\parsearg/
2746\parsearg tex-src/texinfo.tex /^\\def\\parsearg #1{\\let\\next=#1\\begingroup\\obeylines/
2747\parseargx tex-src/texinfo.tex /^\\def\\parseargx{%$/
2748parse_c_expression y-src/cccp.y /^parse_c_expression (string)$/
2749parse_cgi prol-src/natded.prolog /^parse_cgi(TokenList,KeyVals):-$/
2750parse_error y-src/parse.y 82
2751parse_escape y-src/cccp.y /^parse_escape (string_ptr)$/
2752parseFromVars php-src/lce_functions.php /^ function parseFromVars($prefix)$/
2753parse_hash y-src/parse.y 64
2754parse_menu_item c-src/emacs/src/keyboard.c /^parse_menu_item (Lisp_Object item, int inmenubar)$/
2755parse_modifiers c-src/emacs/src/keyboard.c /^parse_modifiers (Lisp_Object symbol)$/
2756parse_modifiers_uncached c-src/emacs/src/keyboard.c /^parse_modifiers_uncached (Lisp_Object symbol, ptrd/
2757parse_number y-src/cccp.y /^parse_number (olen)$/
2758parse prol-src/natded.prolog /^parse(Ws,Cat):-$/
2759parse_return_error y-src/cccp.y 70
2760parse_return y-src/parse.y 74
2761parse_solitary_modifier c-src/emacs/src/keyboard.c /^parse_solitary_modifier (Lisp_Object symbol)$/
2762parse_tool_bar_item c-src/emacs/src/keyboard.c /^parse_tool_bar_item (Lisp_Object key, Lisp_Object /
2763parse_tree merc-src/accumulator.m /^:- import_module parse_tree.$/
2764Pascal_functions c-src/etags.c /^Pascal_functions (FILE *inf)$/
2765Pascal_help c-src/etags.c 621
2766Pascal_suffixes c-src/etags.c 619
2767PASSRC make-src/Makefile /^PASSRC=common.pas$/
2768pat c-src/etags.c 262
2769pattern c-src/etags.c 260
2770p c-src/emacs/src/lisp.h 4673
2771p c-src/emacs/src/lisp.h 4679
2772pD c-src/emacs/src/lisp.h 165
2773pD c-src/emacs/src/lisp.h 167
2774pD c-src/emacs/src/lisp.h 169
2775pD c-src/emacs/src/lisp.h 171
2776pdlcount c-src/emacs/src/lisp.h 3046
2777PDT c-src/h.h /^ Date 04 May 87 235311 PDT (Mon)$/
2778pending-delete-mode el-src/TAGTEST.EL /^(defalias 'pending-delete-mode 'delete-selection-m/
2779pending_funcalls c-src/emacs/src/keyboard.c 4377
2780pending_signals c-src/emacs/src/keyboard.c 80
2781/periodcentered ps-src/rfc1245.ps /^\/periodcentered \/quotesinglbase \/quotedblbase \/per/
2782Perl_functions c-src/etags.c /^Perl_functions (FILE *inf)$/
2783Perl_help c-src/etags.c 630
2784Perl_interpreters c-src/etags.c 628
2785PERLSRC make-src/Makefile /^PERLSRC=htlmify-cystic yagrip.pl kai-test.pl mirro/
2786Perl_suffixes c-src/etags.c 626
2787p/f ada-src/etags-test-for.ada /^function p ("p");$/
2788p/f ada-src/etags-test-for.ada /^ function p pragma Import (C,$/
2789pfatal c-src/etags.c /^pfatal (const char *s1)$/
2790pfdset c-src/h.h 57
2791pfnote c-src/etags.c /^pfnote (char *name, bool is_func, char *linestart,/
2792/PF ps-src/rfc1245.ps /^\/PF { $/
2793PHP_functions c-src/etags.c /^PHP_functions (FILE *inf)$/
2794PHP_help c-src/etags.c 639
2795PHPSRC make-src/Makefile /^PHPSRC=lce_functions.php ptest.php sendmail.php$/
2796PHP_suffixes c-src/etags.c 637
2797pI c-src/emacs/src/lisp.h 106
2798pI c-src/emacs/src/lisp.h 94
2799pI c-src/emacs/src/lisp.h 99
2800\pindex tex-src/texinfo.tex /^\\def\\pindex {\\pgindex}$/
2801pinned c-src/emacs/src/lisp.h 679
2802Pkg1/b ada-src/etags-test-for.ada /^package body Pkg1 is$/
2803Pkg1/b ada-src/waroquiers.ada /^package body Pkg1 is$/
2804Pkg1_Func1/f ada-src/etags-test-for.ada /^ function Pkg1_Func1 return Boolean;$/
2805Pkg1_Func1/f ada-src/etags-test-for.ada /^function Pkg1_Func1 return Boolean is$/
2806Pkg1_Func1/f ada-src/etags-test-for.ada /^ function Pkg1_Func1 return Boolean is separate;$/
2807Pkg1_Func1/f ada-src/waroquiers.ada /^ function Pkg1_Func1 return Boolean;$/
2808Pkg1_Func1/f ada-src/waroquiers.ada /^function Pkg1_Func1 return Boolean is$/
2809Pkg1_Func1/f ada-src/waroquiers.ada /^ function Pkg1_Func1 return Boolean is separate;$/
2810Pkg1_Func2/f ada-src/etags-test-for.ada /^ function Pkg1_Func2 (Ijk : Integer; Z : Integer)/
2811Pkg1_Func2/f ada-src/waroquiers.ada /^ function Pkg1_Func2 (Ijk : Integer; Z : Integer)/
2812Pkg1_Pkg1/b ada-src/etags-test-for.ada /^package body Pkg1_Pkg1 is$/
2813Pkg1_Pkg1/b ada-src/etags-test-for.ada /^ package body Pkg1_Pkg1 is separate;$/
2814Pkg1_Pkg1/b ada-src/waroquiers.ada /^package body Pkg1_Pkg1 is$/
2815Pkg1_Pkg1/b ada-src/waroquiers.ada /^ package body Pkg1_Pkg1 is separate;$/
2816Pkg1_Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Pkg1_Proc1;$/
2817Pkg1_Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Pkg1_Proc1 is$/
2818Pkg1_Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Pkg1_Proc1;$/
2819Pkg1_Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Pkg1_Proc1 is$/
2820Pkg1_Pkg1/s ada-src/etags-test-for.ada /^ package Pkg1_Pkg1 is$/
2821Pkg1_Pkg1/s ada-src/waroquiers.ada /^ package Pkg1_Pkg1 is$/
2822Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc1;$/
2823Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc1 is$/
2824Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc1;$/
2825Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc1 is$/
2826Pkg1_Proc2/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc2 (I : Integer);$/
2827Pkg1_Proc2/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc2 (I : Integer) is$/
2828Pkg1_Proc2/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc2 (I : Integer);$/
2829Pkg1_Proc2/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc2 (I : Integer) is$/
2830Pkg1/s ada-src/etags-test-for.ada /^package Pkg1 is$/
2831Pkg1/s ada-src/waroquiers.ada /^package Pkg1 is$/
2832plainc c-src/etags.c 2934
2833plain_C_entries c-src/etags.c /^plain_C_entries (FILE *inf)$/
2834plain_C_suffixes c-src/etags.c 643
2835\plainsecheading tex-src/texinfo.tex /^\\def\\plainsecheading #1{\\secheadingi {#1}}$/
2836plist c-src/emacs/src/lisp.h 2040
2837plist c-src/emacs/src/lisp.h 697
2838plus cp-src/functions.cpp /^void Date::plus ( int days , int month , int year /
2839plus go-src/test1.go 5
2840plusvalseq prol-src/natded.prolog /^plusvalseq([]) --> [].$/
2841pMd c-src/emacs/src/lisp.h 150
2842pMd c-src/emacs/src/lisp.h 155
2843pMu c-src/emacs/src/lisp.h 151
2844pMu c-src/emacs/src/lisp.h 156
2845p_next c-src/etags.c 258
2846POEntryAD php-src/lce_functions.php 29
2847POEntry php-src/lce_functions.php 105
2848POEntry php-src/lce_functions.php /^ function POEntry()$/
2849pointer c-src/emacs/src/lisp.h 2125
2850point forth-src/test-forth.fth /^BEGIN-STRUCTURE point \\ create the named structure/
2851\point tex-src/texinfo.tex /^\\def\\point{$\\star$}$/
2852poll_for_input_1 c-src/emacs/src/keyboard.c /^poll_for_input_1 (void)$/
2853poll_for_input c-src/emacs/src/keyboard.c /^poll_for_input (struct atimer *timer)$/
2854poll_suppress_count c-src/emacs/src/keyboard.c 1908
2855poll_suppress_count c-src/emacs/src/lisp.h 3047
2856poll_timer c-src/emacs/src/keyboard.c 1915
2857popclass_above c-src/etags.c /^popclass_above (int bracelev)$/
2858pop_kboard c-src/emacs/src/keyboard.c /^pop_kboard (void)$/
2859pop-tag-mark el-src/emacs/lisp/progmodes/etags.el /^(defalias 'pop-tag-mark 'xref-pop-marker-stack)$/
2860POReader php-src/lce_functions.php 163
2861POReader php-src/lce_functions.php /^ function POReader($domain, $filename)$/
2862PORManager php-src/lce_functions.php 498
2863PORManager php-src/lce_functions.php /^ function PORManager()$/
2864position_to_Time c-src/emacs/src/keyboard.c /^position_to_Time (ptrdiff_t pos)$/
2865posix_memalign c-src/emacs/src/gmalloc.c /^posix_memalign (void **memptr, size_t alignment, s/
2866posn-at-point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/
2867posn-at-x-y c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, /
2868possible_sum_sign y-src/cccp.y /^#define possible_sum_sign(a, b, sum) ((((a) ^ (b))/
2869PostControls pyt-src/server.py /^ def PostControls(self):$/
2870post pyt-src/server.py /^ def post(self):$/
2871POSTSCRIPTFLAGS make-src/Makefile /^POSTSCRIPTFLAGS=--language=none --regex='#\/[^ \\t{]/
2872pot_etags_version c-src/etags.c 81
2873pp1 c-src/dostorture.c /^int pp1($/
2874pp1 c-src/torture.c /^int pp1($/
2875pp2 c-src/dostorture.c /^pp2$/
2876pp2 c-src/torture.c /^pp2$/
2877pp3 c-src/dostorture.c /^pp3(int bar)$/
2878pp3 c-src/torture.c /^pp3(int bar)$/
2879pp_bas_cat prol-src/natded.prolog /^pp_bas_cat(Cat):-$/
2880pp_cat prol-src/natded.prolog /^pp_cat(Syn:Sem):-$/
2881pp_exp prol-src/natded.prolog /^pp_exp('NIL'):-$/
2882pp_exps prol-src/natded.prolog /^pp_exps([]).$/
2883pp_html_fitch_tree prol-src/natded.prolog /^pp_html_fitch_tree(tree(der,Root,[ders(Words)]),M,/
2884pp_html_table_fitch_tree prol-src/natded.prolog /^pp_html_table_fitch_tree(T):-$/
2885pp_html_table_tree prol-src/natded.prolog /^pp_html_table_tree(T):-$/
2886pp_html_tree prol-src/natded.prolog /^pp_html_tree(ass(Syn,V,'$VAR'(N))):-$/
2887pp_html_trees prol-src/natded.prolog /^pp_html_trees([T|Ts],N,M):-$/
2888pp_lam_bracket prol-src/natded.prolog /^pp_lam_bracket(A^B):-$/
2889pp_lam_paren prol-src/natded.prolog /^pp_lam_paren(Var^Alpha):-$/
2890pp_lam prol-src/natded.prolog /^pp_lam(Var^Alpha):-$/
2891pp_paren prol-src/natded.prolog /^pp_paren(C):-$/
2892pp_rule prol-src/natded.prolog /^pp_rule(fe):-write('\/E').$/
2893/P ps-src/rfc1245.ps /^\/P { $/
2894pp_syn_back prol-src/natded.prolog /^pp_syn_back(A\/B):-$/
2895pp_syn_paren prol-src/natded.prolog /^pp_syn_paren(A\/B):-$/
2896pp_syn prol-src/natded.prolog /^pp_syn(A\/B):-$/
2897pp_tree prol-src/natded.prolog /^pp_tree(T):-$/
2898pp_trees prol-src/natded.prolog /^pp_trees([T|Ts],Column):-$/
2899pp_word_list prol-src/natded.prolog /^pp_word_list([]).$/
2900pp_word_list_rest prol-src/natded.prolog /^pp_word_list_rest([]).$/
2901pp_word prol-src/natded.prolog /^pp_word(W):-$/
2902Pre_Call_State/t ada-src/2ataspri.ads /^ type Pre_Call_State is new System.Address;$/
2903.PRECIOUS make-src/Makefile /^.PRECIOUS: ETAGS CTAGS ETAGS16 CTAGS16 ETAGS17 CTA/
2904predicate c-src/emacs/src/lisp.h 2307
2905prev c.c 175
2906prev c-src/emacs/src/gmalloc.c 165
2907prev c-src/emacs/src/gmalloc.c 189
2908prev c-src/emacs/src/lisp.h 2191
2909\primary tex-src/texinfo.tex /^\\def\\primary #1{\\line{#1\\hfil}}$/
2910PrintAdd go-src/test1.go /^func (n intNumber) PrintAdd() {$/
2911PrintAdd go-src/test1.go /^func (s str) PrintAdd() {$/
2912printClassification php-src/lce_functions.php /^ function printClassification()$/
2913\printedmanual tex-src/texinfo.tex /^\\def\\printedmanual{\\ignorespaces #5}%$/
2914\printedmanual tex-src/texinfo.tex /^section ``\\printednodename'' in \\cite{\\printedmanu/
2915\printednodename tex-src/texinfo.tex /^\\def\\printednodename{\\ignorespaces #1}%$/
2916\printednodename tex-src/texinfo.tex /^\\def\\printednodename{\\ignorespaces #3}%$/
2917print_help c-src/etags.c /^print_help (argument *argbuffer)$/
2918\printindex tex-src/texinfo.tex /^\\def\\printindex{\\parsearg\\doprintindex}$/
2919print_language_names c-src/etags.c /^print_language_names (void)$/
2920printmax_t c-src/emacs/src/lisp.h 148
2921printmax_t c-src/emacs/src/lisp.h 153
2922\print tex-src/texinfo.tex /^\\def\\print{\\leavevmode\\lower.1ex\\hbox to 1em{\\hfil/
2923\print tex-src/texinfo.tex /^\\def\\print{\\realbackslash print}$/
2924PRINT_UNDOCUMENTED_OPTIONS_HELP c-src/etags.c 804
2925print_version c-src/etags.c /^print_version (void)$/
2926Private objc-src/Subprocess.m /^@interface Subprocess(Private)$/
2927Private_T/b ada-src/etags-test-for.ada /^ task body Private_T is$/
2928Private_T/b ada-src/waroquiers.ada /^ task body Private_T is$/
2929Private_T/k ada-src/etags-test-for.ada /^ task Private_T;$/
2930Private_T/k ada-src/waroquiers.ada /^ task Private_T;$/
2931Private_T/p ada-src/etags-test-for.ada /^ procedure Private_T;$/
2932Private_T/p ada-src/etags-test-for.ada /^ procedure Private_T is$/
2933Private_T/p ada-src/waroquiers.ada /^ procedure Private_T;$/
2934Private_T/p ada-src/waroquiers.ada /^ procedure Private_T is$/
2935Private_T/t ada-src/etags-test-for.ada /^ type Private_T is$/
2936Private_T/t ada-src/etags-test-for.ada /^ type Private_T is private;$/
2937Private_T/t ada-src/waroquiers.ada /^ type Private_T is$/
2938Private_T/t ada-src/waroquiers.ada /^ type Private_T is private;$/
2939Problems tex-src/gzip.texi /^@node Problems, Concept Index, Tapes, Top$/
2940proc c-src/h.h 87
2941process_file c-src/etags.c /^process_file (FILE *fh, char *fn, language *lang)$/
2942process_file_name c-src/etags.c /^process_file_name (char *file, language *lang)$/
2943PROCESSP c-src/emacs/src/lisp.h /^PROCESSP (Lisp_Object a)$/
2944process_pending_signals c-src/emacs/src/keyboard.c /^process_pending_signals (void)$/
2945process_special_events c-src/emacs/src/keyboard.c /^process_special_events (void)$/
2946process_tool_bar_item c-src/emacs/src/keyboard.c /^process_tool_bar_item (Lisp_Object key, Lisp_Objec/
2947Proc/t ada-src/2ataspri.ads /^ type Proc is access procedure (Addr : System.Ad/
2948prof make-src/Makefile /^prof: ETAGS$/
2949prolog_atom c-src/etags.c /^prolog_atom (char *s, size_t pos)$/
2950Prolog_functions c-src/etags.c /^Prolog_functions (FILE *inf)$/
2951Prolog_help c-src/etags.c 654
2952prolog_pr c-src/etags.c /^prolog_pr (char *s, char *last)$/
2953prolog_skip_comment c-src/etags.c /^prolog_skip_comment (linebuffer *plb, FILE *inf)$/
2954Prolog_suffixes c-src/etags.c 652
2955PROLSRC make-src/Makefile /^PROLSRC=ordsets.prolog natded.prolog$/
2956PROP c-src/emacs/src/keyboard.c 8379
2957PROP c-src/emacs/src/keyboard.c /^#define PROP(IDX) AREF (tool_bar_item_properties, /
2958prop c-src/etags.c 209
2959PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) \/* empty *\/$/
2960PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) protect_malloc_/
2961protect_malloc_state c-src/emacs/src/gmalloc.c /^protect_malloc_state (int protect_p)$/
2962PRTPKG f-src/entry.for /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/
2963PRTPKG f-src/entry.strange /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/
2964PRTPKG f-src/entry.strange_suffix /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/
2965PSEUDO c-src/sysdep.h /^#define PSEUDO(name, syscall_name, args) /
2966PSEUDOVECSIZE c-src/emacs/src/lisp.h /^#define PSEUDOVECSIZE(type, nonlispfield) \\$/
2967PSEUDOVECTOR_AREA_BITS c-src/emacs/src/lisp.h 818
2968PSEUDOVECTOR_FLAG c-src/emacs/src/lisp.h 774
2969PSEUDOVECTORP c-src/emacs/src/lisp.h /^PSEUDOVECTORP (Lisp_Object a, int code)$/
2970PSEUDOVECTOR_REST_BITS c-src/emacs/src/lisp.h 813
2971PSEUDOVECTOR_REST_MASK c-src/emacs/src/lisp.h 814
2972PSEUDOVECTOR_SIZE_BITS c-src/emacs/src/lisp.h 808
2973PSEUDOVECTOR_SIZE_MASK c-src/emacs/src/lisp.h 809
2974PSEUDOVECTOR_TYPEP c-src/emacs/src/lisp.h /^PSEUDOVECTOR_TYPEP (struct vectorlike_header *a, i/
2975PS_functions c-src/etags.c /^PS_functions (FILE *inf)$/
2976PS_help c-src/etags.c 649
2977PSSRC make-src/Makefile /^PSSRC=rfc1245.ps$/
2978PS_suffixes c-src/etags.c 647
2979pthread_mutexattr_setprio_ceiling/f ada-src/2ataspri.adb /^ function pthread_mutexattr_setprio_ceiling$/
2980pthread_mutexattr_setprotocol/f ada-src/2ataspri.adb /^ function pthread_mutexattr_setprotocol$/
2981PTY_LENGTH objc-src/Subprocess.m 21
2982PTY_TEMPLATE objc-src/Subprocess.m 20
2983Public_T/t ada-src/etags-test-for.ada /^ type Public_T is$/
2984Public_T/t ada-src/waroquiers.ada /^ type Public_T is$/
2985purpose c-src/emacs/src/lisp.h 1594
2986pushclass_above c-src/etags.c /^pushclass_above (int bracelev, char *str, int len)/
2987PUSH_C_STR c-src/emacs/src/keyboard.c /^#define PUSH_C_STR(str, listvar) \\$/
2988PUSH_HANDLER c-src/emacs/src/lisp.h /^#define PUSH_HANDLER(c, tag_ch_val, handlertype) \\/
2989push_kboard c-src/emacs/src/keyboard.c /^push_kboard (struct kboard *k)$/
2990put_entries c-src/etags.c /^put_entries (register node *np)$/
2991PVEC_BOOL_VECTOR c-src/emacs/src/lisp.h 787
2992PVEC_BUFFER c-src/emacs/src/lisp.h 788
2993PVEC_CHAR_TABLE c-src/emacs/src/lisp.h 796
2994PVEC_COMPILED c-src/emacs/src/lisp.h 795
2995PVEC_FONT c-src/emacs/src/lisp.h 798
2996PVEC_FRAME c-src/emacs/src/lisp.h 785
2997PVEC_FREE c-src/emacs/src/lisp.h 783
2998PVEC_HASH_TABLE c-src/emacs/src/lisp.h 789
2999PVEC_NORMAL_VECTOR c-src/emacs/src/lisp.h 782
3000PVEC_OTHER c-src/emacs/src/lisp.h 793
3001PVEC_PROCESS c-src/emacs/src/lisp.h 784
3002PVEC_SUB_CHAR_TABLE c-src/emacs/src/lisp.h 797
3003PVEC_SUBR c-src/emacs/src/lisp.h 792
3004PVEC_TERMINAL c-src/emacs/src/lisp.h 790
3005pvec_type c-src/emacs/src/lisp.h 780
3006PVEC_TYPE_MASK c-src/emacs/src/lisp.h 819
3007PVEC_WINDOW_CONFIGURATION c-src/emacs/src/lisp.h 791
3008PVEC_WINDOW c-src/emacs/src/lisp.h 786
3009p.x forth-src/test-forth.fth /^ 1 CELLS +FIELD p.x \\ A single cell filed name/
3010\pxref tex-src/texinfo.tex /^\\def\\pxref#1{see \\xrefX[#1,,,,,,,]}$/
3011p.y forth-src/test-forth.fth /^ 1 CELLS +FIELD p.y \\ A single cell field name/
3012Python_functions c-src/etags.c /^Python_functions (FILE *inf)$/
3013Python_help c-src/etags.c 660
3014Python_suffixes c-src/etags.c 658
3015PYTSRC make-src/Makefile /^PYTSRC=server.py$/
3016quantizing html-src/algrthms.html /^Quantizing the Received$/
3017questo ../c/c.web 34
3018quiettest make-src/Makefile /^quiettest:$/
3019quit_char c-src/emacs/src/keyboard.c 192
3020QUIT c-src/emacs/src/lisp.h 3101
3021QUITP c-src/emacs/src/lisp.h 3112
3022quit_throw_to_read_char c-src/emacs/src/keyboard.c /^quit_throw_to_read_char (bool from_signal)$/
3023\quotation tex-src/texinfo.tex /^\\def\\quotation{%$/
3024/quoteleft ps-src/rfc1245.ps /^\/quoteleft \/quoteright \/.notdef \/.notdef \/ydieresi/
3025qux1 ruby-src/test1.ru /^ :qux1)$/
3026qux ruby-src/test1.ru /^ alias_method :qux, :tee, attr_accessor(:bogus)/
3027qux= ruby-src/test1.ru /^ def qux=(tee)$/
3028r0 c-src/sysdep.h 54
3029r1 c-src/sysdep.h 55
3030r_alloc c-src/emacs/src/lisp.h /^extern void *r_alloc (void **, size_t) ATTRIBUTE_A/
3031Range cp-src/Range.h 35
3032Range cp-src/Range.h /^ Range (const Range& r)$/
3033Range cp-src/Range.h /^ Range (double b, double l)$/
3034Range cp-src/Range.h /^ Range (double b, double l, double i)$/
3035Range cp-src/Range.h /^ Range (void)$/
3036RANGED_INTEGERP c-src/emacs/src/lisp.h /^RANGED_INTEGERP (intmax_t lo, Lisp_Object x, intma/
3037range_exp_list y-src/parse.y 273
3038range_exp y-src/parse.y 269
3039\rawbackslashxx tex-src/texinfo.tex /^\\def\\rawbackslashxx{\\indexbackslash}%$/
3040\rawbackslashxx tex-src/texinfo.tex /^\\def\\rawbackslashxx{\\indexbackslash}% \\indexbacksl/
3041raw_keybuf_count c-src/emacs/src/keyboard.c 117
3042raw_keybuf c-src/emacs/src/keyboard.c 116
3043rbtp c.c 240
3044RCSid objc-src/PackInsp.m 30
3045read1 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/
3046read2 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/
3047readable_events c-src/emacs/src/keyboard.c /^readable_events (int flags)$/
3048READABLE_EVENTS_DO_TIMERS_NOW c-src/emacs/src/keyboard.c 346
3049READABLE_EVENTS_FILTER_EVENTS c-src/emacs/src/keyboard.c 347
3050READABLE_EVENTS_IGNORE_SQUEEZABLES c-src/emacs/src/keyboard.c 348
3051\readauxfile tex-src/texinfo.tex /^\\def\\readauxfile{%$/
3052read_char c-src/emacs/src/keyboard.c /^read_char (int commandflag, Lisp_Object map,$/
3053read_char_help_form_unwind c-src/emacs/src/keyboard.c /^read_char_help_form_unwind (void)$/
3054read_char_minibuf_menu_prompt c-src/emacs/src/keyboard.c /^read_char_minibuf_menu_prompt (int commandflag,$/
3055read_char_x_menu_prompt c-src/emacs/src/keyboard.c /^read_char_x_menu_prompt (Lisp_Object map,$/
3056read cp-src/conway.hpp /^ char read() { return alive; }$/
3057read_decoded_event_from_main_queue c-src/emacs/src/keyboard.c /^read_decoded_event_from_main_queue (struct timespe/
3058read_event_from_main_queue c-src/emacs/src/keyboard.c /^read_event_from_main_queue (struct timespec *end_t/
3059read_key_sequence_cmd c-src/emacs/src/keyboard.c 232
3060read-key-sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/
3061read_key_sequence c-src/emacs/src/keyboard.c /^read_key_sequence (Lisp_Object *keybuf, int bufsiz/
3062read_key_sequence_remapped c-src/emacs/src/keyboard.c 233
3063read-key-sequence-vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/
3064read_key_sequence_vs c-src/emacs/src/keyboard.c /^read_key_sequence_vs (Lisp_Object prompt, Lisp_Obj/
3065readline c-src/etags.c /^readline (linebuffer *lbp, FILE *stream)$/
3066readline_internal c-src/etags.c /^readline_internal (linebuffer *lbp, register FILE /
3067Read_Lock/p ada-src/2ataspri.adb /^ procedure Read_Lock (L : in out Lock; Ceiling_V/
3068Read_Lock/p ada-src/2ataspri.ads /^ procedure Read_Lock (L : in out Lock; Ceiling_V/
3069read_menu_command c-src/emacs/src/keyboard.c /^read_menu_command (void)$/
3070read php-src/lce_functions.php /^ function read()$/
3071read_toc perl-src/htlmify-cystic /^sub read_toc ()$/
3072ReadVacation cp-src/functions.cpp /^void ReadVacation ( char *filename ) {$/
3073realloc c-src/emacs/src/gmalloc.c 1716
3074realloc c-src/emacs/src/gmalloc.c 65
3075realloc c-src/emacs/src/gmalloc.c 69
3076_realloc c-src/emacs/src/gmalloc.c /^_realloc (void *ptr, size_t size)$/
3077realloc c-src/emacs/src/gmalloc.c /^realloc (void *ptr, size_t size)$/
3078reallochook c-src/emacs/src/gmalloc.c /^reallochook (void *ptr, size_t size)$/
3079_realloc_internal c-src/emacs/src/gmalloc.c /^_realloc_internal (void *ptr, size_t size)$/
3080_realloc_internal_nolock c-src/emacs/src/gmalloc.c /^_realloc_internal_nolock (void *ptr, size_t size)$/
3081RE_BACKSLASH_ESCAPE_IN_LISTS c-src/emacs/src/regex.h 47
3082RE_BK_PLUS_QM c-src/emacs/src/regex.h 52
3083RECC_ALNUM c-src/emacs/src/regex.h 610
3084RECC_ALPHA c-src/emacs/src/regex.h 610
3085RECC_ASCII c-src/emacs/src/regex.h 617
3086RECC_BLANK c-src/emacs/src/regex.h 615
3087RECC_CNTRL c-src/emacs/src/regex.h 613
3088RECC_DIGIT c-src/emacs/src/regex.h 614
3089RECC_ERROR c-src/emacs/src/regex.h 609
3090RECC_GRAPH c-src/emacs/src/regex.h 611
3091RECC_LOWER c-src/emacs/src/regex.h 612
3092RECC_MULTIBYTE c-src/emacs/src/regex.h 616
3093RECC_NONASCII c-src/emacs/src/regex.h 616
3094RECC_PRINT c-src/emacs/src/regex.h 611
3095RECC_PUNCT c-src/emacs/src/regex.h 613
3096RECC_SPACE c-src/emacs/src/regex.h 615
3097RECC_UNIBYTE c-src/emacs/src/regex.h 617
3098RECC_UPPER c-src/emacs/src/regex.h 612
3099RECC_WORD c-src/emacs/src/regex.h 610
3100RECC_XDIGIT c-src/emacs/src/regex.h 614
3101recent_keys c-src/emacs/src/keyboard.c 100
3102recent-keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, /
3103recent_keys_index c-src/emacs/src/keyboard.c 94
3104RE_CHAR_CLASSES c-src/emacs/src/regex.h 58
3105RE_CONTEXT_INDEP_ANCHORS c-src/emacs/src/regex.h 72
3106RE_CONTEXT_INDEP_OPS c-src/emacs/src/regex.h 80
3107RE_CONTEXT_INVALID_OPS c-src/emacs/src/regex.h 84
3108record_asynch_buffer_change c-src/emacs/src/keyboard.c /^record_asynch_buffer_change (void)$/
3109record_auto_save c-src/emacs/src/keyboard.c /^record_auto_save (void)$/
3110record_char c-src/emacs/src/keyboard.c /^record_char (Lisp_Object c)$/
3111record_menu_key c-src/emacs/src/keyboard.c /^record_menu_key (Lisp_Object c)$/
3112record_single_kboard_state c-src/emacs/src/keyboard.c /^record_single_kboard_state ()$/
3113record_xmalloc c-src/emacs/src/lisp.h /^extern void *record_xmalloc (size_t) ATTRIBUTE_ALL/
3114recover_top_level_message c-src/emacs/src/keyboard.c 138
3115Rectangle.getPos lua-src/test.lua /^function Rectangle.getPos ()$/
3116recursion-depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/
3117recursive_edit_1 c-src/emacs/src/keyboard.c /^recursive_edit_1 (void)$/
3118recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/
3119recursive_edit_unwind c-src/emacs/src/keyboard.c /^recursive_edit_unwind (Lisp_Object buffer)$/
3120RED cp-src/screen.hpp 16
3121RE_DEBUG c-src/emacs/src/regex.h 161
3122redirect c-src/emacs/src/lisp.h 663
3123RE_DOT_NEWLINE c-src/emacs/src/regex.h 88
3124RE_DOT_NOT_NULL c-src/emacs/src/regex.h 92
3125reduce prol-src/natded.prolog /^reduce((X^M)@N,L):- % beta reduction$/
3126reduce_subterm prol-src/natded.prolog /^reduce_subterm(M,M2):-$/
3127RE_DUP_MAX c-src/emacs/src/regex.h 253
3128RE_DUP_MAX c-src/emacs/src/regex.h 256
3129/ReEncode ps-src/rfc1245.ps /^\/ReEncode { $/
3130refreshPort pyt-src/server.py /^ def refreshPort(self):$/
3131RE_FRUGAL c-src/emacs/src/regex.h 147
3132\ref tex-src/texinfo.tex /^\\def\\ref#1{\\xrefX[#1,,,,,,,]}$/
3133\refx tex-src/texinfo.tex /^\\def\\refx#1#2{%$/
3134REG_BADBR c-src/emacs/src/regex.h 313
3135REG_BADPAT c-src/emacs/src/regex.h 305
3136REG_BADRPT c-src/emacs/src/regex.h 316
3137REG_EBRACE c-src/emacs/src/regex.h 312
3138REG_EBRACK c-src/emacs/src/regex.h 310
3139REG_ECOLLATE c-src/emacs/src/regex.h 306
3140REG_ECTYPE c-src/emacs/src/regex.h 307
3141REG_EEND c-src/emacs/src/regex.h 319
3142REG_EESCAPE c-src/emacs/src/regex.h 308
3143REG_ENOSYS c.c 279
3144REG_ENOSYS c-src/emacs/src/regex.h 297
3145REG_EPAREN c-src/emacs/src/regex.h 311
3146REG_ERANGE c-src/emacs/src/regex.h 314
3147REG_ERANGEX c-src/emacs/src/regex.h 322
3148REG_ERPAREN c-src/emacs/src/regex.h 321
3149reg_errcode_t c.c 279
3150reg_errcode_t c-src/emacs/src/regex.h 323
3151REG_ESIZE c-src/emacs/src/regex.h 320
3152REG_ESPACE c-src/emacs/src/regex.h 315
3153REG_ESUBREG c-src/emacs/src/regex.h 309
3154regex c-src/etags.c 219
3155regexfile make-src/Makefile /^regexfile: Makefile$/
3156_REGEX_H c-src/emacs/src/regex.h 21
3157REGEX make-src/Makefile /^REGEX=\/[ \\t]*DEFVAR_[A-Z_ \\t\\n(]+"\\([^"]+\\)"\/$/
3158REGEXOBJS make-src/Makefile /^REGEXOBJS=regex.o$/
3159regex.o make-src/Makefile /^regex.o: emacs\/src\/regex.c$/
3160regexp c-src/etags.c 256
3161regexp c-src/etags.c 268
3162regex_tag_multiline c-src/etags.c /^regex_tag_multiline (void)$/
3163regex_t c-src/emacs/src/regex.h 416
3164REG_EXTENDED c-src/emacs/src/regex.h 263
3165REG_ICASE c-src/emacs/src/regex.h 267
3166registerAction objcpp-src/SimpleCalc.M /^- registerAction:(SEL)action$/
3167register_heapinfo c-src/emacs/src/gmalloc.c /^register_heapinfo (void)$/
3168regmatch_t c-src/emacs/src/regex.h 451
3169REG_NEWLINE c-src/emacs/src/regex.h 272
3170REG_NOERROR c-src/emacs/src/regex.h 300
3171REG_NOMATCH c-src/emacs/src/regex.h 301
3172REG_NOSUB c-src/emacs/src/regex.h 276
3173REG_NOTBOL c-src/emacs/src/regex.h 286
3174REG_NOTEOL c-src/emacs/src/regex.h 289
3175regoff_t c-src/emacs/src/regex.h 423
3176regs_allocated c-src/emacs/src/regex.h 379
3177regs cp-src/screen.cpp 16
3178regs c-src/etags.c 263
3179regset c-src/h.h 31
3180REGS_FIXED c-src/emacs/src/regex.h 378
3181REGS_REALLOCATE c-src/emacs/src/regex.h 377
3182REGS_UNALLOCATED c-src/emacs/src/regex.h 376
3183reg_syntax_t c-src/emacs/src/regex.h 43
3184regular_top_level_message c-src/emacs/src/keyboard.c 143
3185rehash_size c-src/emacs/src/lisp.h 1835
3186rehash_threshold c-src/emacs/src/lisp.h 1839
3187RE_HAT_LISTS_NOT_NEWLINE c-src/emacs/src/regex.h 96
3188RE_INTERVALS c-src/emacs/src/regex.h 101
3189re_iswctype c-src/emacs/src/regex.h 602
3190relative_filename c-src/etags.c /^relative_filename (char *file, char *dir)$/
3191=\relax tex-src/texinfo.tex /^\\let\\appendix=\\relax$/
3192=\relax tex-src/texinfo.tex /^\\let\\chapter=\\relax$/
3193=\relax tex-src/texinfo.tex /^\\let\\section=\\relax$/
3194=\relax tex-src/texinfo.tex /^\\let\\subsection=\\relax$/
3195=\relax tex-src/texinfo.tex /^\\let\\subsubsection=\\relax$/
3196release distrib make-src/Makefile /^release distrib: web$/
3197RELEASELIST make-src/Makefile /^RELEASELIST=pot@gnu.org xemacs-review@xemacs.org j/
3198ReleaseNameString pas-src/common.pas /^procedure ReleaseNameString; (* (var NSP: NameStri/
3199RE_LIMITED_OPS c-src/emacs/src/regex.h 105
3200removeexp prol-src/natded.prolog /^removeexp(E,E,'NIL'):-!.$/
3201RemoveLayer lua-src/allegro.lua /^function RemoveLayer ()$/
3202RemoveUnderlineControl pas-src/common.pas /^function RemoveUnderlineControl; (*($/
3203RE_NEWLINE_ALT c-src/emacs/src/regex.h 109
3204RE_NO_BK_BRACES c-src/emacs/src/regex.h 114
3205RE_NO_BK_PARENS c-src/emacs/src/regex.h 118
3206RE_NO_BK_REFS c-src/emacs/src/regex.h 122
3207RE_NO_BK_VBAR c-src/emacs/src/regex.h 126
3208RE_NO_EMPTY_RANGES c-src/emacs/src/regex.h 132
3209RE_NO_GNU_OPS c-src/emacs/src/regex.h 144
3210RE_NO_NEWLINE_ANCHOR c-src/emacs/src/regex.h 153
3211RE_NO_POSIX_BACKTRACKING c-src/emacs/src/regex.h 140
3212RE_NREGS c-src/emacs/src/regex.h 440
3213re_nsub c-src/emacs/src/regex.h 364
3214reorder_modifiers c-src/emacs/src/keyboard.c /^reorder_modifiers (Lisp_Object symbol)$/
3215re_pattern_buffer c-src/emacs/src/regex.h 335
3216re_pattern_buffer c-src/h.h 119
3217ReprOfChar pas-src/common.pas /^function ReprOfChar; (*( ch : char) : NameString;*/
3218__repr__ pyt-src/server.py /^ def __repr__(self):$/
3219request c.c /^request request (a, b)$/
3220requeued_events_pending_p c-src/emacs/src/keyboard.c /^requeued_events_pending_p (void)$/
3221required_argument c-src/getopt.h 90
3222require merc-src/accumulator.m /^:- import_module require.$/
3223re_registers c-src/emacs/src/regex.h 428
3224\resetmathfonts tex-src/texinfo.tex /^\\def\\resetmathfonts{%$/
3225reset-this-command-lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/
3226RE_SHY_GROUPS c-src/emacs/src/regex.h 150
3227restore_getcjmp c-src/emacs/src/keyboard.c /^restore_getcjmp (sys_jmp_buf temp)$/
3228restore_kboard_configuration c-src/emacs/src/keyboard.c /^restore_kboard_configuration (int was_locked)$/
3229/restorematrix ps-src/rfc1245.ps /^\/restorematrix {$/
3230_Restrict_arr_ c-src/emacs/src/regex.h 555
3231_Restrict_arr_ c-src/emacs/src/regex.h 557
3232_Restrict_ c-src/emacs/src/regex.h 540
3233_Restrict_ c-src/emacs/src/regex.h 542
3234_Restrict_ c-src/emacs/src/regex.h 544
3235\result tex-src/texinfo.tex /^\\def\\result{\\leavevmode\\raise.15ex\\hbox to 1em{\\hf/
3236\result tex-src/texinfo.tex /^\\def\\result{\\realbackslash result}$/
3237RESUME_POLLING c-src/emacs/src/keyboard.c 2170
3238RE_SYNTAX_AWK c-src/emacs/src/regex.h 186
3239RE_SYNTAX_ED c-src/emacs/src/regex.h 216
3240RE_SYNTAX_EGREP c-src/emacs/src/regex.h 206
3241RE_SYNTAX_EMACS c-src/emacs/src/regex.h 183
3242RE_SYNTAX_GNU_AWK c-src/emacs/src/regex.h 193
3243RE_SYNTAX_GREP c-src/emacs/src/regex.h 201
3244RE_SYNTAX_POSIX_AWK c-src/emacs/src/regex.h 197
3245RE_SYNTAX_POSIX_BASIC c-src/emacs/src/regex.h 225
3246_RE_SYNTAX_POSIX_COMMON c-src/emacs/src/regex.h 221
3247RE_SYNTAX_POSIX_EGREP c-src/emacs/src/regex.h 212
3248RE_SYNTAX_POSIX_EXTENDED c-src/emacs/src/regex.h 234
3249RE_SYNTAX_POSIX_MINIMAL_BASIC c-src/emacs/src/regex.h 231
3250RE_SYNTAX_POSIX_MINIMAL_EXTENDED c-src/emacs/src/regex.h 242
3251RE_SYNTAX_SED c-src/emacs/src/regex.h 218
3252RE_TRANSLATE_TYPE c-src/emacs/src/regex.h 332
3253return_to_command_loop c-src/emacs/src/keyboard.c 135
3254RETURN_UNGCPRO c-src/emacs/src/lisp.h /^#define RETURN_UNGCPRO(expr) \\$/
3255RE_UNMATCHED_RIGHT_PAREN_ORD c-src/emacs/src/regex.h 136
3256reverse prol-src/natded.prolog /^reverse([],Ws,Ws).$/
3257revert objc-src/PackInsp.m /^-revert:sender$/
3258re_wchar_t c-src/emacs/src/regex.h 600
3259re_wchar_t c-src/emacs/src/regex.h 623
3260re_wctype c-src/emacs/src/regex.h 601
3261re_wctype_t c-src/emacs/src/regex.h 599
3262re_wctype_t c-src/emacs/src/regex.h 618
3263re_wctype_to_bit c-src/emacs/src/regex.h /^# define re_wctype_to_bit(cc) 0$/
3264/RF ps-src/rfc1245.ps /^\/RF { $/
3265right c-src/etags.c 216
3266right_shift y-src/cccp.y /^right_shift (a, b)$/
3267ring1 c.c 241
3268ring2 c.c 242
3269rm_eo c-src/emacs/src/regex.h 450
3270rm_so c-src/emacs/src/regex.h 449
3271\rm tex-src/texinfo.tex /^\\def\\rm{\\realbackslash rm }%$/
3272rng_base cp-src/Range.h 79
3273rng_inc cp-src/Range.h 81
3274rng_limit cp-src/Range.h 80
3275rng_nelem cp-src/Range.h 83
3276rosso cp-src/c.C 40
3277/R ps-src/rfc1245.ps /^\/R { $/
3278/RR ps-src/rfc1245.ps /^\/RR { $/
3279RSH y-src/cccp.c 17
3280rsyncfromfly make-src/Makefile /^rsyncfromfly:$/
3281rsynctofly make-src/Makefile /^rsynctofly:$/
3282RTE/s ada-src/2ataspri.adb /^ package RTE renames Interfaces.C.POSIX_RTE;$/
3283\r tex-src/texinfo.tex /^\\def\\r##1{\\realbackslash r {##1}}%$/
3284\r tex-src/texinfo.tex /^\\def\\r##1{\\realbackslash r {##1}}$/
3285\r tex-src/texinfo.tex /^\\def\\r#1{{\\rm #1}} % roman font$/
3286rtint c-src/h.h 60
3287rtint c-src/h.h 68
3288rtstr c-src/h.h 61
3289rtstr c-src/h.h 69
3290rtunion_def c-src/h.h 58
3291rtunion_def c-src/h.h 64
3292rtx c-src/h.h 62
3293rtxnp c-src/h.h 71
3294rtxp c-src/h.h 70
3295` ruby-src/test.rb /^ def `(command)$/
3296+ ruby-src/test.rb /^ def +(y)$/
3297<< ruby-src/test.rb /^ def <<(y)$/
3298<= ruby-src/test.rb /^ def <=(y)$/
3299<=> ruby-src/test.rb /^ def <=>(y)$/
3300== ruby-src/test.rb /^ def ==(y)$/
3301=== ruby-src/test.rb /^ def ===(y)$/
3302[] ruby-src/test.rb /^ def [](y)$/
3303[]= ruby-src/test.rb /^ def []=(y, val)$/
3304RUN make-src/Makefile /^RUN=$/
3305RUN make-src/Makefile /^RUN=time --quiet --format '%U + %S: %E'$/
3306RXINCLUDE make-src/Makefile /^RXINCLUDE=-Iemacs\/src$/
3307s1 cp-src/c.C 32
3308/s1 ps-src/rfc1245.ps /^\/s1 1 string def$/
3309s2 cp-src/c.C 35
3310SAFE_ALLOCA c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA(size) ((size) <= sa_avail \\/
3311SAFE_ALLOCA_LISP c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA_LISP(buf, nelt) \\$/
3312SAFE_ALLOCA_STRING c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA_STRING(ptr, string) \\$/
3313SAFE_FREE c-src/emacs/src/lisp.h /^#define SAFE_FREE() \\$/
3314SAFE_NALLOCA c-src/emacs/src/lisp.h /^#define SAFE_NALLOCA(buf, multiplier, nitems) \\/
3315safe_run_hook_funcall c-src/emacs/src/keyboard.c /^safe_run_hook_funcall (ptrdiff_t nargs, Lisp_Objec/
3316safe_run_hooks_1 c-src/emacs/src/keyboard.c /^safe_run_hooks_1 (ptrdiff_t nargs, Lisp_Object *ar/
3317safe_run_hooks c-src/emacs/src/keyboard.c /^safe_run_hooks (Lisp_Object hook)$/
3318safe_run_hooks_error c-src/emacs/src/keyboard.c /^safe_run_hooks_error (Lisp_Object error, ptrdiff_t/
3319Sample tex-src/gzip.texi /^@node Sample, Invoking gzip, Overview, Top$/
3320\samp tex-src/texinfo.tex /^\\def\\samp##1{\\realbackslash samp {##1}}%$/
3321\samp tex-src/texinfo.tex /^\\def\\samp##1{\\realbackslash samp {##1}}$/
3322\samp tex-src/texinfo.tex /^\\def\\samp #1{`\\tclose{#1}'\\null}$/
3323/sangle ps-src/rfc1245.ps /^\/sangle 1 0 dmatrix defaultmatrix dtransform exch /
3324SAVE_FUNCPOINTER c-src/emacs/src/lisp.h 2049
3325save_getcjmp c-src/emacs/src/keyboard.c /^save_getcjmp (sys_jmp_buf temp)$/
3326SAVE_INTEGER c-src/emacs/src/lisp.h 2048
3327/savematrix ps-src/rfc1245.ps /^\/savematrix {$/
3328savenstr c-src/etags.c /^savenstr (const char *cp, int len)$/
3329SAVE_OBJECT c-src/emacs/src/lisp.h 2051
3330SAVE_POINTER c-src/emacs/src/lisp.h 2050
3331save pyt-src/server.py /^ def save(self):$/
3332SAVE_SLOT_BITS c-src/emacs/src/lisp.h 2055
3333savestr c-src/etags.c /^savestr (const char *cp)$/
3334SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2062
3335SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2114
3336SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2123
3337save_type c-src/emacs/src/lisp.h /^save_type (struct Lisp_Save_Value *v, int n)$/
3338SAVE_TYPE_FUNCPTR_PTR_OBJ c-src/emacs/src/lisp.h 2076
3339SAVE_TYPE_INT_INT c-src/emacs/src/lisp.h 2066
3340SAVE_TYPE_INT_INT_INT c-src/emacs/src/lisp.h 2067
3341SAVE_TYPE_MEMORY c-src/emacs/src/lisp.h 2080
3342SAVE_TYPE_OBJ_OBJ c-src/emacs/src/lisp.h 2069
3343SAVE_TYPE_OBJ_OBJ_OBJ c-src/emacs/src/lisp.h 2070
3344SAVE_TYPE_OBJ_OBJ_OBJ_OBJ c-src/emacs/src/lisp.h 2071
3345SAVE_TYPE_PTR_INT c-src/emacs/src/lisp.h 2073
3346SAVE_TYPE_PTR_OBJ c-src/emacs/src/lisp.h 2074
3347SAVE_TYPE_PTR_PTR c-src/emacs/src/lisp.h 2075
3348SAVE_UNUSED c-src/emacs/src/lisp.h 2047
3349SAVE_VALUEP c-src/emacs/src/lisp.h /^SAVE_VALUEP (Lisp_Object x)$/
3350SAVE_VALUE_SLOTS c-src/emacs/src/lisp.h 2058
3351say go-src/test.go /^func say(msg string) {$/
3352__sbrk c-src/emacs/src/gmalloc.c 1513
3353SBYTES c-src/emacs/src/lisp.h /^SBYTES (Lisp_Object string)$/
3354scan_separators c-src/etags.c /^scan_separators (char *name)$/
3355S c.c 156
3356SCHARS c-src/emacs/src/lisp.h /^SCHARS (Lisp_Object string)$/
3357Scheme_functions c-src/etags.c /^Scheme_functions (FILE *inf)$/
3358Scheme_help c-src/etags.c 667
3359Scheme_suffixes c-src/etags.c 665
3360scolonseen c-src/etags.c 2447
3361scratch c-src/sysdep.h 56
3362SCREEN_FP cp-src/screen.hpp /^#define SCREEN_FP(x,y) \\$/
3363SCREEN_START cp-src/screen.hpp 33
3364scroll_bar_parts c-src/emacs/src/keyboard.c 5189
3365s c-src/emacs/src/lisp.h 4672
3366s c-src/emacs/src/lisp.h 4678
3367\sc tex-src/texinfo.tex /^\\def\\sc#1{{\\smallcaps#1}} % smallcaps font$/
3368SDATA c-src/emacs/src/lisp.h /^SDATA (Lisp_Object string)$/
3369SDTrefGetInteger pas-src/common.pas /^function SDTrefGetInteger : integer;$/
3370SDTrefIsEnd pas-src/common.pas /^function SDTrefIsEnd : Boolean;$/
3371SDTrefRecToString pas-src/common.pas /^procedure SDTrefRecToString (* ($/
3372SDTrefSkipSpaces pas-src/common.pas /^procedure SDTrefSkipSpaces;$/
3373SDTrefStringToRec pas-src/common.pas /^procedure SDTrefStringToRec (* ($/
3374\seccheck tex-src/texinfo.tex /^\\def\\seccheck#1{\\if \\pageno<0 %$/
3375\secentryfonts tex-src/texinfo.tex /^\\def\\secentryfonts{\\textfonts}$/
3376\secentry tex-src/texinfo.tex /^ \\def\\secentry ##1##2##3##4{}$/
3377\secentry tex-src/texinfo.tex /^\\def\\secentry#1#2#3#4{\\dosecentry{#2.#3\\labelspace/
3378\secfonts tex-src/texinfo.tex /^\\def\\secfonts{%$/
3379\secheadingbreak tex-src/texinfo.tex /^\\def\\secheadingbreak{\\dobreak \\secheadingskip {-10/
3380\secheadingi tex-src/texinfo.tex /^\\def\\secheadingi #1{{\\advance \\secheadingskip by \\/
3381\secheading tex-src/texinfo.tex /^\\def\\secheading #1#2#3{\\secheadingi {#2.#3\\enspace/
3382\secondary tex-src/texinfo.tex /^\\def\\secondary #1#2{$/
3383sec=\relax tex-src/texinfo.tex /^\\let\\appendixsec=\\relax$/
3384section_href perl-src/htlmify-cystic /^sub section_href ($)$/
3385section_name perl-src/htlmify-cystic 12
3386section_name perl-src/htlmify-cystic /^sub section_name ($)$/
3387section perl-src/htlmify-cystic 25
3388section=\relax tex-src/texinfo.tex /^\\let\\appendixsection=\\relax$/
3389section_toc perl-src/htlmify-cystic 15
3390section_url_base perl-src/htlmify-cystic /^sub section_url_base ()$/
3391section_url_name perl-src/htlmify-cystic /^sub section_url_name ()$/
3392section_url perl-src/htlmify-cystic /^sub section_url ()$/
3393\seczzz tex-src/texinfo.tex /^\\def\\seczzz #1{\\seccheck{section}%$/
3394select_last prol-src/natded.prolog /^select_last([X],X,[]).$/
3395SelectLayer lua-src/allegro.lua /^function SelectLayer (layer)$/
3396select prol-src/natded.prolog /^select(X,[X|Xs],Xs).$/
3397select-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table ()$/
3398select-tags-table-mode el-src/emacs/lisp/progmodes/etags.el /^(define-derived-mode select-tags-table-mode specia/
3399select-tags-table-mode-map el-src/emacs/lisp/progmodes/etags.el /^(defvar select-tags-table-mode-map ; Doc string?$/
3400select-tags-table-quit el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table-quit ()$/
3401select-tags-table-select el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table-select (button)$/
3402Self/f ada-src/2ataspri.adb /^ function Self return TCB_Ptr is$/
3403Self/f ada-src/2ataspri.ads /^ function Self return TCB_Ptr;$/
3404send objc-src/Subprocess.m /^- send:(const char *)string$/
3405send objc-src/Subprocess.m /^- send:(const char *)string withNewline:(BOOL)want/
3406separator_names c-src/emacs/src/keyboard.c 7372
3407serializeToVars php-src/lce_functions.php /^ function serializeToVars($prefix)$/
3408ServerEdit pyt-src/server.py /^class ServerEdit(Frame):$/
3409Server pyt-src/server.py /^class Server:$/
3410set_base cp-src/Range.h /^ void set_base (double b) { rng_base = b; }$/
3411\setchapternewpage tex-src/texinfo.tex /^\\def\\setchapternewpage #1 {\\csname CHAPPAG#1\\endcs/
3412\setchapterstyle tex-src/texinfo.tex /^\\def\\setchapterstyle #1 {\\csname CHAPF#1\\endcsname/
3413set_char_table_contents c-src/emacs/src/lisp.h /^set_char_table_contents (Lisp_Object table, ptrdif/
3414set_char_table_defalt c-src/emacs/src/lisp.h /^set_char_table_defalt (Lisp_Object table, Lisp_Obj/
3415set_char_table_extras c-src/emacs/src/lisp.h /^set_char_table_extras (Lisp_Object table, ptrdiff_/
3416set_char_table_purpose c-src/emacs/src/lisp.h /^set_char_table_purpose (Lisp_Object table, Lisp_Ob/
3417set cp-src/conway.hpp /^ void set(void) { alive = 1; }$/
3418setDate cp-src/functions.cpp /^void Date::setDate ( int d , int m , int y ){$/
3419\setdeffont tex-src/texinfo.tex /^\\def\\setdeffont #1 {\\csname DEF#1\\endcsname}$/
3420setDelegate objc-src/Subprocess.m /^- setDelegate:anObject$/
3421\setfilename tex-src/texinfo.tex /^\\def\\setfilename{%$/
3422set_hash_key_slot c-src/emacs/src/lisp.h /^set_hash_key_slot (struct Lisp_Hash_Table *h, ptrd/
3423set_hash_value_slot c-src/emacs/src/lisp.h /^set_hash_value_slot (struct Lisp_Hash_Table *h, pt/
3424set_inc cp-src/Range.h /^ void set_inc (double i) { rng_inc = i; }$/
3425set-input-interrupt-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/
3426set-input-meta-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/
3427set-input-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/
3428set_limit cp-src/Range.h /^ void set_limit (double l) { rng_limit = l; }$/
3429/setmanualfeed ps-src/rfc1245.ps /^\/setmanualfeed {$/
3430set merc-src/accumulator.m /^:- import_module set.$/
3431set-output-flow-control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/
3432set_overlay_plist c-src/emacs/src/lisp.h /^set_overlay_plist (Lisp_Object overlay, Lisp_Objec/
3433Set_Own_Priority/p ada-src/2ataspri.adb /^ procedure Set_Own_Priority (Prio : System.Any_P/
3434Set_Own_Priority/p ada-src/2ataspri.ads /^ procedure Set_Own_Priority (Prio : System.Any_P/
3435/setpapername ps-src/rfc1245.ps /^\/setpapername { $/
3436/setpattern ps-src/rfc1245.ps /^\/setpattern {$/
3437set_poll_suppress_count c-src/emacs/src/keyboard.c /^set_poll_suppress_count (int count)$/
3438Set_Priority/p ada-src/2ataspri.adb /^ procedure Set_Priority$/
3439Set_Priority/p ada-src/2ataspri.ads /^ procedure Set_Priority (T : TCB_Ptr; Prio : Sys/
3440set_prop c-src/emacs/src/keyboard.c /^set_prop (ptrdiff_t idx, Lisp_Object val)$/
3441SETPRT f-src/entry.for /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/
3442SETPRT f-src/entry.strange /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/
3443SETPRT f-src/entry.strange_suffix /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/
3444set-quit-char c-src/emacs/src/keyboard.c /^DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_/
3445\setref tex-src/texinfo.tex /^\\def\\setref#1{%$/
3446setref tex-src/texinfo.tex /^\\expandafter\\expandafter\\expandafter\\appendixsetre/
3447setRevertButtonTitle objc-src/PackInsp.m /^-setRevertButtonTitle$/
3448set_save_integer c-src/emacs/src/lisp.h /^set_save_integer (Lisp_Object obj, int n, ptrdiff_/
3449set_save_pointer c-src/emacs/src/lisp.h /^set_save_pointer (Lisp_Object obj, int n, void *va/
3450set_string_intervals c-src/emacs/src/lisp.h /^set_string_intervals (Lisp_Object s, INTERVAL i)$/
3451set_sub_char_table_contents c-src/emacs/src/lisp.h /^set_sub_char_table_contents (Lisp_Object table, pt/
3452SET_SYMBOL_BLV c-src/emacs/src/lisp.h /^SET_SYMBOL_BLV (struct Lisp_Symbol *sym, struct Li/
3453set_symbol_function c-src/emacs/src/lisp.h /^set_symbol_function (Lisp_Object sym, Lisp_Object /
3454SET_SYMBOL_FWD c-src/emacs/src/lisp.h /^SET_SYMBOL_FWD (struct Lisp_Symbol *sym, union Lis/
3455set_symbol_next c-src/emacs/src/lisp.h /^set_symbol_next (Lisp_Object sym, struct Lisp_Symb/
3456set_symbol_plist c-src/emacs/src/lisp.h /^set_symbol_plist (Lisp_Object sym, Lisp_Object pli/
3457SET_SYMBOL_VAL c-src/emacs/src/lisp.h /^# define SET_SYMBOL_VAL(sym, v) lisp_h_SET_SYMBOL_/
3458\set tex-src/texinfo.tex /^\\def\\set{\\parsearg\\setxxx}$/
3459\settitle tex-src/texinfo.tex /^\\def\\settitle{\\parsearg\\settitlezzz}$/
3460\settitlezzz tex-src/texinfo.tex /^\\def\\settitlezzz #1{\\gdef\\thistitle{#1}}$/
3461setup cp-src/c.C 5
3462set_upto merc-src/accumulator.m /^:- func set_upto(accu_case, int) = set(accu_goal_i/
3463set_waiting_for_input c-src/emacs/src/keyboard.c /^set_waiting_for_input (struct timespec *time_to_cl/
3464\setxxx tex-src/texinfo.tex /^\\def\\setxxx #1{$/
3465/SF ps-src/rfc1245.ps /^\/SF { $/
3466\sf tex-src/texinfo.tex /^\\def\\sf{\\fam=\\sffam \\tensf}$/
3467\sf tex-src/texinfo.tex /^\\def\\sf{\\realbackslash sf}%$/
3468shift cp-src/functions.cpp /^void Date::shift ( void ){\/\/Shift this date to pre/
3469\shortchapentry tex-src/texinfo.tex /^\\def\\shortchapentry#1#2#3{%$/
3470\shortunnumberedentry tex-src/texinfo.tex /^\\def\\shortunnumberedentry#1#2{%$/
3471should_attempt_accu_transform_2 merc-src/accumulator.m /^:- pred should_attempt_accu_transform_2(module_inf/
3472should_attempt_accu_transform merc-src/accumulator.m /^:- pred should_attempt_accu_transform(module_info:/
3473shouldLoad objc-src/PackInsp.m /^-(BOOL)shouldLoad$/
3474should_see_this_array_type cp-src/c.C 156
3475should_see_this_function_pointer cp-src/c.C 153
3476should_see_this_one_enclosed_in_extern_C cp-src/c.C 149
3477show erl-src/gs_dialog.erl /^show(Module, Title, Message, Args) ->$/
3478showError objc-src/Subprocess.m /^showError (const char *errorString, id theDelegate/
3479show_help_echo c-src/emacs/src/keyboard.c /^show_help_echo (Lisp_Object help, Lisp_Object wind/
3480showInfo objc-src/PackInsp.m /^-showInfo:sender$/
3481sig c-src/emacs/src/keyboard.c 7238
3482signal_handler1 c-src/h.h 83
3483signal_handler c-src/h.h 82
3484signal_handler_t c-src/h.h 94
3485SimpleCalc objcpp-src/SimpleCalc.H /^@interface SimpleCalc:Object$/
3486simulation html-src/software.html /^Software that I wrote for supporting my research a/
3487\singlecodeindexer tex-src/texinfo.tex /^\\def\\singlecodeindexer #1{\\doind{\\indexname}{\\code/
3488\singleindexer tex-src/texinfo.tex /^\\def\\singleindexer #1{\\doind{\\indexname}{#1}}$/
3489single_kboard c-src/emacs/src/keyboard.c 89
3490single_kboard_state c-src/emacs/src/keyboard.c /^single_kboard_state ()$/
3491SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c 6212
3492SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c 6763
3493SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c /^#define SINGLE_LETTER_MOD(BIT) \\$/
3494\singlespace tex-src/texinfo.tex /^\\def\\singlespace{%$/
3495site cp-src/conway.hpp 5
3496site cp-src/conway.hpp /^ site(int xi, int yi): x(xi), y(yi), alive(0) {/
3497size c-src/emacs/src/gmalloc.c 156
3498size c-src/emacs/src/gmalloc.c 163
3499size c-src/emacs/src/gmalloc.c 1862
3500size c-src/emacs/src/lisp.h 1364
3501size c-src/emacs/src/lisp.h 1390
3502size c-src/etags.c 236
3503size c-src/etags.c 2522
3504SIZEFORMAT objc-src/PackInsp.m 57
3505skeyseen c-src/etags.c 2445
3506SkipBlanks pas-src/common.pas /^function SkipBlanks; (*($/
3507SkipChars pas-src/common.pas /^function SkipChars; (*($/
3508skip_name c-src/etags.c /^skip_name (char *cp)$/
3509skip_non_spaces c-src/etags.c /^skip_non_spaces (char *cp)$/
3510skip_spaces c-src/etags.c /^skip_spaces (char *cp)$/
3511SkipSpaces pas-src/common.pas /^procedure SkipSpaces; (* (Str : NameString; var I /
3512\sl tex-src/texinfo.tex /^\\def\\sl{\\realbackslash sl }%$/
3513\smallbook tex-src/texinfo.tex /^\\def\\smallbook{$/
3514\smalllispx tex-src/texinfo.tex /^\\def\\smalllispx{\\aboveenvbreak\\begingroup\\inENV$/
3515\smartitalic tex-src/texinfo.tex /^\\def\\smartitalic#1{{\\sl #1}\\futurelet\\next\\smartit/
3516=\smartitalic tex-src/texinfo.tex /^\\let\\cite=\\smartitalic$/
3517\smartitalicx tex-src/texinfo.tex /^\\def\\smartitalicx{\\ifx\\next,\\else\\ifx\\next-\\else\\i/
3518snarf-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar snarf-tag-function nil$/
3519snone c-src/etags.c 2443
3520solutions merc-src/accumulator.m /^:- import_module solutions.$/
3521some_mouse_moved c-src/emacs/src/keyboard.c /^some_mouse_moved (void)$/
3522#some-storage forth-src/test-forth.fth /^2000 buffer: #some-storage$/
3523spacer c-src/emacs/src/lisp.h 1975
3524spacer c-src/emacs/src/lisp.h 1982
3525spacer c-src/emacs/src/lisp.h 2036
3526spacer c-src/emacs/src/lisp.h 2205
3527space tex-src/texinfo.tex /^ {#2\\labelspace #1}\\dotfill\\doshortpageno{#3}}%/
3528space tex-src/texinfo.tex /^ \\dosubsubsecentry{#2.#3.#4.#5\\labelspace#1}{#6}}/
3529specbinding c-src/emacs/src/lisp.h 2955
3530specbind_tag c-src/emacs/src/lisp.h 2943
3531specialsymbol prol-src/natded.prolog /^specialsymbol(C1,C2,S):-$/
3532SPECPDL_BACKTRACE c-src/emacs/src/lisp.h 2948
3533SPECPDL_INDEX c-src/emacs/src/lisp.h /^SPECPDL_INDEX (void)$/
3534SPECPDL_LET c-src/emacs/src/lisp.h 2949
3535SPECPDL_LET_DEFAULT c-src/emacs/src/lisp.h 2952
3536SPECPDL_LET_LOCAL c-src/emacs/src/lisp.h 2951
3537SPECPDL_UNWIND c-src/emacs/src/lisp.h 2944
3538SPECPDL_UNWIND_INT c-src/emacs/src/lisp.h 2946
3539SPECPDL_UNWIND_PTR c-src/emacs/src/lisp.h 2945
3540SPECPDL_UNWIND_VOID c-src/emacs/src/lisp.h 2947
3541splitexp prol-src/natded.prolog /^splitexp(E,E,('NIL','NIL')):-!.$/
3542\splitoff tex-src/texinfo.tex /^\\def\\splitoff#1#2\\endmark{\\def\\first{#1}\\def\\rest{/
3543/S ps-src/rfc1245.ps /^\/S { $/
3544\sp tex-src/texinfo.tex /^\\def\\sp{\\parsearg\\spxxx}$/
3545\spxxx tex-src/texinfo.tex /^\\def\\spxxx #1{\\par \\vskip #1\\baselineskip}$/
3546Square.something:Bar lua-src/test.lua /^function Square.something:Bar ()$/
3547srclist make-src/Makefile /^srclist: Makefile$/
3548SRCS make-src/Makefile /^SRCS=Makefile ${ADASRC} ${ASRC} ${CSRC} ${CPSRC} $/
3549SREF c-src/emacs/src/lisp.h /^SREF (Lisp_Object string, ptrdiff_t index)$/
3550ss3 c.c 255
3551SSDATA c-src/emacs/src/lisp.h /^SSDATA (Lisp_Object string)$/
3552SSET c-src/emacs/src/lisp.h /^SSET (Lisp_Object string, ptrdiff_t index, unsigne/
3553sss1 c.c 252
3554sss2 c.c 253
3555sstab prol-src/natded.prolog /^sstab(2,'C',',').$/
3556stack c.c 155
3557STACK_CONS c-src/emacs/src/lisp.h /^#define STACK_CONS(a, b) \\$/
3558stagseen c-src/etags.c 2446
3559standalone make-src/Makefile /^standalone:$/
3560\startcontents tex-src/texinfo.tex /^\\def\\startcontents#1{%$/
3561start c-src/emacs/src/keyboard.c 8753
3562start c-src/emacs/src/lisp.h 2038
3563start c-src/emacs/src/regex.h 431
3564StartDay cp-src/functions.cpp /^Date StartDay(Date a,int days){\/\/Function to calcu/
3565\startenumeration tex-src/texinfo.tex /^\\def\\startenumeration#1{%$/
3566start php-src/lce_functions.php /^ function start($line, $class)$/
3567start_polling c-src/emacs/src/keyboard.c /^start_polling (void)$/
3568=starts-with-equals! scm-src/test.scm /^(define =starts-with-equals! #t)$/
3569start_up prol-src/natded.prolog /^start_up:-$/
3570start y-src/cccp.y 143
3571STATE_ABORT php-src/lce_functions.php 25
3572STATE_COMPRESSD objc-src/PackInsp.m 54
3573STATE_INSTALLED objc-src/PackInsp.m 53
3574STATE_LOOP php-src/lce_functions.php 27
3575STATE_OK php-src/lce_functions.php 26
3576state_protected_p c-src/emacs/src/gmalloc.c 400
3577STAT_EQ objc-src/PackInsp.m /^#define STAT_EQ(s1, s2) ((s1)->st_ino == (s2)->st_/
3578statetable html-src/algrthms.html /^Next$/
3579STATE_UNINSTALLED objc-src/PackInsp.m 52
3580staticetags make-src/Makefile /^staticetags:$/
3581st_C_attribute c-src/etags.c 2209
3582st_C_class c-src/etags.c 2212
3583st_C_define c-src/etags.c 2213
3584st_C_enum c-src/etags.c 2213
3585st_C_extern c-src/etags.c 2213
3586st_C_gnumacro c-src/etags.c 2208
3587st_C_ignore c-src/etags.c 2209
3588st_C_javastruct c-src/etags.c 2210
3589st_C_objend c-src/etags.c 2207
3590st_C_objimpl c-src/etags.c 2207
3591st_C_objprot c-src/etags.c 2207
3592st_C_operator c-src/etags.c 2211
3593st_C_struct c-src/etags.c 2213
3594st_C_template c-src/etags.c 2212
3595st_C_typedef c-src/etags.c 2213
3596STDIN c-src/etags.c 408
3597STDIN c-src/etags.c 411
3598step cp-src/clheir.hpp /^ virtual void step(void) { }$/
3599step cp-src/conway.hpp /^ void step(void) { alive = next_alive; }$/
3600step_everybody cp-src/clheir.cpp /^void step_everybody(void)$/
3601st_none c-src/etags.c 2206
3602STOP_POLLING c-src/emacs/src/keyboard.c 2166
3603stop_polling c-src/emacs/src/keyboard.c /^stop_polling (void)$/
3604stored_goal_plain_call merc-src/accumulator.m /^:- inst stored_goal_plain_call for goal_store.stor/
3605store_info merc-src/accumulator.m /^:- type store_info$/
3606store_user_signal_events c-src/emacs/src/keyboard.c /^store_user_signal_events (void)$/
3607strcaseeq c-src/etags.c /^#define strcaseeq(s,t) (assert ((s)!=NULL && (t)!=/
3608streq c-src/etags.c /^#define streq(s,t) (assert ((s)!=NULL || (t)!=NULL/
3609str go-src/test1.go 9
3610STRING_BYTES_BOUND c-src/emacs/src/lisp.h 1261
3611STRING_BYTES c-src/emacs/src/lisp.h /^STRING_BYTES (struct Lisp_String *s)$/
3612string_intervals c-src/emacs/src/lisp.h /^string_intervals (Lisp_Object s)$/
3613string merc-src/accumulator.m /^:- import_module string.$/
3614STRING_MULTIBYTE c-src/emacs/src/lisp.h /^STRING_MULTIBYTE (Lisp_Object str)$/
3615STRING_SET_CHARS c-src/emacs/src/lisp.h /^STRING_SET_CHARS (Lisp_Object string, ptrdiff_t ne/
3616STRING_SET_MULTIBYTE c-src/emacs/src/lisp.h /^#define STRING_SET_MULTIBYTE(STR) \\$/
3617STRING_SET_UNIBYTE c-src/emacs/src/lisp.h /^#define STRING_SET_UNIBYTE(STR) \\$/
3618stripLine php-src/lce_functions.php /^ function stripLine($line, $class)$/
3619stripname pas-src/common.pas /^function stripname; (* ($/
3620StripPath pas-src/common.pas /^function StripPath; (*($/
3621strncaseeq c-src/etags.c /^#define strncaseeq(s,t,n) (assert ((s)!=NULL && (t/
3622strneq c-src/etags.c /^#define strneq(s,t,n) (assert ((s)!=NULL || (t)!=N/
3623__str__ pyt-src/server.py /^ def __str__(self):$/
3624structdef c-src/etags.c 2448
3625stuff_buffered_input c-src/emacs/src/keyboard.c /^stuff_buffered_input (Lisp_Object stuffstring)$/
3626SUB_CHAR_TABLE_OFFSET c-src/emacs/src/lisp.h 1701
3627SUB_CHAR_TABLE_P c-src/emacs/src/lisp.h /^SUB_CHAR_TABLE_P (Lisp_Object a)$/
3628\subheading tex-src/texinfo.tex /^\\def\\subheading{\\parsearg\\subsecheadingi}$/
3629subprocessDone objc-src/PackInsp.m /^-subprocessDone:(Subprocess *)sender$/
3630subprocess objc-src/PackInsp.m /^-subprocess:(Subprocess *)sender output:(char *)bu/
3631Subprocess objc-src/Subprocess.h 41
3632Subprocess objc-src/Subprocess.h /^@interface Subprocess:Object$/
3633SUBRP c-src/emacs/src/lisp.h /^SUBRP (Lisp_Object a)$/
3634\subsecentry tex-src/texinfo.tex /^ \\def\\subsecentry ##1##2##3##4##5{}$/
3635\subsecentry tex-src/texinfo.tex /^\\def\\subsecentry#1#2#3#4#5{\\dosubsecentry{#2.#3.#4/
3636\subsecfonts tex-src/texinfo.tex /^\\def\\subsecfonts{%$/
3637\subsecheadingbreak tex-src/texinfo.tex /^\\def\\subsecheadingbreak{\\dobreak \\subsecheadingski/
3638\subsecheadingi tex-src/texinfo.tex /^\\def\\subsecheadingi #1{{\\advance \\subsecheadingski/
3639\subsecheading tex-src/texinfo.tex /^\\def\\subsecheading #1#2#3#4{\\subsecheadingi {#2.#3/
3640subsec=\relax tex-src/texinfo.tex /^\\let\\appendixsubsec=\\relax$/
3641subsection_marker perl-src/htlmify-cystic 161
3642subsection perl-src/htlmify-cystic 26
3643subsection=\relax tex-src/texinfo.tex /^\\let\\appendixsubsection=\\relax$/
3644substitute c-src/etags.c /^substitute (char *in, char *out, struct re_registe/
3645subst prol-src/natded.prolog /^subst(var(Y),var(X),M,N):-$/
3646SubString pas-src/common.pas /^function SubString; (*($/
3647\subsubheading tex-src/texinfo.tex /^\\def\\subsubheading{\\parsearg\\subsubsecheadingi}$/
3648\subsubsecentry tex-src/texinfo.tex /^ \\def\\subsubsecentry ##1##2##3##4##5##6{}$/
3649\subsubsecentry tex-src/texinfo.tex /^\\def\\subsubsecentry#1#2#3#4#5#6{%$/
3650\subsubsecfonts tex-src/texinfo.tex /^\\def\\subsubsecfonts{\\subsecfonts} % Maybe this sho/
3651\subsubsecheadingi tex-src/texinfo.tex /^\\def\\subsubsecheadingi #1{{\\advance \\subsecheading/
3652\subsubsecheading tex-src/texinfo.tex /^\\def\\subsubsecheading #1#2#3#4#5{\\subsubsecheading/
3653subsubsec=\relax tex-src/texinfo.tex /^\\let\\appendixsubsubsec=\\relax$/
3654subsubsection perl-src/htlmify-cystic 27
3655subsubsection=\relax tex-src/texinfo.tex /^\\let\\appendixsubsubsection=\\relax$/
3656\subtitlefont tex-src/texinfo.tex /^ \\def\\subtitlefont{\\subtitlerm \\normalbaselinesk/
3657\subtitle tex-src/texinfo.tex /^ \\def\\subtitle{\\parsearg\\subtitlezzz}%$/
3658\subtitlezzz tex-src/texinfo.tex /^ \\def\\subtitlezzz##1{{\\subtitlefont \\rightline{#/
3659subtle ruby-src/test1.ru /^ :tee ; attr_reader :subtle$/
3660subtree prol-src/natded.prolog /^subtree(T,T).$/
3661suffix c-src/etags.c 186
3662suffixes c-src/etags.c 195
3663suggest_asking_for_help c-src/etags.c /^suggest_asking_for_help (void)$/
3664\summarycontents tex-src/texinfo.tex /^\\outer\\def\\summarycontents{%$/
3665\supereject tex-src/texinfo.tex /^\\def\\supereject{\\par\\penalty -20000\\footnoteno =0 /
3666suspend-emacs c-src/emacs/src/keyboard.c /^DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_e/
3667sval y-src/cccp.y 116
3668swallow_events c-src/emacs/src/keyboard.c /^swallow_events (bool do_display)$/
3669switch_line_buffers c-src/etags.c /^#define switch_line_buffers() (curndx = 1 - curndx/
3670sxhash_combine c-src/emacs/src/lisp.h /^sxhash_combine (EMACS_UINT x, EMACS_UINT y)$/
3671SXHASH_REDUCE c-src/emacs/src/lisp.h /^SXHASH_REDUCE (EMACS_UINT x)$/
3672SYMBOL_BLV c-src/emacs/src/lisp.h /^SYMBOL_BLV (struct Lisp_Symbol *sym)$/
3673SYMBOL_CONSTANT_P c-src/emacs/src/lisp.h /^# define SYMBOL_CONSTANT_P(sym) lisp_h_SYMBOL_CONS/
3674symbol c-src/emacs/src/lisp.h 2980
3675SYMBOL_FORWARDED c-src/emacs/src/lisp.h 651
3676SYMBOL_FWD c-src/emacs/src/lisp.h /^SYMBOL_FWD (struct Lisp_Symbol *sym)$/
3677SYMBOL_INDEX c-src/emacs/src/lisp.h /^#define SYMBOL_INDEX(sym) i##sym$/
3678symbol_interned c-src/emacs/src/lisp.h 639
3679SYMBOL_INTERNED c-src/emacs/src/lisp.h 642
3680SYMBOL_INTERNED_IN_INITIAL_OBARRAY c-src/emacs/src/lisp.h 643
3681SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P c-src/emacs/src/lisp.h /^SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P (Lisp_Object /
3682SYMBOL_INTERNED_P c-src/emacs/src/lisp.h /^SYMBOL_INTERNED_P (Lisp_Object sym)$/
3683SYMBOL_LOCALIZED c-src/emacs/src/lisp.h 650
3684symbol_name c-src/emacs/src/lisp.h 1687
3685SYMBOL_NAME c-src/emacs/src/lisp.h /^SYMBOL_NAME (Lisp_Object sym)$/
3686SYMBOLP c-src/emacs/src/lisp.h /^# define SYMBOLP(x) lisp_h_SYMBOLP (x)$/
3687SYMBOL_PLAINVAL c-src/emacs/src/lisp.h 648
3688symbol_redirect c-src/emacs/src/lisp.h 646
3689SYMBOL_UNINTERNED c-src/emacs/src/lisp.h 641
3690SYMBOL_VAL c-src/emacs/src/lisp.h /^# define SYMBOL_VAL(sym) lisp_h_SYMBOL_VAL (sym)$/
3691SYMBOL_VARALIAS c-src/emacs/src/lisp.h 649
3692syms_of_abbrev c-src/abbrev.c /^syms_of_abbrev ()$/
3693syms_of_keyboard c-src/emacs/src/keyboard.c /^syms_of_keyboard (void)$/
3694sym_type c-src/etags.c 2204
3695synchronize_system_messages_locale c-src/emacs/src/lisp.h /^INLINE void synchronize_system_messages_locale (vo/
3696synchronize_system_time_locale c-src/emacs/src/lisp.h /^INLINE void synchronize_system_time_locale (void) /
3697\syncodeindex tex-src/texinfo.tex /^\\def\\syncodeindex #1 #2 {%$/
3698\synindex tex-src/texinfo.tex /^\\def\\synindex #1 #2 {%$/
3699syntax c-src/emacs/src/regex.h 350
3700SYSCALL c-src/machsyscalls.c /^#define SYSCALL(name, number, type, args, typed_ar/
3701syscall_error c-src/sysdep.h 34
3702sys_jmp_buf c-src/emacs/src/lisp.h 2906
3703sys_jmp_buf c-src/emacs/src/lisp.h 2910
3704sys_jmp_buf c-src/emacs/src/lisp.h 2916
3705sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) _longjmp (j, v)$/
3706sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) longjmp (j, v)$/
3707sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) siglongjmp (j, v)$/
3708sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) _setjmp (j)$/
3709sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) setjmp (j)$/
3710sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) sigsetjmp (j, 0)$/
3711System.Task_Primitives/b ada-src/2ataspri.adb /^package body System.Task_Primitives is$/
3712System.Task_Primitives/s ada-src/2ataspri.ads /^package System.Task_Primitives is$/
3713t1 cp-src/c.C 34
3714t2 cp-src/c.C 38
3715T2 cp-src/fail.C 16
3716T3 c.c 163
3717tab_count_words c-src/tab.c /^int tab_count_words(char **tab)$/
3718tab_delete_first c-src/tab.c /^int tab_delete_first(char **tab)$/
3719tab_fill c-src/tab.c /^char **tab_fill(char *str, char delim)$/
3720tab_free c-src/tab.c /^void tab_free(char **tab)$/
3721\table tex-src/texinfo.tex /^\\def\\table{\\begingroup\\inENV\\obeylines\\obeyspaces\\/
3722\tablez tex-src/texinfo.tex /^\\def\\tablez #1#2#3#4#5#6{%$/
3723tag1 c-src/dostorture.c /^(*tag1 (sig, handler)) ()$/
3724tag1 c-src/h.h 110
3725tag1 c-src/torture.c /^(*tag1 (sig, handler)) ()$/
3726tag2 c-src/dostorture.c /^(*tag2 (sig, handler)) ()$/
3727tag2 c-src/torture.c /^(*tag2 (sig, handler)) ()$/
3728tag3 c-src/dostorture.c /^(*tag3 (int sig, void (*handler) (int))) (int)$/
3729tag3 c-src/torture.c /^(*tag3 (int sig, void (*handler) (int))) (int)$/
3730tag4 c-src/dostorture.c /^(*tag4 (int sig, void (*handler) (int))) (int)$/
3731tag4 c-src/torture.c /^(*tag4 (int sig, void (*handler) (int))) (int)$/
3732tag5 c-src/dostorture.c /^tag5 (handler, arg)$/
3733tag5 c-src/torture.c /^tag5 (handler, arg)$/
3734tag6 c-src/dostorture.c /^tag6 (void (*handler) (void *), void *arg)$/
3735tag6 c-src/torture.c /^tag6 (void (*handler) (void *), void *arg)$/
3736tag-any-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-any-match-p (_tag)$/
3737tag-exact-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-exact-file-name-match-p (tag)$/
3738tag-exact-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-exact-match-p (tag)$/
3739tag-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-file-name-match-p (tag)$/
3740tag-find-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun tag-find-file-of-tag (file) ; Doc string?$/
3741tag-find-file-of-tag-noselect el-src/emacs/lisp/progmodes/etags.el /^(defun tag-find-file-of-tag-noselect (file)$/
3742taggedfname c-src/etags.c 207
3743tag-implicit-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-implicit-name-match-p (tag)$/
3744tag-lines-already-matched el-src/emacs/lisp/progmodes/etags.el /^(defvar tag-lines-already-matched nil$/
3745tag_or_ch c-src/emacs/src/lisp.h 3026
3746tag-partial-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-partial-file-name-match-p (_tag)$/
3747TAG_PTR c-src/emacs/src/lisp.h /^#define TAG_PTR(tag, ptr) \\$/
3748tag-re-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-re-match-p (re)$/
3749tags-add-tables el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-add-tables 'ask-user$/
3750tags-apropos-additional-actions el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-additional-actions nil$/
3751tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun tags-apropos (regexp)$/
3752tags-apropos-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-apropos-function nil$/
3753tags-apropos-verbose el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-verbose nil$/
3754tags-case-fold-search el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-case-fold-search 'default$/
3755tags-complete-tags-table-file el-src/emacs/lisp/progmodes/etags.el /^(defun tags-complete-tags-table-file (string predi/
3756tags-completion-at-point-function el-src/emacs/lisp/progmodes/etags.el /^(defun tags-completion-at-point-function ()$/
3757tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-completion-table ()$/
3758tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-completion-table nil$/
3759tags-completion-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-completion-table-function nil$/
3760tags-compression-info-list el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-compression-info-list$/
3761tags-expand-table-name el-src/emacs/lisp/progmodes/etags.el /^(defun tags-expand-table-name (file)$/
3762tags-file-name el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-file-name nil$/
3763tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defun tags-included-tables ()$/
3764tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-included-tables nil$/
3765tags-included-tables-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-included-tables-function nil$/
3766tags-lazy-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-lazy-completion-table ()$/
3767tags-location-ring el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-location-ring (make-ring xref-marker-/
3768tags-loop-continue el-src/emacs/lisp/progmodes/etags.el /^(defun tags-loop-continue (&optional first-time)$/
3769tags-loop-eval el-src/emacs/lisp/progmodes/etags.el /^(defun tags-loop-eval (form)$/
3770tags-loop-operate el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-loop-operate nil$/
3771tags-loop-revert-buffers el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-loop-revert-buffers nil$/
3772tags-loop-scan el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-loop-scan$/
3773TAGS make-src/Makefile /^TAGS: etags.c$/
3774tags make-src/Makefile /^tags: TAGS$/
3775tags-next-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-next-table ()$/
3776tags-query-replace el-src/emacs/lisp/progmodes/etags.el /^(defun tags-query-replace (from to &optional delim/
3777tags-recognize-empty-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-recognize-empty-tags-table ()$/
3778tags-reset-tags-tables el-src/emacs/lisp/progmodes/etags.el /^(defun tags-reset-tags-tables ()$/
3779tags-revert-without-query el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-revert-without-query nil$/
3780tags-search el-src/emacs/lisp/progmodes/etags.el /^(defun tags-search (regexp &optional file-list-for/
3781tags-select-tags-table el-src/emacs/lisp/progmodes/etags.el /^(define-button-type 'tags-select-tags-table$/
3782tags-table-check-computed-list el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-check-computed-list ()$/
3783tags-table-computed-list el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-computed-list nil$/
3784tags-table-computed-list-for el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-computed-list-for nil$/
3785tags-table-extend-computed-list el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-extend-computed-list ()$/
3786tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-files ()$/
3787tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-files nil$/
3788tags-table-files-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-files-function nil$/
3789tags-table-format-functions el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-format-functions '(etags-recogn/
3790tags-table-including el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-including (this-file core-only)$/
3791tags-table-list el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-table-list nil$/
3792tags-table-list-member el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-list-member (file list)$/
3793tags-table-list-pointer el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-list-pointer nil$/
3794tags-table-list-started-at el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-list-started-at nil$/
3795tags-table-mode el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-mode ()$/
3796tags-table-set-list el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-set-list nil$/
3797tags-tag-face el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-tag-face 'default$/
3798tags-verify-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-verify-table (file)$/
3799tags-with-face el-src/emacs/lisp/progmodes/etags.el /^(defmacro tags-with-face (face &rest body)$/
3800tag-symbol-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-symbol-match-p (tag)$/
3801TAG_SYMOFFSET c-src/emacs/src/lisp.h /^#define TAG_SYMOFFSET(offset) \\$/
3802tag-word-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-word-match-p (tag)$/
3803Tapes tex-src/gzip.texi /^@node Tapes, Problems, Environment, Top$/
3804target_multibyte c-src/emacs/src/regex.h 407
3805TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is$/
3806TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is private;$/
3807Task_Control_Block/t ada-src/2ataspri.ads /^ type Task_Control_Block is record$/
3808Task_Storage_Size/t ada-src/2ataspri.ads /^ type Task_Storage_Size is new Interfaces.C.size/
3809Task_Type/b ada-src/etags-test-for.ada /^ task body Task_Type is$/
3810Task_Type/b ada-src/waroquiers.ada /^ task body Task_Type is$/
3811Task_Type/k ada-src/etags-test-for.ada /^ task type Task_Type is$/
3812Task_Type/k ada-src/waroquiers.ada /^ task type Task_Type is$/
3813TCB_Ptr/t ada-src/2ataspri.ads /^ type TCB_Ptr is access all Task_Control_Block;$/
3814TCLFLAGS make-src/Makefile /^TCLFLAGS=--lang=none --regex='\/proc[ \\t]+\\([^ \\t]+/
3815\tclose tex-src/texinfo.tex /^\\def\\tclose##1{\\realbackslash tclose {##1}}%$/
3816\tclose tex-src/texinfo.tex /^\\def\\tclose##1{\\realbackslash tclose {##1}}$/
3817\tclose tex-src/texinfo.tex /^\\def\\tclose#1{{\\rm \\tcloserm=\\fontdimen2\\font \\tt /
3818tcpdump html-src/software.html /^tcpdump$/
3819t cp-src/c.C 52
3820T cp-src/fail.C 14
3821teats cp-src/c.C 127
3822tee ruby-src/test1.ru /^ attr_accessor :tee$/
3823tee= ruby-src/test1.ru /^ attr_accessor :tee$/
3824temporarily_switch_to_single_kboard c-src/emacs/src/keyboard.c /^temporarily_switch_to_single_kboard (struct frame /
3825tend c-src/etags.c 2432
3826TERMINALP c-src/emacs/src/lisp.h /^TERMINALP (Lisp_Object a)$/
3827terminateInput objc-src/Subprocess.m /^- terminateInput$/
3828terminate objc-src/Subprocess.m /^- terminate:sender$/
3829term merc-src/accumulator.m /^:- import_module term.$/
3830test1 rs-src/test.rs /^fn test1() {$/
3831Test_Abort/p ada-src/2ataspri.adb /^ procedure Test_Abort is$/
3832Test_Abort/p ada-src/2ataspri.ads /^ procedure Test_Abort;$/
3833Test_And_Set/p ada-src/2ataspri.adb /^ procedure Test_And_Set (Cell : in out TAS_Cell;/
3834Test_And_Set/p ada-src/2ataspri.ads /^ procedure Test_And_Set (Cell : in out TAS_Cell;/
3835test-begin scm-src/test.scm /^(define-syntax test-begin$/
3836test cp-src/c.C 86
3837test c-src/emacs/src/lisp.h 1871
3838test erl-src/gs_dialog.erl /^test() ->$/
3839test go-src/test1.go /^func test(p plus) {$/
3840test make-src/Makefile /^test:$/
3841test.me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/
3842test.me22b lua-src/test.lua /^ local function test.me22b (one)$/
3843TEST php-src/ptest.php 1
3844test php-src/ptest.php /^test $/
3845test_undefined c-src/emacs/src/keyboard.c /^test_undefined (Lisp_Object binding)$/
3846TEX_clgrp c-src/etags.c 4922
3847TeX_commands c-src/etags.c /^TeX_commands (FILE *inf)$/
3848TEX_decode_env c-src/etags.c /^TEX_decode_env (const char *evarname, const char */
3849TEX_defenv c-src/etags.c 4912
3850TEX_esc c-src/etags.c 4920
3851TeX_help c-src/etags.c 674
3852Texinfo_help c-src/etags.c 688
3853Texinfo_nodes c-src/etags.c /^Texinfo_nodes (FILE *inf)$/
3854Texinfo_suffixes c-src/etags.c 686
3855\texinfoversion tex-src/texinfo.tex /^\\def\\texinfoversion{2.73}$/
3856TEX_LESC c-src/etags.c 4986
3857TEX_mode c-src/etags.c /^TEX_mode (FILE *inf)$/
3858TEX_opgrp c-src/etags.c 4921
3859TEX_SESC c-src/etags.c 4987
3860TEXSRC make-src/Makefile /^TEXSRC=testenv.tex gzip.texi texinfo.tex nonewline/
3861\' tex-src/texinfo.tex /^\\def\\'{{'}}$/
3862\@ tex-src/texinfo.tex /^\\def\\@{@}%$/
3863\` tex-src/texinfo.tex /^\\def\\`{{`}}$/
3864\ tex-src/texinfo.tex /^\\def\\ {{\\fontdimen2\\font=\\tclosesave{} }}%$/
3865\* tex-src/texinfo.tex /^\\def\\*{\\hfil\\break\\hbox{}\\ignorespaces}$/
3866_ tex-src/texinfo.tex /^\\def_{\\ifusingtt\\normalunderscore\\_}$/
3867\_ tex-src/texinfo.tex /^\\def\\_{\\lvvmode \\kern.06em \\vbox{\\hrule width.3em /
3868\_ tex-src/texinfo.tex /^\\def\\_{{\\realbackslash _}}%$/
3869\: tex-src/texinfo.tex /^\\def\\:{\\spacefactor=1000 }$/
3870\. tex-src/texinfo.tex /^\\def\\.{.\\spacefactor=3000 }$/
3871\@ tex-src/texinfo.tex /^\\def\\@{{\\tt \\char '100}}$/
3872| tex-src/texinfo.tex /^\\def|{{\\tt \\char '174}}$/
3873~ tex-src/texinfo.tex /^\\def~{{\\tt \\char '176}}$/
3874+ tex-src/texinfo.tex /^\\def+{{\\tt \\char 43}}$/
3875> tex-src/texinfo.tex /^\\def>{{\\tt \\gtr}}$/
3876^ tex-src/texinfo.tex /^\\def^{{\\tt \\hat}}$/
3877< tex-src/texinfo.tex /^\\def<{{\\tt \\less}}$/
3878\ tex-src/texinfo.tex /^\\gdef\\sepspaces{\\def {\\ }}}$/
3879= tex-src/texinfo.tex /^\\global\\def={{\\tt \\char 61}}}$/
3880= tex-src/texinfo.tex /^\\global\\let\\section = \\appendixsec$/
3881= tex-src/texinfo.tex /^\\global\\let\\section = \\numberedsec$/
3882= tex-src/texinfo.tex /^\\global\\let\\section = \\unnumberedsec$/
3883= tex-src/texinfo.tex /^\\global\\let\\subsection = \\appendixsubsec$/
3884= tex-src/texinfo.tex /^\\global\\let\\subsection = \\numberedsubsec$/
3885= tex-src/texinfo.tex /^\\global\\let\\subsection = \\unnumberedsubsec$/
3886= tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\appendixsubsubsec$/
3887= tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\numberedsubsubsec$/
3888= tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\unnumberedsubsubsec$/
3889TeX_suffixes c-src/etags.c 672
3890\tex tex-src/texinfo.tex /^\\def\\tex{\\begingroup$/
3891\TeX tex-src/texinfo.tex /^\\def\\TeX{\\realbackslash TeX}%$/
3892\TeX tex-src/texinfo.tex /^\\def\\TeX{\\realbackslash TeX}$/
3893\textfonts tex-src/texinfo.tex /^\\def\\textfonts{%$/
3894TEX_toktab c-src/etags.c 4908
3895texttreelist prol-src/natded.prolog /^texttreelist([]).$/
3896/TF ps-src/rfc1245.ps /^\/TF { $/
3897\thearg tex-src/texinfo.tex /^ \\def\\thearg{#1}%$/
3898\thearg tex-src/texinfo.tex /^ \\ifx\\thearg\\empty \\def\\thearg{1}\\fi$/
3899there-is-a-=-in-the-middle! scm-src/test.scm /^(define (there-is-a-=-in-the-middle!) #t)$/
3900\thischaptername tex-src/texinfo.tex /^\\def\\thischaptername{No Chapter Title}$/
3901\thischapter tex-src/texinfo.tex /^\\def\\thischapter{} \\def\\thissection{}$/
3902\thischapter tex-src/texinfo.tex /^ \\unnumbchapmacro{#1}\\def\\thischapter{}%$/
3903this_command_key_count c-src/emacs/src/keyboard.c 108
3904this_command_key_count_reset c-src/emacs/src/keyboard.c 112
3905this_command_keys c-src/emacs/src/keyboard.c 107
3906this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/
3907this-command-keys-vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/
3908this c-src/a/b/b.c 1
3909\thisfile tex-src/texinfo.tex /^\\def\\thisfile{}$/
3910this_file_toc perl-src/htlmify-cystic 29
3911this-single-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/
3912this_single_command_key_start c-src/emacs/src/keyboard.c 125
3913this-single-command-raw-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-raw-keys", Fthis_singl/
3914\thistitle tex-src/texinfo.tex /^\\def\\thistitle{No Title}$/
3915\tie tex-src/texinfo.tex /^\\def\\tie{\\penalty 10000\\ } % Save plain tex de/
3916tignore c-src/etags.c 2433
3917timer_check_2 c-src/emacs/src/keyboard.c /^timer_check_2 (Lisp_Object timers, Lisp_Object idl/
3918timer_check c-src/emacs/src/keyboard.c /^timer_check (void)$/
3919timer_idleness_start_time c-src/emacs/src/keyboard.c 335
3920timer_last_idleness_start_time c-src/emacs/src/keyboard.c 340
3921timer_resume_idle c-src/emacs/src/keyboard.c /^timer_resume_idle (void)$/
3922timers_run c-src/emacs/src/keyboard.c 320
3923timer_start_idle c-src/emacs/src/keyboard.c /^timer_start_idle (void)$/
3924timer_stop_idle c-src/emacs/src/keyboard.c /^timer_stop_idle (void)$/
3925Time_to_position c-src/emacs/src/keyboard.c /^Time_to_position (Time encoded_pos)$/
3926tinbody c-src/etags.c 2431
3927\tindex tex-src/texinfo.tex /^\\def\\tindex {\\tpindex}$/
3928\titlefont tex-src/texinfo.tex /^\\def\\titlefont#1{{\\titlerm #1}}$/
3929\titlepage tex-src/texinfo.tex /^\\def\\titlepage{\\begingroup \\parindent=0pt \\textfon/
3930\title tex-src/texinfo.tex /^ \\def\\title{\\parsearg\\titlezzz}%$/
3931\titlezzz tex-src/texinfo.tex /^ \\def\\titlezzz##1{\\leftline{\\titlefont{##1}}$/
3932tkeyseen c-src/etags.c 2429
3933tnone c-src/etags.c 2428
3934toc_line perl-src/htlmify-cystic /^sub toc_line ($)$/
3935\today tex-src/texinfo.tex /^\\def\\today{\\number\\day\\space$/
3936toggleDescription objc-src/PackInsp.m /^-toggleDescription$/
3937tok c-src/etags.c 2491
3938token c-src/etags.c 2508
3939tokenizeatom prol-src/natded.prolog /^tokenizeatom(Atom,Ws):-$/
3940tokenize prol-src/natded.prolog /^tokenize([C1,C2,C3|Cs],Xs-Ys,TsResult):- % spe/
3941tokentab2 y-src/cccp.y 442
3942token y-src/cccp.y 437
3943token y-src/cccp.y 439
3944To_Lower pas-src/common.pas /^function To_Lower;(*(ch:char) : char;*)$/
3945tool_bar_item_properties c-src/emacs/src/keyboard.c 7970
3946tool_bar_items c-src/emacs/src/keyboard.c /^tool_bar_items (Lisp_Object reuse, int *nitems)$/
3947tool_bar_items_vector c-src/emacs/src/keyboard.c 7965
3948toolkit_menubar_in_use c-src/emacs/src/keyboard.c /^toolkit_menubar_in_use (struct frame *f)$/
3949top_level_1 c-src/emacs/src/keyboard.c /^top_level_1 (Lisp_Object ignore)$/
3950top_level_2 c-src/emacs/src/keyboard.c /^top_level_2 (void)$/
3951top-level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, /
3952top_level merc-src/accumulator.m /^:- type top_level$/
3953Top tex-src/gzip.texi /^@node Top, , , (dir)$/
3954\top tex-src/texinfo.tex /^\\outer\\def\\top{\\parsearg\\unnumberedzzz}$/
3955To_Start_Addr/f ada-src/2ataspri.adb /^ function To_Start_Addr is new$/
3956total_keys c-src/emacs/src/keyboard.c 97
3957TOTAL_KEYWORDS c-src/etags.c 2325
3958totally_unblock_input c-src/emacs/src/keyboard.c /^totally_unblock_input (void)$/
3959total_size_of_entries c-src/etags.c /^total_size_of_entries (register node *np)$/
3960total_surrounding cp-src/conway.cpp /^int site::total_surrounding(void)$/
3961To_TCB_Ptr/f ada-src/2ataspri.adb /^ function To_TCB_Ptr is new$/
3962To_Upper pas-src/common.pas /^function To_Upper;(*(ch:char) : char;*)$/
3963To_void_ptr/f ada-src/2ataspri.adb /^ function To_void_ptr is new$/
3964tpcmd c-src/h.h 15
3965tpcmd c-src/h.h 8
3966/T ps-src/rfc1245.ps /^\/T { $/
3967tracking_off c-src/emacs/src/keyboard.c /^tracking_off (Lisp_Object old_value)$/
3968track-mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/
3969traffic_light cp-src/conway.cpp /^void traffic_light(int x, int y)$/
3970translate c-src/emacs/src/regex.h 361
3971treats cp-src/c.C 131
3972Truc.Bidule/b ada-src/etags-test-for.ada /^package body Truc.Bidule is$/
3973Truc.Bidule/b ada-src/waroquiers.ada /^package body Truc.Bidule is$/
3974Truc.Bidule/s ada-src/etags-test-for.ada /^package Truc.Bidule is$/
3975Truc.Bidule/s ada-src/waroquiers.ada /^package Truc.Bidule is$/
3976Truc/s ada-src/etags-test-for.ada /^package Truc is$/
3977Truc/s ada-src/waroquiers.ada /^package Truc is$/
3978TSL/s ada-src/2ataspri.adb /^ package TSL renames System.Tasking_Soft_Links;$/
3979tt=cmtt10 tex-src/texinfo.tex /^\\font\\deftt=cmtt10 scaled \\magstep1$/
3980\t tex-src/texinfo.tex /^\\def\\t##1{\\realbackslash r {##1}}%$/
3981\t tex-src/texinfo.tex /^\\def\\t#1{{\\tt \\exhyphenpenalty=10000\\rawbackslash /
3982tt prol-src/natded.prolog /^tt:-$/
3983\tt tex-src/texinfo.tex /^\\def\\tt{\\realbackslash tt}%$/
3984\tt tex-src/texinfo.tex /^\\def\\tt{\\realbackslash tt}$/
3985ttypeseen c-src/etags.c 2430
3986tty_read_avail_input c-src/emacs/src/keyboard.c /^tty_read_avail_input (struct terminal *terminal,$/
3987\turnoffactive tex-src/texinfo.tex /^\\def\\turnoffactive{\\let"=\\normaldoublequote$/
3988/two ps-src/rfc1245.ps /^\/two \/three \/four \/five \/six \/seven \/eight \/nine \//
3989typdef c-src/etags.c 2434
3990type c-src/emacs/src/gmalloc.c 145
3991type c-src/emacs/src/lisp.h 1973
3992type c-src/emacs/src/lisp.h 1980
3993type c-src/emacs/src/lisp.h 2034
3994type c-src/emacs/src/lisp.h 2112
3995type c-src/emacs/src/lisp.h 2203
3996type c-src/emacs/src/lisp.h 2276
3997type c-src/emacs/src/lisp.h 2286
3998type c-src/emacs/src/lisp.h 2296
3999type c-src/emacs/src/lisp.h 2304
4000type c-src/emacs/src/lisp.h 2364
4001type c-src/emacs/src/lisp.h 3025
4002type c-src/etags.c 2271
4003typefunargs tex-src/texinfo.tex /^\\deftypefunargs {#3}\\endgroup %$/
4004typefunargs tex-src/texinfo.tex /^\\deftypefunargs {#4}\\endgroup %$/
4005typemargin tex-src/texinfo.tex /^\\newskip\\deftypemargin \\deftypemargin=12pt$/
4006typemargin tex-src/texinfo.tex /^\\rlap{\\rightline{{\\rm #2}\\hskip \\deftypemargin}}}%/
4007TYPE_RANGED_INTEGERP c-src/emacs/src/lisp.h /^#define TYPE_RANGED_INTEGERP(type, x) \\$/
4008Type_Specific_Data/t ada-src/etags-test-for.ada /^ type Type_Specific_Data is record$/
4009TYPESTOSTAT objc-src/PackInsp.h 37
4010/Uacute ps-src/rfc1245.ps /^\/Uacute \/Ucircumflex \/Ugrave \/dotlessi \/circumflex/
4011u_any c-src/emacs/src/lisp.h 2214
4012u_boolfwd c-src/emacs/src/lisp.h 2371
4013u_buffer_objfwd c-src/emacs/src/lisp.h 2373
4014UCHAR c-src/emacs/src/lisp.h 2424
4015_UCHAR_T c-src/emacs/src/lisp.h 2423
4016U_CHAR y-src/cccp.y 38
4017u c-src/emacs/src/lisp.h 2397
4018/udieresis ps-src/rfc1245.ps /^\/udieresis \/dagger \/.notdef \/cent \/sterling \/secti/
4019u_finalizer c-src/emacs/src/lisp.h 2219
4020u_free c-src/emacs/src/lisp.h 2215
4021u_intfwd c-src/emacs/src/lisp.h 2370
4022u_kboard_objfwd c-src/emacs/src/lisp.h 2374
4023u_marker c-src/emacs/src/lisp.h 2216
4024unargs tex-src/texinfo.tex /^\\defunargs {#2}\\endgroup %$/
4025unargs tex-src/texinfo.tex /^\\defunargs {#3}\\endgroup %$/
4026UNARY y-src/cccp.c 18
4027unblock_input c-src/emacs/src/keyboard.c /^unblock_input (void)$/
4028unblock_input_to c-src/emacs/src/keyboard.c /^unblock_input_to (int level)$/
4029unchar c-src/h.h 99
4030UNDEFINED c-src/h.h 118
4031UNEVALLED c-src/emacs/src/lisp.h 2834
4032unexpand-abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/
4033UNGCPRO c-src/emacs/src/lisp.h 3202
4034UNGCPRO c-src/emacs/src/lisp.h 3257
4035UNGCPRO c-src/emacs/src/lisp.h 3353
4036univ merc-src/accumulator.m /^:- import_module univ.$/
4037UNLOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define UNLOCK_ALIGNED_BLOCKS() \\$/
4038UNLOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define UNLOCK_ALIGNED_BLOCKS()$/
4039UNLOCK c-src/emacs/src/gmalloc.c /^#define UNLOCK() \\$/
4040UNLOCK c-src/emacs/src/gmalloc.c /^#define UNLOCK()$/
4041Unlock/p ada-src/2ataspri.adb /^ procedure Unlock (L : in out Lock) is$/
4042Unlock/p ada-src/2ataspri.ads /^ procedure Unlock (L : in out Lock);$/
4043\unnchfopen tex-src/texinfo.tex /^\\def\\unnchfopen #1{%$/
4044\unnchfplain tex-src/texinfo.tex /^\\def\\unnchfplain #1{%$/
4045\unnumbchapentry tex-src/texinfo.tex /^\\def\\unnumbchapentry#1#2{\\dochapentry{#1}{#2}}$/
4046\unnumberedsec tex-src/texinfo.tex /^\\outer\\def\\unnumberedsec{\\parsearg\\unnumberedseczz/
4047\unnumberedseczzz tex-src/texinfo.tex /^\\def\\unnumberedseczzz #1{\\seccheck{unnumberedsec}%/
4048\unnumberedsubsec tex-src/texinfo.tex /^\\outer\\def\\unnumberedsubsec{\\parsearg\\unnumberedsu/
4049\unnumberedsubseczzz tex-src/texinfo.tex /^\\def\\unnumberedsubseczzz #1{\\seccheck{unnumberedsu/
4050\unnumberedsubsubsec tex-src/texinfo.tex /^\\outer\\def\\unnumberedsubsubsec{\\parsearg\\unnumbere/
4051\unnumberedsubsubseczzz tex-src/texinfo.tex /^\\def\\unnumberedsubsubseczzz #1{\\seccheck{unnumbere/
4052\unnumbered tex-src/texinfo.tex /^\\outer\\def\\unnumbered{\\parsearg\\unnumberedzzz}$/
4053\unnumberedzzz tex-src/texinfo.tex /^\\def\\unnumberedzzz #1{\\seccheck{unnumbered}%$/
4054\unnumbnoderef tex-src/texinfo.tex /^\\def\\unnumbnoderef{\\ifx\\lastnode\\relax\\else$/
4055\unnumbsecentry tex-src/texinfo.tex /^ \\def\\unnumbsecentry ##1##2{}$/
4056\unnumbsecentry tex-src/texinfo.tex /^\\def\\unnumbsecentry#1#2{\\dosecentry{#1}{#2}}$/
4057\unnumbsetref tex-src/texinfo.tex /^\\def\\unnumbsetref#1{%$/
4058\unnumbsubsecentry tex-src/texinfo.tex /^ \\def\\unnumbsubsecentry ##1##2{}$/
4059\unnumbsubsecentry tex-src/texinfo.tex /^\\def\\unnumbsubsecentry#1#2{\\dosubsecentry{#1}{#2}}/
4060\unnumbsubsubsecentry tex-src/texinfo.tex /^ \\def\\unnumbsubsubsecentry ##1##2{}$/
4061\unnumbsubsubsecentry tex-src/texinfo.tex /^\\def\\unnumbsubsubsecentry#1#2{\\dosubsubsecentry{#1/
4062unravel_univ merc-src/accumulator.m /^:- some [T] pred unravel_univ(univ::in, T::out) is/
4063unread_switch_frame c-src/emacs/src/keyboard.c 204
4064UNSIGNED_CMP c-src/emacs/src/lisp.h /^#define UNSIGNED_CMP(a, op, b) \\$/
4065unsignedp y-src/cccp.y 112
4066unwind c-src/emacs/src/lisp.h 2962
4067unwind_int c-src/emacs/src/lisp.h 2972
4068unwind_ptr c-src/emacs/src/lisp.h 2967
4069unwind_void c-src/emacs/src/lisp.h 2976
4070u_objfwd c-src/emacs/src/lisp.h 2372
4071u_overlay c-src/emacs/src/lisp.h 2217
4072__up c.c 160
4073update_accumulator_pred merc-src/accumulator.m /^:- pred update_accumulator_pred(pred_id::in, proc_/
4074\uppercaseenumerate tex-src/texinfo.tex /^\\def\\uppercaseenumerate{%$/
4075uprintmax_t c-src/emacs/src/lisp.h 149
4076uprintmax_t c-src/emacs/src/lisp.h 154
4077/U ps-src/rfc1245.ps /^\/U { $/
4078usage perl-src/yagrip.pl /^sub usage {$/
4079u_save_value c-src/emacs/src/lisp.h 2218
4080usecharno c-src/etags.c 210
4081used c-src/emacs/src/regex.h 347
4082used_syntax c-src/emacs/src/regex.h 398
4083USE_LSB_TAG c-src/emacs/src/lisp.h 271
4084USE_LSB_TAG c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (bool, USE_LSB_TAG)$/
4085USE_PTHREAD c-src/emacs/src/gmalloc.c 25
4086user_cmp_function c-src/emacs/src/lisp.h 1814
4087UserEdit pyt-src/server.py /^class UserEdit(Frame):$/
4088user_error c-src/emacs/src/keyboard.c /^user_error (const char *msg)$/
4089user_hash_function c-src/emacs/src/lisp.h 1811
4090User pyt-src/server.py /^class User:$/
4091user_signal_info c-src/emacs/src/keyboard.c 7235
4092user_signals c-src/emacs/src/keyboard.c 7250
4093USE_SAFE_ALLOCA c-src/emacs/src/lisp.h 4560
4094USE_STACK_CONS c-src/emacs/src/lisp.h 4689
4095USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4652
4096USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4658
4097USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4659
4098USE_STACK_STRING c-src/emacs/src/lisp.h 4691
4099usfreelock_ptr/t ada-src/etags-test-for.ada /^ type usfreelock_ptr is access$/
4100Vabbrev_start_location_buffer c-src/abbrev.c 66
4101Vabbrev_start_location c-src/abbrev.c 63
4102Vabbrev_table_name_list c-src/abbrev.c 43
4103VALBITS c-src/emacs/src/lisp.h 246
4104valcell c-src/emacs/src/lisp.h 2357
4105val c-src/emacs/src/lisp.h 3027
4106val c-src/emacs/src/lisp.h 691
4107val c-src/getopt.h 84
4108validate php-src/lce_functions.php /^ function validate($value)$/
4109valid c-src/etags.c 220
4110valid c-src/etags.c 2502
4111valloc c-src/emacs/src/gmalloc.c /^valloc (size_t size)$/
4112VALMASK c-src/emacs/src/lisp.h 829
4113VALMASK c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (EMACS_INT, VALMASK)$/
4114VAL_MAX c-src/emacs/src/lisp.h 263
4115val prol-src/natded.prolog /^val(X) --> ['['], valseq(X), [']'].$/
4116valseq prol-src/natded.prolog /^valseq([Val|Vals]) --> val(Val), plusvalseq(Vals)./
4117ValToNmStr pas-src/common.pas /^function ValToNmStr; (*($/
4118value c-src/emacs/src/lisp.h 687
4119value y-src/cccp.y 112
4120varargs tex-src/texinfo.tex /^\\defvarargs {#2}\\endgroup %$/
4121varargs tex-src/texinfo.tex /^\\defvarargs {#3}\\endgroup %$/
4122var c-src/emacs/src/keyboard.c 11023
4123var c-src/emacs/src/lisp.h 3137
4124varset merc-src/accumulator.m /^:- import_module varset.$/
4125\var tex-src/texinfo.tex /^\\def\\var##1{\\realbackslash var {##1}}%$/
4126\var tex-src/texinfo.tex /^\\def\\var##1{\\realbackslash var {##1}}$/
4127vcopy c-src/emacs/src/lisp.h /^vcopy (Lisp_Object v, ptrdiff_t offset, Lisp_Objec/
4128VECSIZE c-src/emacs/src/lisp.h /^#define VECSIZE(type) \\$/
4129vectorlike_header c-src/emacs/src/lisp.h 1343
4130VECTORLIKEP c-src/emacs/src/lisp.h /^# define VECTORLIKEP(x) lisp_h_VECTORLIKEP (x)$/
4131VECTORP c-src/emacs/src/lisp.h /^VECTORP (Lisp_Object x)$/
4132verde cp-src/c.C 40
4133verify_ascii c-src/emacs/src/lisp.h /^# define verify_ascii(str) (str)$/
4134verify-tags-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar verify-tags-table-function nil$/
4135VERSION c-src/etags.c 789
4136VERSION erl-src/gs_dialog.erl /^-define(VERSION, '2001.1101').$/
4137VERSION objc-src/PackInsp.m 34
4138Vfundamental_mode_abbrev_table c-src/abbrev.c 52
4139Vglobal_abbrev_table c-src/abbrev.c 48
4140VHDLFLAGS make-src/Makefile /^VHDLFLAGS=--language=none --regex='\/[ \\t]*\\(ARCHIT/
4141vignore c-src/etags.c 2417
4142\vindex tex-src/texinfo.tex /^\\def\\vindex {\\vrindex}$/
4143visit-tags-table-buffer el-src/emacs/lisp/progmodes/etags.el /^(defun visit-tags-table-buffer (&optional cont)$/
4144visit-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun visit-tags-table (file &optional local)$/
4145Vlast_abbrev c-src/abbrev.c 70
4146Vlast_abbrev_text c-src/abbrev.c 75
4147Vlispy_mouse_stem c-src/emacs/src/keyboard.c 5172
4148void c-src/emacs/src/lisp.h /^INLINE void (check_cons_list) (void) { lisp_h_chec/
4149voidfuncptr c-src/emacs/src/lisp.h 2108
4150voidval y-src/cccp.y 115
4151/V ps-src/rfc1245.ps /^\/V { $/
4152\vritemindex tex-src/texinfo.tex /^\\def\\vritemindex #1{\\doind {vr}{\\code{#1}}}%$/
4153\vtable tex-src/texinfo.tex /^\\def\\vtable{\\begingroup\\inENV\\obeylines\\obeyspaces/
4154waiting_for_input c-src/emacs/src/keyboard.c 150
4155WAIT_READING_MAX c-src/emacs/src/lisp.h 4281
4156WAIT_READING_MAX c-src/emacs/src/lisp.h 4283
4157wait_status_ptr_t c.c 161
4158WARNINGS make-src/Makefile /^WARNINGS=-pedantic -Wall -Wpointer-arith -Winline /
4159warning y-src/cccp.y /^warning (msg)$/
4160/wbytes ps-src/rfc1245.ps /^\/wbytes { $/
4161WCHAR_TYPE_SIZE y-src/cccp.y 99
4162weak_alias c-src/emacs/src/gmalloc.c /^weak_alias (free, cfree)$/
4163weak c-src/emacs/src/lisp.h 1830
4164web ftp publish make-src/Makefile /^web ftp publish:$/
4165what c-src/etags.c 252
4166wheel_syms c-src/emacs/src/keyboard.c 4628
4167where cp-src/clheir.hpp 77
4168where c-src/emacs/src/lisp.h 2348
4169where c-src/emacs/src/lisp.h 2980
4170where_in_registry cp-src/clheir.hpp 15
4171WHITE cp-src/screen.hpp 27
4172/wh ps-src/rfc1245.ps /^\/wh { $/
4173WINDOW_CONFIGURATIONP c-src/emacs/src/lisp.h /^WINDOW_CONFIGURATIONP (Lisp_Object a)$/
4174WINDOWP c-src/emacs/src/lisp.h /^WINDOWP (Lisp_Object a)$/
4175WINDOWSNT c-src/etags.c 101
4176WINDOWSNT c-src/etags.c 102
4177windowWillClose objcpp-src/SimpleCalc.M /^- windowWillClose:sender$/
4178wipe_kboard c-src/emacs/src/keyboard.c /^wipe_kboard (KBOARD *kb)$/
4179womboid c-src/h.h 63
4180womboid c-src/h.h 75
4181word_size c-src/emacs/src/lisp.h 1473
4182WorkingDays cp-src/functions.cpp /^int WorkingDays(Date a, Date b){$/
4183WORKING objc-src/PackInsp.m 368
4184/W ps-src/rfc1245.ps /^\/W { $/
4185write1= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/
4186write2= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/
4187write_abbrev c-src/abbrev.c /^write_abbrev (sym, stream)$/
4188writebreaklex prol-src/natded.prolog /^writebreaklex([]).$/
4189writebreak prol-src/natded.prolog /^writebreak([]).$/
4190writecat prol-src/natded.prolog /^writecat(np(ind(sng),nm(_)),np,[],[]):-!.$/
4191write_classname c-src/etags.c /^write_classname (linebuffer *cn, const char *quali/
4192write_lex_cat prol-src/natded.prolog /^write_lex_cat(File):-$/
4193write_lex prol-src/natded.prolog /^write_lex(File):-$/
4194writelist prol-src/natded.prolog /^writelist([der(Ws)|Ws2]):-$/
4195writelistsubs prol-src/natded.prolog /^writelistsubs([],X):-$/
4196Write_Lock/p ada-src/2ataspri.adb /^ procedure Write_Lock (L : in out Lock; Ceiling_/
4197Write_Lock/p ada-src/2ataspri.ads /^ procedure Write_Lock (L : in out Lock; Ceiling_/
4198writenamestring pas-src/common.pas /^procedure writenamestring;(*($/
4199write php-src/lce_functions.php /^ function write()$/
4200write php-src/lce_functions.php /^ function write($save="yes")$/
4201writesubs prol-src/natded.prolog /^writesubs([]).$/
4202writesups prol-src/natded.prolog /^writesups([]).$/
4203write_xyc cp-src/screen.cpp /^void write_xyc(int x, int y, char c)$/
4204written c-src/etags.c 211
4205\w tex-src/texinfo.tex /^\\def\\w#1{\\leavevmode\\hbox{#1}}$/
4206\w tex-src/texinfo.tex /^\\def\\w{\\realbackslash w }%$/
4207\w tex-src/texinfo.tex /^\\def\\w{\\realbackslash w}$/
4208XBOOL_VECTOR c-src/emacs/src/lisp.h /^XBOOL_VECTOR (Lisp_Object a)$/
4209XBUFFER c-src/emacs/src/lisp.h /^XBUFFER (Lisp_Object a)$/
4210XBUFFER_OBJFWD c-src/emacs/src/lisp.h /^XBUFFER_OBJFWD (union Lisp_Fwd *a)$/
4211xcar_addr c-src/emacs/src/lisp.h /^xcar_addr (Lisp_Object c)$/
4212XCAR c-src/emacs/src/lisp.h /^# define XCAR(c) lisp_h_XCAR (c)$/
4213x c.c 153
4214x c.c 179
4215x c.c 188
4216x c.c 189
4217xcdr_addr c-src/emacs/src/lisp.h /^xcdr_addr (Lisp_Object c)$/
4218XCDR c-src/emacs/src/lisp.h /^# define XCDR(c) lisp_h_XCDR (c)$/
4219XCHAR_TABLE c-src/emacs/src/lisp.h /^XCHAR_TABLE (Lisp_Object a)$/
4220XCHG_0 c-src/sysdep.h 47
4221XCHG_1 c-src/sysdep.h 48
4222XCHG_2 c-src/sysdep.h 49
4223XCHG_3 c-src/sysdep.h 50
4224XCHG_4 c-src/sysdep.h 51
4225XCHG_5 c-src/sysdep.h 52
4226XCONS c-src/emacs/src/lisp.h /^# define XCONS(a) lisp_h_XCONS (a)$/
4227x cp-src/c.C 53
4228x cp-src/c.C 80
4229x cp-src/clheir.hpp 49
4230x cp-src/clheir.hpp 58
4231x cp-src/conway.hpp 7
4232x cp-src/fail.C 10
4233x cp-src/fail.C 44
4234X c-src/h.h 100
4235XDEFUN c.c /^XDEFUN ("x-get-selection-internal", Fx_get_selecti/
4236xdiff make-src/Makefile /^xdiff: ETAGS EXTAGS ${infiles}$/
4237XFASTINT c-src/emacs/src/lisp.h /^# define XFASTINT(a) lisp_h_XFASTINT (a)$/
4238XFASTINT c-src/emacs/src/lisp.h /^XFASTINT (Lisp_Object a)$/
4239XFINALIZER c-src/emacs/src/lisp.h /^XFINALIZER (Lisp_Object a)$/
4240XFLOAT c-src/emacs/src/lisp.h /^XFLOAT (Lisp_Object a)$/
4241XFLOAT_DATA c-src/emacs/src/lisp.h /^XFLOAT_DATA (Lisp_Object f)$/
4242XFLOATINT c-src/emacs/src/lisp.h /^XFLOATINT (Lisp_Object n)$/
4243XFWDTYPE c-src/emacs/src/lisp.h /^XFWDTYPE (union Lisp_Fwd *a)$/
4244x-get-selection-internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/
4245x-get-selection-internal c.c /^ Fx_get_selection_internal, Sx_get_selection/
4246XHASH c-src/emacs/src/lisp.h /^# define XHASH(a) lisp_h_XHASH (a)$/
4247XHASH_TABLE c-src/emacs/src/lisp.h /^XHASH_TABLE (Lisp_Object a)$/
4248XIL c-src/emacs/src/lisp.h /^# define XIL(i) lisp_h_XIL (i)$/
4249XINT c-src/emacs/src/lisp.h /^# define XINT(a) lisp_h_XINT (a)$/
4250XINT c-src/emacs/src/lisp.h /^XINT (Lisp_Object a)$/
4251XINTPTR c-src/emacs/src/lisp.h /^XINTPTR (Lisp_Object a)$/
4252\xitem tex-src/texinfo.tex /^\\def\\xitem{\\errmessage{@xitem while not in a table/
4253\xitemx tex-src/texinfo.tex /^\\def\\xitemx{\\errmessage{@xitemx while not in a tab/
4254\xitemzzz tex-src/texinfo.tex /^\\def\\xitemzzz #1{\\dosubind {kw}{\\code{#1}}{for {\\b/
4255\xkey tex-src/texinfo.tex /^\\def\\xkey{\\key}$/
4256XLI_BUILTIN_LISPSYM c-src/emacs/src/lisp.h /^#define XLI_BUILTIN_LISPSYM(iname) TAG_SYMOFFSET (/
4257XLI c-src/emacs/src/lisp.h /^# define XLI(o) lisp_h_XLI (o)$/
4258xmalloc c-src/etags.c /^xmalloc (size_t size)$/
4259XMARKER c-src/emacs/src/lisp.h /^XMARKER (Lisp_Object a)$/
4260XMISCANY c-src/emacs/src/lisp.h /^XMISCANY (Lisp_Object a)$/
4261XMISC c-src/emacs/src/lisp.h /^XMISC (Lisp_Object a)$/
4262XMISCTYPE c-src/emacs/src/lisp.h /^XMISCTYPE (Lisp_Object a)$/
4263xnew c-src/etags.c /^#define xnew(n, Type) ((Type *) xmalloc ((n) /
4264XOVERLAY c-src/emacs/src/lisp.h /^XOVERLAY (Lisp_Object a)$/
4265XPNTR c-src/emacs/src/lisp.h /^# define XPNTR(a) lisp_h_XPNTR (a)$/
4266XPROCESS c-src/emacs/src/lisp.h /^XPROCESS (Lisp_Object a)$/
4267/X ps-src/rfc1245.ps /^\/X { $/
4268\xrdef tex-src/texinfo.tex /^\\def\\xrdef #1#2{$/
4269xrealloc c-src/etags.c /^xrealloc (void *ptr, size_t size)$/
4270xref-etags-location el-src/emacs/lisp/progmodes/etags.el /^(defclass xref-etags-location (xref-location)$/
4271xref-location-line el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-line ((l xref-etags-lo/
4272xref-location-marker el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-marker ((l xref-etags-/
4273xref-make-etags-location el-src/emacs/lisp/progmodes/etags.el /^(defun xref-make-etags-location (tag-info file)$/
4274\xref tex-src/texinfo.tex /^\\def\\xref#1{See \\xrefX[#1,,,,,,,]}$/
4275\xrefX[ tex-src/texinfo.tex /^\\def\\xrefX[#1,#2,#3,#4,#5,#6]{\\begingroup%$/
4276xrnew c-src/etags.c /^#define xrnew(op, n, Type) ((op) = (Type *) xreall/
4277XSAVE_FUNCPOINTER c-src/emacs/src/lisp.h /^XSAVE_FUNCPOINTER (Lisp_Object obj, int n)$/
4278XSAVE_INTEGER c-src/emacs/src/lisp.h /^XSAVE_INTEGER (Lisp_Object obj, int n)$/
4279XSAVE_OBJECT c-src/emacs/src/lisp.h /^XSAVE_OBJECT (Lisp_Object obj, int n)$/
4280XSAVE_POINTER c-src/emacs/src/lisp.h /^XSAVE_POINTER (Lisp_Object obj, int n)$/
4281XSAVE_VALUE c-src/emacs/src/lisp.h /^XSAVE_VALUE (Lisp_Object a)$/
4282XSETBOOL_VECTOR c-src/emacs/src/lisp.h /^#define XSETBOOL_VECTOR(a, b) (XSETPSEUDOVECTOR (a/
4283XSETBUFFER c-src/emacs/src/lisp.h /^#define XSETBUFFER(a, b) (XSETPSEUDOVECTOR (a, b, /
4284XSETCDR c-src/emacs/src/lisp.h /^XSETCDR (Lisp_Object c, Lisp_Object n)$/
4285XSETCHAR_TABLE c-src/emacs/src/lisp.h /^#define XSETCHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a,/
4286XSETCOMPILED c-src/emacs/src/lisp.h /^#define XSETCOMPILED(a, b) (XSETPSEUDOVECTOR (a, b/
4287XSETCONS c-src/emacs/src/lisp.h /^#define XSETCONS(a, b) ((a) = make_lisp_ptr (b, Li/
4288XSETFASTINT c-src/emacs/src/lisp.h /^#define XSETFASTINT(a, b) ((a) = make_natnum (b))$/
4289XSETFLOAT c-src/emacs/src/lisp.h /^#define XSETFLOAT(a, b) ((a) = make_lisp_ptr (b, L/
4290XSET_HASH_TABLE c-src/emacs/src/lisp.h /^#define XSET_HASH_TABLE(VAR, PTR) \\$/
4291XSETINT c-src/emacs/src/lisp.h /^#define XSETINT(a, b) ((a) = make_number (b))$/
4292XSETMISC c-src/emacs/src/lisp.h /^#define XSETMISC(a, b) ((a) = make_lisp_ptr (b, Li/
4293XSETPROCESS c-src/emacs/src/lisp.h /^#define XSETPROCESS(a, b) (XSETPSEUDOVECTOR (a, b,/
4294XSETPSEUDOVECTOR c-src/emacs/src/lisp.h /^#define XSETPSEUDOVECTOR(a, b, code) \\$/
4295XSETPVECTYPE c-src/emacs/src/lisp.h /^#define XSETPVECTYPE(v, code) \\$/
4296XSETPVECTYPESIZE c-src/emacs/src/lisp.h /^#define XSETPVECTYPESIZE(v, code, lispsize, restsi/
4297XSETSTRING c-src/emacs/src/lisp.h /^#define XSETSTRING(a, b) ((a) = make_lisp_ptr (b, /
4298XSETSUB_CHAR_TABLE c-src/emacs/src/lisp.h /^#define XSETSUB_CHAR_TABLE(a, b) (XSETPSEUDOVECTOR/
4299XSETSUBR c-src/emacs/src/lisp.h /^#define XSETSUBR(a, b) (XSETPSEUDOVECTOR (a, b, PV/
4300XSETSYMBOL c-src/emacs/src/lisp.h /^#define XSETSYMBOL(a, b) ((a) = make_lisp_symbol (/
4301XSETTERMINAL c-src/emacs/src/lisp.h /^#define XSETTERMINAL(a, b) (XSETPSEUDOVECTOR (a, b/
4302XSETTYPED_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define XSETTYPED_PSEUDOVECTOR(a, b, size, code) /
4303XSETVECTOR c-src/emacs/src/lisp.h /^#define XSETVECTOR(a, b) ((a) = make_lisp_ptr (b, /
4304XSETWINDOW_CONFIGURATION c-src/emacs/src/lisp.h /^#define XSETWINDOW_CONFIGURATION(a, b) \\$/
4305XSETWINDOW c-src/emacs/src/lisp.h /^#define XSETWINDOW(a, b) (XSETPSEUDOVECTOR (a, b, /
4306XSTRING c-src/emacs/src/lisp.h /^XSTRING (Lisp_Object a)$/
4307XSUB_CHAR_TABLE c-src/emacs/src/lisp.h /^XSUB_CHAR_TABLE (Lisp_Object a)$/
4308XSUBR c-src/emacs/src/lisp.h /^XSUBR (Lisp_Object a)$/
4309XSYMBOL c-src/emacs/src/lisp.h /^# define XSYMBOL(a) lisp_h_XSYMBOL (a)$/
4310XSYMBOL c-src/emacs/src/lisp.h /^XSYMBOL (Lisp_Object a)$/
4311XTERMINAL c-src/emacs/src/lisp.h /^XTERMINAL (Lisp_Object a)$/
4312x tex-src/texinfo.tex /^\\refx{#1-snt}{} [\\printednodename], page\\tie\\refx{/
4313XTYPE c-src/emacs/src/lisp.h /^# define XTYPE(a) lisp_h_XTYPE (a)$/
4314XTYPE c-src/emacs/src/lisp.h /^XTYPE (Lisp_Object a)$/
4315XUNTAG c-src/emacs/src/lisp.h /^# define XUNTAG(a, type) lisp_h_XUNTAG (a, type)$/
4316XUNTAG c-src/emacs/src/lisp.h /^XUNTAG (Lisp_Object a, int type)$/
4317XWINDOW c-src/emacs/src/lisp.h /^XWINDOW (Lisp_Object a)$/
4318XX cp-src/x.cc 1
4319xx make-src/Makefile /^xx="this line is here because of a fontlock bug$/
4320xyz ruby-src/test1.ru /^ alias_method :xyz,$/
4321Xyzzy ruby-src/test1.ru 13
4322YACC c-src/etags.c 2199
4323Yacc_entries c-src/etags.c /^Yacc_entries (FILE *inf)$/
4324Yacc_help c-src/etags.c 693
4325Yacc_suffixes c-src/etags.c 691
4326\Yappendixletterandtype tex-src/texinfo.tex /^\\def\\Yappendixletterandtype{%$/
4327y cp-src/clheir.hpp 49
4328y cp-src/clheir.hpp 58
4329y cp-src/conway.hpp 7
4330Y c-src/h.h 100
4331YELLOW cp-src/screen.hpp 26
4332/yen ps-src/rfc1245.ps /^\/yen \/.notdef \/.notdef \/.notdef \/.notdef \/.notdef /
4333y-get-selection-internal c.c /^ Fy_get_selection_internal, Sy_get_selection_/
4334\Ynothing tex-src/texinfo.tex /^\\def\\Ynothing{}$/
4335\Ypagenumber tex-src/texinfo.tex /^\\def\\Ypagenumber{\\folio}$/
4336/Y ps-src/rfc1245.ps /^\/Y { $/
4337\Ysectionnumberandtype tex-src/texinfo.tex /^\\def\\Ysectionnumberandtype{%$/
4338YSRC make-src/Makefile /^YSRC=parse.y parse.c atest.y cccp.c cccp.y$/
4339\Ytitle tex-src/texinfo.tex /^\\def\\Ytitle{\\thischapter}$/
4340YYABORT /usr/share/bison/bison.simple 153
4341YYABORT /usr/share/bison/bison.simple 154
4342YYACCEPT /usr/share/bison/bison.simple 152
4343YYACCEPT /usr/share/bison/bison.simple 153
4344yyalloc /usr/share/bison/bison.simple 83
4345yyalloc /usr/share/bison/bison.simple 84
4346YYBACKUP /usr/share/bison/bison.simple /^#define YYBACKUP(Token, Value) \\$/
4347YYBISON y-src/cccp.c 4
4348YYBISON y-src/parse.c 4
4349yyclearin /usr/share/bison/bison.simple 149
4350yyclearin /usr/share/bison/bison.simple 150
4351yydebug /usr/share/bison/bison.simple 237
4352yydebug /usr/share/bison/bison.simple 238
4353YY_DECL_NON_LSP_VARIABLES /usr/share/bison/bison.simple 374
4354YY_DECL_VARIABLES /usr/share/bison/bison.simple 385
4355YY_DECL_VARIABLES /usr/share/bison/bison.simple 391
4356YYDPRINTF /usr/share/bison/bison.simple /^# define YYDPRINTF(Args) \\$/
4357YYDPRINTF /usr/share/bison/bison.simple /^# define YYDPRINTF(Args)$/
4358YYEMPTY /usr/share/bison/bison.simple 150
4359YYEMPTY /usr/share/bison/bison.simple 151
4360YYEOF /usr/share/bison/bison.simple 151
4361YYEOF /usr/share/bison/bison.simple 152
4362YYERRCODE /usr/share/bison/bison.simple 178
4363YYERRCODE /usr/share/bison/bison.simple 179
4364yyerrhandle /usr/share/bison/bison.simple 848
4365yyerrlab1 /usr/share/bison/bison.simple 823
4366yyerrok /usr/share/bison/bison.simple 148
4367yyerrok /usr/share/bison/bison.simple 149
4368YYERROR /usr/share/bison/bison.simple 154
4369YYERROR /usr/share/bison/bison.simple 155
4370yyerror y-src/cccp.y /^yyerror (s)$/
4371yyerrstatus /usr/share/bison/bison.simple 846
4372YYFAIL /usr/share/bison/bison.simple 158
4373YYFAIL /usr/share/bison/bison.simple 159
4374YYFPRINTF /usr/share/bison/bison.simple 225
4375YYFPRINTF /usr/share/bison/bison.simple 226
4376YYINITDEPTH /usr/share/bison/bison.simple 244
4377YYINITDEPTH /usr/share/bison/bison.simple 245
4378YYLEX /usr/share/bison/bison.simple 200
4379YYLEX /usr/share/bison/bison.simple 201
4380YYLEX /usr/share/bison/bison.simple 202
4381YYLEX /usr/share/bison/bison.simple 203
4382YYLEX /usr/share/bison/bison.simple 206
4383YYLEX /usr/share/bison/bison.simple 207
4384YYLEX /usr/share/bison/bison.simple 208
4385YYLEX /usr/share/bison/bison.simple 209
4386YYLEX /usr/share/bison/bison.simple 212
4387YYLEX /usr/share/bison/bison.simple 213
4388yylex y-src/cccp.y /^yylex ()$/
4389YYLLOC_DEFAULT /usr/share/bison/bison.simple /^# define YYLLOC_DEFAULT(Current, Rhs, N) \\$/
4390yylsp /usr/share/bison/bison.simple 748
4391yylsp /usr/share/bison/bison.simple 921
4392yyls /usr/share/bison/bison.simple 88
4393yyls /usr/share/bison/bison.simple 89
4394YYMAXDEPTH /usr/share/bison/bison.simple 255
4395YYMAXDEPTH /usr/share/bison/bison.simple 256
4396YYMAXDEPTH /usr/share/bison/bison.simple 259
4397YYMAXDEPTH /usr/share/bison/bison.simple 260
4398yymemcpy /usr/share/bison/bison.simple 264
4399yymemcpy /usr/share/bison/bison.simple 265
4400yymemcpy /usr/share/bison/bison.simple /^yymemcpy (char *yyto, const char *yyfrom, YYSIZE_T/
4401yynewstate /usr/share/bison/bison.simple 763
4402yynewstate /usr/share/bison/bison.simple 925
4403yyn /usr/share/bison/bison.simple 755
4404yyn /usr/share/bison/bison.simple 861
4405yyn /usr/share/bison/bison.simple 895
4406yyn /usr/share/bison/bison.simple 903
4407YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 351
4408YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 354
4409YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 358
4410YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 352
4411YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 355
4412YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 359
4413yyparse /usr/share/bison/bison.simple /^yyparse (YYPARSE_PARAM_ARG)$/
4414YYPOPSTACK /usr/share/bison/bison.simple 445
4415YYPOPSTACK /usr/share/bison/bison.simple 447
4416YYRECOVERING /usr/share/bison/bison.simple /^#define YYRECOVERING() (!!yyerrstatus)$/
4417yyresult /usr/share/bison/bison.simple 932
4418yyresult /usr/share/bison/bison.simple 939
4419yyresult /usr/share/bison/bison.simple 947
4420yyreturn /usr/share/bison/bison.simple 933
4421yyreturn /usr/share/bison/bison.simple 940
4422YYSIZE_T /usr/share/bison/bison.simple 128
4423YYSIZE_T /usr/share/bison/bison.simple 129
4424YYSIZE_T /usr/share/bison/bison.simple 131
4425YYSIZE_T /usr/share/bison/bison.simple 132
4426YYSIZE_T /usr/share/bison/bison.simple 136
4427YYSIZE_T /usr/share/bison/bison.simple 137
4428YYSIZE_T /usr/share/bison/bison.simple 140
4429YYSIZE_T /usr/share/bison/bison.simple 141
4430YYSIZE_T /usr/share/bison/bison.simple 145
4431YYSIZE_T /usr/share/bison/bison.simple 146
4432YYSIZE_T /usr/share/bison/bison.simple 51
4433YYSIZE_T /usr/share/bison/bison.simple 52
4434YYSIZE_T /usr/share/bison/bison.simple 56
4435YYSIZE_T /usr/share/bison/bison.simple 57
4436YYSIZE_T /usr/share/bison/bison.simple 71
4437YYSIZE_T /usr/share/bison/bison.simple 72
4438YYSIZE_T /usr/share/bison/bison.simple 75
4439YYSIZE_T /usr/share/bison/bison.simple 76
4440yyss /usr/share/bison/bison.simple 85
4441yyss /usr/share/bison/bison.simple 86
4442YYSTACK_ALLOC /usr/share/bison/bison.simple 50
4443YYSTACK_ALLOC /usr/share/bison/bison.simple 51
4444YYSTACK_ALLOC /usr/share/bison/bison.simple 55
4445YYSTACK_ALLOC /usr/share/bison/bison.simple 56
4446YYSTACK_ALLOC /usr/share/bison/bison.simple 59
4447YYSTACK_ALLOC /usr/share/bison/bison.simple 60
4448YYSTACK_ALLOC /usr/share/bison/bison.simple 78
4449YYSTACK_ALLOC /usr/share/bison/bison.simple 79
4450YYSTACK_BYTES /usr/share/bison/bison.simple /^# define YYSTACK_BYTES(N) \\$/
4451YYSTACK_FREE /usr/share/bison/bison.simple 79
4452YYSTACK_FREE /usr/share/bison/bison.simple 80
4453YYSTACK_FREE /usr/share/bison/bison.simple /^# define YYSTACK_FREE(Ptr) do { \/* empty *\/; } wh/
4454YYSTACK_GAP_MAX /usr/share/bison/bison.simple 93
4455YYSTACK_GAP_MAX /usr/share/bison/bison.simple 94
4456YYSTACK_RELOCATE /usr/share/bison/bison.simple 548
4457YYSTACK_RELOCATE /usr/share/bison/bison.simple /^# define YYSTACK_RELOCATE(Type, Stack) \\$/
4458yystate /usr/share/bison/bison.simple 757
4459yystate /usr/share/bison/bison.simple 761
4460yystate /usr/share/bison/bison.simple 875
4461yystate /usr/share/bison/bison.simple 924
4462YYSTD /usr/share/bison/bison.simple /^# define YYSTD(x) std::x$/
4463YYSTD /usr/share/bison/bison.simple /^# define YYSTD(x) x$/
4464yystpcpy /usr/share/bison/bison.simple 316
4465yystpcpy /usr/share/bison/bison.simple 317
4466yystpcpy /usr/share/bison/bison.simple /^yystpcpy (char *yydest, const char *yysrc)$/
4467yystrlen /usr/share/bison/bison.simple 293
4468yystrlen /usr/share/bison/bison.simple 294
4469yystrlen /usr/share/bison/bison.simple /^yystrlen (const char *yystr)$/
4470YYSTYPE y-src/parse.y 72
4471YYSTYPE y-src/parse.y 73
4472YYTERROR /usr/share/bison/bison.simple 177
4473YYTERROR /usr/share/bison/bison.simple 178
4474yyvsp /usr/share/bison/bison.simple 746
4475yyvsp /usr/share/bison/bison.simple 919
4476yyvs /usr/share/bison/bison.simple 86
4477yyvs /usr/share/bison/bison.simple 87
4478z c.c 144
4479z c.c 164
4480z cp-src/clheir.hpp 49
4481z cp-src/clheir.hpp 58
4482Z c-src/h.h 100
4483/Z ps-src/rfc1245.ps /^\/Z {$/
diff --git a/test/manual/etags/Makefile b/test/manual/etags/Makefile
index b3a82fdba8d..24d8397f16c 100644
--- a/test/manual/etags/Makefile
+++ b/test/manual/etags/Makefile
@@ -60,6 +60,7 @@ check:
60 @$(MAKE) OPTIONS='nonexistent --members --declarations --regex=@regexfile' ediff_5 60 @$(MAKE) OPTIONS='nonexistent --members --declarations --regex=@regexfile' ediff_5
61 @$(MAKE) OPTIONS='--class-qualify --members --declarations --regex=@regexfile' ediff_6 61 @$(MAKE) OPTIONS='--class-qualify --members --declarations --regex=@regexfile' ediff_6
62 @$(MAKE) cdiff 62 @$(MAKE) cdiff
63 @$(MAKE) ctags_update
63 64
64ediff%: ETAGS.good% ETAGS ${infiles} 65ediff%: ETAGS.good% ETAGS ${infiles}
65 diff -u --suppress-common-lines --width=80 ETAGS.good$* ETAGS 66 diff -u --suppress-common-lines --width=80 ETAGS.good$* ETAGS
@@ -67,6 +68,16 @@ ediff%: ETAGS.good% ETAGS ${infiles}
67cdiff: CTAGS.good CTAGS ${infiles} 68cdiff: CTAGS.good CTAGS ${infiles}
68 diff -u --suppress-common-lines --width=80 CTAGS.good CTAGS 69 diff -u --suppress-common-lines --width=80 CTAGS.good CTAGS
69 70
71ctags_update: CTAGS.good_update ${infiles}
72 head -n 100 CTAGS.good_update > CTAGS
73 tail -n 100 CTAGS.good_update >> CTAGS
74 ${RUN} ${CTAGS_PROG} -o CTAGS -u ${ARGS}
75 diff -u --suppress-common-lines --width=80 CTAGS.good_update CTAGS
76
77 cp crlf CTAGS
78 ${RUN} ${CTAGS_PROG} -o CTAGS -u ${ARGS}
79 diff -u --suppress-common-lines --width=80 CTAGS.good_crlf CTAGS
80
70ETAGS: ${infiles} 81ETAGS: ${infiles}
71 ${RUN} ${ETAGS_PROG} ${OPTIONS} -o $@ ${ARGS} 82 ${RUN} ${ETAGS_PROG} ${OPTIONS} -o $@ ${ARGS}
72 83
diff --git a/test/manual/etags/crlf b/test/manual/etags/crlf
new file mode 100644
index 00000000000..d677595f010
--- /dev/null
+++ b/test/manual/etags/crlf
@@ -0,0 +1,2 @@
1test_crlf1 test_crlf.c /^void test_crlf1()$/
2test_crlf2 tset_crlf.c /^void test_crlf2()$/