diff options
| author | lu4nx | 2022-11-25 14:38:29 +0800 |
|---|---|---|
| committer | Stefan Kangas | 2023-02-17 11:20:42 +0100 |
| commit | 5d05ea803e9996c4c1edbe0fa0f6f5b05d2ffc87 (patch) | |
| tree | be0fad63b9df6d2dbbefd8d1e787fb00304bda3c | |
| parent | 22fb5ff5126dc8bb01edaa0252829d853afb284f (diff) | |
| download | emacs-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.c | 149 | ||||
| -rw-r--r-- | test/manual/etags/CTAGS.good_crlf | 4484 | ||||
| -rw-r--r-- | test/manual/etags/CTAGS.good_update | 4483 | ||||
| -rw-r--r-- | test/manual/etags/Makefile | 11 | ||||
| -rw-r--r-- | test/manual/etags/crlf | 2 |
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 | ||
| 383 | static language *get_language_from_langname (const char *); | 383 | static language *get_language_from_langname (const char *); |
| 384 | static void readline (linebuffer *, FILE *); | 384 | static void readline (linebuffer *, FILE *); |
| 385 | static ptrdiff_t readline_internal (linebuffer *, FILE *, char const *); | 385 | static ptrdiff_t readline_internal (linebuffer *, FILE *, char const *, const bool); |
| 386 | static bool nocase_tail (const char *); | 386 | static bool nocase_tail (const char *); |
| 387 | static void get_tag (char *, char **); | 387 | static void get_tag (char *, char **); |
| 388 | static void get_lispy_tag (char *); | 388 | static void get_lispy_tag (char *); |
| @@ -406,7 +406,9 @@ static void free_fdesc (fdesc *); | |||
| 406 | static void pfnote (char *, bool, char *, ptrdiff_t, intmax_t, intmax_t); | 406 | static void pfnote (char *, bool, char *, ptrdiff_t, intmax_t, intmax_t); |
| 407 | static void invalidate_nodes (fdesc *, node **); | 407 | static void invalidate_nodes (fdesc *, node **); |
| 408 | static void put_entries (node *); | 408 | static void put_entries (node *); |
| 409 | static void clean_matched_file_tag (char const * const, char const * const); | ||
| 409 | 410 | ||
| 411 | static void do_move_file (const char *, const char *); | ||
| 410 | static char *concat (const char *, const char *, const char *); | 412 | static char *concat (const char *, const char *, const char *); |
| 411 | static char *skip_spaces (char *); | 413 | static char *skip_spaces (char *); |
| 412 | static char *skip_non_spaces (char *); | 414 | static 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 | */ | ||
| 1435 | static void | ||
| 1436 | clean_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 (®exbuf); | 6898 | linebuffer_init (®exbuf); |
| 6864 | while (readline_internal (®exbuf, regexfp, regexfile) > 0) | 6899 | while (readline_internal (®exbuf, 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 | */ |
| 7223 | static ptrdiff_t | 7260 | static ptrdiff_t |
| 7224 | readline_internal (linebuffer *lbp, FILE *stream, char const *filename) | 7261 | readline_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 | |||
| 7294 | readline (linebuffer *lbp, FILE *stream) | 7331 | readline (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 | ||
| 7692 | static void | ||
| 7693 | do_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). */ |
| 7657 | static char * | 7734 | static 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 | ||
| 34 | 2const forth-src/test-forth.fth /^3 4 2constant 2const$/ | ||
| 35 | 2val forth-src/test-forth.fth /^2const 2value 2val$/ | ||
| 36 | 2var forth-src/test-forth.fth /^2variable 2var$/ | ||
| 37 | a0 c-src/emacs/src/lisp.h /^ Lisp_Object (*a0) (void);$/ | ||
| 38 | a1 c-src/emacs/src/lisp.h /^ Lisp_Object (*a1) (Lisp_Object);$/ | ||
| 39 | a2 c-src/emacs/src/lisp.h /^ Lisp_Object (*a2) (Lisp_Object, Lisp_Object)/ | ||
| 40 | a3 c-src/emacs/src/lisp.h /^ Lisp_Object (*a3) (Lisp_Object, Lisp_Object,/ | ||
| 41 | a4 c-src/emacs/src/lisp.h /^ Lisp_Object (*a4) (Lisp_Object, Lisp_Object,/ | ||
| 42 | a5 c-src/emacs/src/lisp.h /^ Lisp_Object (*a5) (Lisp_Object, Lisp_Object,/ | ||
| 43 | a6 c-src/emacs/src/lisp.h /^ Lisp_Object (*a6) (Lisp_Object, Lisp_Object,/ | ||
| 44 | a7 c-src/emacs/src/lisp.h /^ Lisp_Object (*a7) (Lisp_Object, Lisp_Object,/ | ||
| 45 | a8 c-src/emacs/src/lisp.h /^ Lisp_Object (*a8) (Lisp_Object, Lisp_Object,/ | ||
| 46 | aaaaaa c-src/h.h 111 | ||
| 47 | aaa c.c 249 | ||
| 48 | aaa c.c 269 | ||
| 49 | aa c.c 269 | ||
| 50 | aa c.c 279 | ||
| 51 | abbrev_all_caps c-src/abbrev.c 58 | ||
| 52 | abbrev-expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/ | ||
| 53 | abbrevs_changed c-src/abbrev.c 56 | ||
| 54 | abbrev-symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/ | ||
| 55 | abc c-src/h.h 33 | ||
| 56 | abc c-src/h.h 37 | ||
| 57 | ABC ruby-src/test1.ru 11 | ||
| 58 | Abort_Handler_Pointer/t ada-src/2ataspri.ads /^ type Abort_Handler_Pointer is access procedure / | ||
| 59 | abort-recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("abort-recursive-edit", Fabort_recursive_ed/ | ||
| 60 | Abort_Task/p ada-src/2ataspri.adb /^ procedure Abort_Task (T : TCB_Ptr) is$/ | ||
| 61 | Abort_Task/p ada-src/2ataspri.ads /^ procedure Abort_Task (T : TCB_Ptr);$/ | ||
| 62 | Abort_Wrapper/p ada-src/2ataspri.adb /^ procedure Abort_Wrapper$/ | ||
| 63 | \aboveenvbreak tex-src/texinfo.tex /^\\def\\aboveenvbreak{{\\advance\\aboveenvskipamount by/ | ||
| 64 | abs/f ada-src/etags-test-for.ada /^ function "abs" (Right : Complex) return Real'/ | ||
| 65 | absolute_dirname c-src/etags.c /^absolute_dirname (char *file, char *dir)$/ | ||
| 66 | absolute_filename c-src/etags.c /^absolute_filename (char *file, char *dir)$/ | ||
| 67 | abt cp-src/c.C 55 | ||
| 68 | a c.c 152 | ||
| 69 | A c.c 162 | ||
| 70 | a c.c 180 | ||
| 71 | a c.c /^a ()$/ | ||
| 72 | a c.c /^a()$/ | ||
| 73 | accent_key_syms c-src/emacs/src/keyboard.c 4625 | ||
| 74 | access_keymap_keyremap c-src/emacs/src/keyboard.c /^access_keymap_keyremap (Lisp_Object map, Lisp_Obje/ | ||
| 75 | acc_pred_info merc-src/accumulator.m /^:- pred acc_pred_info(list(mer_type)::in, list(pro/ | ||
| 76 | acc_proc_info merc-src/accumulator.m /^:- pred acc_proc_info(list(prog_var)::in, prog_var/ | ||
| 77 | accu_assoc merc-src/accumulator.m /^:- pred accu_assoc(module_info::in, vartypes::in, / | ||
| 78 | accu_assoc merc-src/accumulator.m /^:- type accu_assoc$/ | ||
| 79 | accu_base merc-src/accumulator.m /^:- type accu_base$/ | ||
| 80 | accu_before merc-src/accumulator.m /^:- pred accu_before(module_info::in, vartypes::in,/ | ||
| 81 | accu_case merc-src/accumulator.m /^:- type accu_case$/ | ||
| 82 | accu_construct_assoc merc-src/accumulator.m /^:- pred accu_construct_assoc(module_info::in, vart/ | ||
| 83 | accu_construct merc-src/accumulator.m /^:- pred accu_construct(module_info::in, vartypes::/ | ||
| 84 | accu_create_goal merc-src/accumulator.m /^:- pred accu_create_goal(accu_goal_id::in, list(pr/ | ||
| 85 | accu_divide_base_case merc-src/accumulator.m /^:- pred accu_divide_base_case(module_info::in, var/ | ||
| 86 | accu_goal_id merc-src/accumulator.m /^:- type accu_goal_id$/ | ||
| 87 | accu_goal_list merc-src/accumulator.m /^:- func accu_goal_list(list(accu_goal_id), accu_go/ | ||
| 88 | accu_goal_store merc-src/accumulator.m /^:- type accu_goal_store == goal_store(accu_goal_id/ | ||
| 89 | accu_has_heuristic merc-src/accumulator.m /^:- pred accu_has_heuristic(module_name::in, string/ | ||
| 90 | accu_heuristic merc-src/accumulator.m /^:- pred accu_heuristic(module_name::in, string::in/ | ||
| 91 | accu_is_associative merc-src/accumulator.m /^:- pred accu_is_associative(module_info::in, pred_/ | ||
| 92 | accu_is_update merc-src/accumulator.m /^:- pred accu_is_update(module_info::in, pred_id::i/ | ||
| 93 | acc_unification merc-src/accumulator.m /^:- pred acc_unification(pair(prog_var)::in, hlds_g/ | ||
| 94 | accu_process_assoc_set merc-src/accumulator.m /^:- pred accu_process_assoc_set(module_info::in, ac/ | ||
| 95 | accu_process_update_set merc-src/accumulator.m /^:- pred accu_process_update_set(module_info::in, a/ | ||
| 96 | accu_related merc-src/accumulator.m /^:- pred accu_related(module_info::in, vartypes::in/ | ||
| 97 | accu_rename merc-src/accumulator.m /^:- func accu_rename(list(accu_goal_id), accu_subst/ | ||
| 98 | accu_sets_init merc-src/accumulator.m /^:- pred accu_sets_init(accu_sets::out) is det.$/ | ||
| 99 | accu_sets merc-src/accumulator.m /^:- type accu_sets$/ | ||
| 100 | accu_stage1_2 merc-src/accumulator.m /^:- pred accu_stage1_2(module_info::in, vartypes::i/ | ||
| 101 | accu_stage1 merc-src/accumulator.m /^:- pred accu_stage1(module_info::in, vartypes::in,/ | ||
| 102 | accu_stage2 merc-src/accumulator.m /^:- pred accu_stage2(module_info::in, proc_info::in/ | ||
| 103 | accu_stage3 merc-src/accumulator.m /^:- pred accu_stage3(accu_goal_id::in, list(prog_va/ | ||
| 104 | accu_standardize merc-src/accumulator.m /^:- pred accu_standardize(hlds_goal::in, hlds_goal:/ | ||
| 105 | accu_store merc-src/accumulator.m /^:- pred accu_store(accu_case::in, hlds_goal::in,$/ | ||
| 106 | accu_subst merc-src/accumulator.m /^:- type accu_subst == map(prog_var, prog_var).$/ | ||
| 107 | accu_substs_init merc-src/accumulator.m /^:- pred accu_substs_init(list(prog_var)::in, prog_/ | ||
| 108 | accu_substs merc-src/accumulator.m /^:- type accu_substs$/ | ||
| 109 | accu_top_level merc-src/accumulator.m /^:- pred accu_top_level(top_level::in, hlds_goal::i/ | ||
| 110 | accu_transform_proc merc-src/accumulator.m /^:- pred accu_transform_proc(pred_proc_id::in, pred/ | ||
| 111 | accu_update merc-src/accumulator.m /^:- pred accu_update(module_info::in, vartypes::in,/ | ||
| 112 | accu_warning merc-src/accumulator.m /^:- type accu_warning$/ | ||
| 113 | acc_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/ | ||
| 115 | A cp-src/c.C 117 | ||
| 116 | a cp-src/c.C 132 | ||
| 117 | A cp-src/c.C 39 | ||
| 118 | A cp-src/c.C 56 | ||
| 119 | A cp-src/c.C 57 | ||
| 120 | A cp-src/c.C 73 | ||
| 121 | ~A cp-src/c.C /^A::~A() {}$/ | ||
| 122 | A cp-src/c.C /^void A::A() {}$/ | ||
| 123 | A cp-src/fail.C 23 | ||
| 124 | A cp-src/fail.C 7 | ||
| 125 | a c-src/h.h 103 | ||
| 126 | a c-src/h.h 40 | ||
| 127 | action prol-src/natded.prolog /^action(KeyVals):-$/ | ||
| 128 | \activedoublequote tex-src/texinfo.tex /^\\def\\activedoublequote{{\\tt \\char '042}}$/ | ||
| 129 | active_maps c-src/emacs/src/keyboard.c /^active_maps (Lisp_Object first_event)$/ | ||
| 130 | \activeparens tex-src/texinfo.tex /^\\def\\activeparens{%$/ | ||
| 131 | actout prol-src/natded.prolog /^actout('Text',Trees):-$/ | ||
| 132 | act prol-src/natded.prolog /^act(OutForm,OutSyn,Ws):-$/ | ||
| 133 | Ada_funcs c-src/etags.c /^Ada_funcs (FILE *inf)$/ | ||
| 134 | Ada_getit c-src/etags.c /^Ada_getit (FILE *inf, const char *name_qualifier)$/ | ||
| 135 | Ada_help c-src/etags.c 475 | ||
| 136 | ADASRC make-src/Makefile /^ADASRC=etags-test-for.ada 2ataspri.adb 2ataspri.ad/ | ||
| 137 | Ada_suffixes c-src/etags.c 473 | ||
| 138 | add_active prol-src/natded.prolog /^add_active([],Cat,Goal):-$/ | ||
| 139 | addArchs objc-src/PackInsp.m /^-(void)addArchs:(const char *)string$/ | ||
| 140 | add_command_key c-src/emacs/src/keyboard.c /^add_command_key (Lisp_Object key)$/ | ||
| 141 | add_edge prol-src/natded.prolog /^add_edge(Left,Right,Cat):-$/ | ||
| 142 | add_node c-src/etags.c /^add_node (node *np, node **cur_node_p)$/ | ||
| 143 | addnoise html-src/algrthms.html /^Adding Noise to the$/ | ||
| 144 | AddNullToNmStr pas-src/common.pas /^function AddNullToNmStr; (*($/ | ||
| 145 | addPOReader php-src/lce_functions.php /^ function addPOReader($d_name, &$por)$/ | ||
| 146 | add_regex c-src/etags.c /^add_regex (char *regexp_pattern, language *lang)$/ | ||
| 147 | ADDRESS c-src/emacs/src/gmalloc.c /^#define ADDRESS(B) ((void *) (((B) - 1) * BLOCKSIZ/ | ||
| 148 | Address_To_Call_State/f ada-src/2ataspri.adb /^ function Address_To_Call_State is new$/ | ||
| 149 | Address_To_TCB_Ptr/f ada-src/2ataspri.ads /^ function Address_To_TCB_Ptr is new$/ | ||
| 150 | address y-src/cccp.y 113 | ||
| 151 | add_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$/ | ||
| 153 | adjust_point_for_property c-src/emacs/src/keyboard.c /^adjust_point_for_property (ptrdiff_t last_pt, bool/ | ||
| 154 | Advanced usage tex-src/gzip.texi /^@node Advanced usage, Environment, Invoking gzip, / | ||
| 155 | a-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$/ | ||
| 158 | a-forth-value? forth-src/test-forth.fth /^55 value a-forth-value?$/ | ||
| 159 | a-forth-word forth-src/test-forth.fth /^: a-forth-word ( a b c -- )$/ | ||
| 160 | a-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/ | ||
| 163 | agent cp-src/clheir.hpp 75 | ||
| 164 | algorithms html-src/algrthms.html /^Description$/ | ||
| 165 | alias c-src/emacs/src/lisp.h 688 | ||
| 166 | alignas c-src/emacs/src/lisp.h /^# define alignas(alignment) \/* empty *\/$/ | ||
| 167 | align c-src/emacs/src/gmalloc.c /^align (size_t size)$/ | ||
| 168 | aligned_alloc c-src/emacs/src/gmalloc.c 1718 | ||
| 169 | aligned_alloc c-src/emacs/src/gmalloc.c 71 | ||
| 170 | aligned_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 | ||
| 173 | Aligned_Cons c-src/emacs/src/lisp.h 4670 | ||
| 174 | aligned c-src/emacs/src/gmalloc.c 199 | ||
| 175 | Aligned_String c-src/emacs/src/lisp.h 4676 | ||
| 176 | alignlist c-src/emacs/src/gmalloc.c 196 | ||
| 177 | ALIGNOF_STRUCT_LISP_VECTOR c-src/emacs/src/lisp.h 1378 | ||
| 178 | alive cp-src/conway.hpp 7 | ||
| 179 | all_kboards c-src/emacs/src/keyboard.c 86 | ||
| 180 | ALLOCATED_BEFORE_DUMPING c-src/emacs/src/gmalloc.c /^#define ALLOCATED_BEFORE_DUMPING(P) \\$/ | ||
| 181 | allocated c-src/emacs/src/regex.h 344 | ||
| 182 | allocate_kboard c-src/emacs/src/keyboard.c /^allocate_kboard (Lisp_Object type)$/ | ||
| 183 | ALLOCATE_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define ALLOCATE_PSEUDOVECTOR(type, field, tag) / | ||
| 184 | ALLOCATE_ZEROED_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define ALLOCATE_ZEROED_PSEUDOVECTOR(type, field, / | ||
| 185 | \alphaenumerate tex-src/texinfo.tex /^\\def\\alphaenumerate{\\enumerate{a}}$/ | ||
| 186 | aMANY c-src/emacs/src/lisp.h /^ Lisp_Object (*aMANY) (ptrdiff_t, Lisp_Object/ | ||
| 187 | analyze_regex c-src/etags.c /^analyze_regex (char *regex_arg)$/ | ||
| 188 | andkeyvalseq prol-src/natded.prolog /^andkeyvalseq(KeyVals) --> ['&'], keyvalseq(KeyVals/ | ||
| 189 | AND y-src/cccp.c 11 | ||
| 190 | an_extern_linkage c-src/h.h 44 | ||
| 191 | an_extern_linkage c-src/h.h 56 | ||
| 192 | an_extern_linkage_ptr c-src/h.h 43 | ||
| 193 | animals cp-src/c.C 126 | ||
| 194 | animals cp-src/c.C 130 | ||
| 195 | animals c-src/h.h 81 | ||
| 196 | (another-forth-word) forth-src/test-forth.fth /^: (another-forth-word) ( -- )$/ | ||
| 197 | ANSIC c-src/h.h 84 | ||
| 198 | ANSIC c-src/h.h 85 | ||
| 199 | any_kboard_state c-src/emacs/src/keyboard.c /^any_kboard_state ()$/ | ||
| 200 | appDidInit objcpp-src/SimpleCalc.M /^- appDidInit:sender$/ | ||
| 201 | \appendixletter tex-src/texinfo.tex /^\\def\\appendixletter{\\char\\the\\appendixno}$/ | ||
| 202 | appendix_name perl-src/htlmify-cystic 13 | ||
| 203 | \appendixnoderef tex-src/texinfo.tex /^\\def\\appendixnoderef{\\ifx\\lastnode\\relax\\else$/ | ||
| 204 | appendix 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}$/ | ||
| 214 | appendix_toc perl-src/htlmify-cystic 16 | ||
| 215 | \appendixzzz tex-src/texinfo.tex /^\\def\\appendixzzz #1{\\seccheck{appendix}%$/ | ||
| 216 | append_list prol-src/natded.prolog /^append_list([],[]).$/ | ||
| 217 | append prol-src/natded.prolog /^append([],Xs,Xs).$/ | ||
| 218 | append_string pas-src/common.pas /^procedure append_string;(*($/ | ||
| 219 | AppendTextString pas-src/common.pas /^function AppendTextString;(*($/ | ||
| 220 | appendToDisplay objcpp-src/SimpleCalc.M /^- appendToDisplay:(const char *)theDigit$/ | ||
| 221 | append_tool_bar_item c-src/emacs/src/keyboard.c /^append_tool_bar_item (void)$/ | ||
| 222 | apply_modifiers c-src/emacs/src/keyboard.c /^apply_modifiers (int modifiers, Lisp_Object base)$/ | ||
| 223 | apply_modifiers_uncached c-src/emacs/src/keyboard.c /^apply_modifiers_uncached (int modifiers, char *bas/ | ||
| 224 | /A ps-src/rfc1245.ps /^\/A { $/ | ||
| 225 | aref_addr c-src/emacs/src/lisp.h /^aref_addr (Lisp_Object array, ptrdiff_t idx)$/ | ||
| 226 | AREF c-src/emacs/src/lisp.h /^AREF (Lisp_Object array, ptrdiff_t idx)$/ | ||
| 227 | arg c-src/emacs/src/lisp.h 2961 | ||
| 228 | arg c-src/emacs/src/lisp.h 2966 | ||
| 229 | arg c-src/emacs/src/lisp.h 2971 | ||
| 230 | arg c-src/h.h 13 | ||
| 231 | arglist y-src/cccp.y 41 | ||
| 232 | argno y-src/cccp.y 45 | ||
| 233 | args c-src/emacs/src/lisp.h 2986 | ||
| 234 | args c-src/h.h 30 | ||
| 235 | argsindent tex-src/texinfo.tex /^\\dimen1=\\hsize \\advance \\dimen1 by -\\defargsindent/ | ||
| 236 | argsindent tex-src/texinfo.tex /^\\newskip\\defargsindent \\defargsindent=50pt$/ | ||
| 237 | argsindent tex-src/texinfo.tex /^\\parshape 2 0in \\dimen0 \\defargsindent \\dimen1 / | ||
| 238 | ARGS make-src/Makefile /^ARGS=- < srclist$/ | ||
| 239 | arg_type c-src/etags.c 250 | ||
| 240 | argument c-src/etags.c 253 | ||
| 241 | argvals prol-src/natded.prolog /^argvals([]) --> [].$/ | ||
| 242 | Arith_Comparison c-src/emacs/src/lisp.h 3497 | ||
| 243 | ARITH_EQUAL c-src/emacs/src/lisp.h 3498 | ||
| 244 | ARITH_GRTR c-src/emacs/src/lisp.h 3501 | ||
| 245 | ARITH_GRTR_OR_EQUAL c-src/emacs/src/lisp.h 3503 | ||
| 246 | ARITH_LESS c-src/emacs/src/lisp.h 3500 | ||
| 247 | ARITH_LESS_OR_EQUAL c-src/emacs/src/lisp.h 3502 | ||
| 248 | ARITH_NOTEQUAL c-src/emacs/src/lisp.h 3499 | ||
| 249 | array c.c 190 | ||
| 250 | ARRAYELTS c-src/emacs/src/lisp.h /^#define ARRAYELTS(arr) (sizeof (arr) \/ sizeof (arr/ | ||
| 251 | ARRAY_MARK_FLAG c-src/emacs/src/lisp.h 768 | ||
| 252 | ARRAYP c-src/emacs/src/lisp.h /^ARRAYP (Lisp_Object x)$/ | ||
| 253 | A ruby-src/test1.ru /^class A$/ | ||
| 254 | a ruby-src/test1.ru /^ def a()$/ | ||
| 255 | A ruby-src/test1.ru /^module A$/ | ||
| 256 | ASCII_CHAR_P c-src/emacs/src/lisp.h /^#define ASCII_CHAR_P(c) UNSIGNED_CMP (c, <, 0x80)$/ | ||
| 257 | ascii c-src/emacs/src/lisp.h 1598 | ||
| 258 | ASET 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}$/ | ||
| 260 | ASIZE c-src/emacs/src/lisp.h /^ASIZE (Lisp_Object array)$/ | ||
| 261 | Asm_help c-src/etags.c 504 | ||
| 262 | Asm_labels c-src/etags.c /^Asm_labels (FILE *inf)$/ | ||
| 263 | Asm_suffixes c-src/etags.c 493 | ||
| 264 | asort cp-src/functions.cpp /^void asort(int *a, int num){$/ | ||
| 265 | ASRC make-src/Makefile /^ASRC=empty.zz empty.zz.gz$/ | ||
| 266 | assemby-code-word forth-src/test-forth.fth /^code assemby-code-word ( dunno what it does )$/ | ||
| 267 | assert c-src/etags.c 135 | ||
| 268 | assert c-src/etags.c /^# define assert(x) ((void) 0)$/ | ||
| 269 | assign_neighbor cp-src/clheir.hpp /^ void assign_neighbor(int direction, location */ | ||
| 270 | associativity_assertion merc-src/accumulator.m /^:- pred associativity_assertion(module_info::in, l/ | ||
| 271 | assoc_list merc-src/accumulator.m /^:- import_module assoc_list.$/ | ||
| 272 | AST_Array::AST_Array cp-src/c.C /^AST_Array::AST_Array(UTL_ScopedName *n, unsigned l/ | ||
| 273 | AST_ConcreteType::AST_ConcreteType cp-src/c.C /^AST_ConcreteType::AST_ConcreteType(AST_Decl::NodeT/ | ||
| 274 | AST_Root cp-src/c.C 92 | ||
| 275 | AT cp-src/c.C 52 | ||
| 276 | at_end c-src/etags.c 249 | ||
| 277 | at_filename c-src/etags.c 247 | ||
| 278 | /atilde ps-src/rfc1245.ps /^\/atilde \/aring \/ccedilla \/eacute \/egrave \/ecircumf/ | ||
| 279 | at_language c-src/etags.c 245 | ||
| 280 | at_least_one_member prol-src/natded.prolog /^at_least_one_member(X,[X|_]):-!.$/ | ||
| 281 | atom prol-src/natded.prolog /^atom(X) --> [X], {atomic(X)}.$/ | ||
| 282 | atomval prol-src/natded.prolog /^atomval(X) --> atom(X).$/ | ||
| 283 | at_regexp c-src/etags.c 246 | ||
| 284 | at_stdin c-src/etags.c 248 | ||
| 285 | AU cp-src/c.C 53 | ||
| 286 | aultparindent\hang\textindent tex-src/texinfo.tex /^\\footstrut\\parindent=\\defaultparindent\\hang\\textin/ | ||
| 287 | aultparindent tex-src/texinfo.tex /^\\newdimen\\defaultparindent \\defaultparindent = 15p/ | ||
| 288 | aultparindent tex-src/texinfo.tex /^\\parindent = \\defaultparindent$/ | ||
| 289 | aUNEVALLED 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 / | ||
| 293 | AUTO_CONS c-src/emacs/src/lisp.h /^#define AUTO_CONS(name, a, b) Lisp_Object name = A/ | ||
| 294 | AUTO_CONS_EXPR c-src/emacs/src/lisp.h /^#define AUTO_CONS_EXPR(a, b) \\$/ | ||
| 295 | auto_help c-src/etags.c 699 | ||
| 296 | AUTO_LIST1 c-src/emacs/src/lisp.h /^#define AUTO_LIST1(name, a) \\$/ | ||
| 297 | AUTO_LIST2 c-src/emacs/src/lisp.h /^#define AUTO_LIST2(name, a, b) \\$/ | ||
| 298 | AUTO_LIST3 c-src/emacs/src/lisp.h /^#define AUTO_LIST3(name, a, b, c) \\$/ | ||
| 299 | AUTO_LIST4 c-src/emacs/src/lisp.h /^#define AUTO_LIST4(name, a, b, c, d) \\$/ | ||
| 300 | AUTOLOADP c-src/emacs/src/lisp.h /^AUTOLOADP (Lisp_Object x)$/ | ||
| 301 | AUTO_STRING c-src/emacs/src/lisp.h /^#define AUTO_STRING(name, str) \\$/ | ||
| 302 | AVAIL_ALLOCA c-src/emacs/src/lisp.h /^#define AVAIL_ALLOCA(size) (sa_avail -= (size), al/ | ||
| 303 | backslash=0 tex-src/texinfo.tex /^\\let\\indexbackslash=0 %overridden during \\printin/ | ||
| 304 | \balancecolumns tex-src/texinfo.tex /^\\def\\balancecolumns{%$/ | ||
| 305 | bar1 ruby-src/test1.ru /^ attr_reader(:foo1, :bar1, # comment$/ | ||
| 306 | bar c.c 143 | ||
| 307 | bar cp-src/x.cc /^XX::bar()$/ | ||
| 308 | bar c-src/c.c /^void bar() {while(0) {}}$/ | ||
| 309 | bar c-src/h.h 19 | ||
| 310 | Bar lua-src/test.lua /^function Square.something:Bar ()$/ | ||
| 311 | Bar perl-src/kai-test.pl /^package Bar;$/ | ||
| 312 | Barrier_Function_Pointer/t ada-src/etags-test-for.ada /^ type Barrier_Function_Pointer is access$/ | ||
| 313 | bar= ruby-src/test1.ru /^ attr_writer :bar,$/ | ||
| 314 | _bar? ruby-src/test1.ru /^ def self._bar?(abc)$/ | ||
| 315 | base_case_ids merc-src/accumulator.m /^:- func base_case_ids(accu_goal_store) = list(accu/ | ||
| 316 | base_case_ids_set merc-src/accumulator.m /^:- func base_case_ids_set(accu_goal_store) = set(a/ | ||
| 317 | base cp-src/c.C /^double base (void) const { return rng_base; }$/ | ||
| 318 | base cp-src/Range.h /^ double base (void) const { return rng_base; }$/ | ||
| 319 | base c-src/emacs/src/lisp.h 2188 | ||
| 320 | bas_syn prol-src/natded.prolog /^bas_syn(n(_)).$/ | ||
| 321 | baz= ruby-src/test1.ru /^ :baz,$/ | ||
| 322 | bbbbbb c-src/h.h 113 | ||
| 323 | bbb c.c 251 | ||
| 324 | bb c.c 275 | ||
| 325 | b c.c 180 | ||
| 326 | b c.c 259 | ||
| 327 | b c.c 260 | ||
| 328 | b c.c 262 | ||
| 329 | b c.c /^b ()$/ | ||
| 330 | B cp-src/c.C 122 | ||
| 331 | b cp-src/c.C 132 | ||
| 332 | B cp-src/c.C 54 | ||
| 333 | B cp-src/c.C 56 | ||
| 334 | B cp-src/c.C 74 | ||
| 335 | ~B cp-src/c.C /^ ~B() {};$/ | ||
| 336 | B cp-src/c.C /^void B::B() {}$/ | ||
| 337 | B cp-src/fail.C 24 | ||
| 338 | B cp-src/fail.C 8 | ||
| 339 | b c-src/h.h 103 | ||
| 340 | b c-src/h.h 104 | ||
| 341 | b c-src/h.h 41 | ||
| 342 | been_warned c-src/etags.c 222 | ||
| 343 | before_command_echo_length c-src/emacs/src/keyboard.c 130 | ||
| 344 | before_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{%$/ | ||
| 355 | begtoken c-src/etags.c /^#define begtoken(c) (_btk[CHAR (c)]) \/* c can star/ | ||
| 356 | behaviour_info erl-src/gs_dialog.erl /^behaviour_info(callbacks) ->$/ | ||
| 357 | BE_Node cp-src/c.C 77 | ||
| 358 | BE_Node cp-src/c.C /^void BE_Node::BE_Node() {}$/ | ||
| 359 | bf=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 }$/ | ||
| 363 | Bidule/b ada-src/etags-test-for.ada /^ protected body Bidule is$/ | ||
| 364 | Bidule/b ada-src/waroquiers.ada /^ protected body Bidule is$/ | ||
| 365 | Bidule/t ada-src/etags-test-for.ada /^ protected Bidule is$/ | ||
| 366 | Bidule/t ada-src/waroquiers.ada /^ protected Bidule is$/ | ||
| 367 | bind_polling_period c-src/emacs/src/keyboard.c /^bind_polling_period (int n)$/ | ||
| 368 | bind 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 { $/ | ||
| 373 | BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 125 | ||
| 374 | BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 129 | ||
| 375 | BITS_PER_CHAR c-src/emacs/src/lisp.h 136 | ||
| 376 | BITS_PER_EMACS_INT c-src/emacs/src/lisp.h 139 | ||
| 377 | BITS_PER_LONG c-src/emacs/src/lisp.h 138 | ||
| 378 | BITS_PER_SHORT c-src/emacs/src/lisp.h 137 | ||
| 379 | bits_word c-src/emacs/src/lisp.h 123 | ||
| 380 | bits_word c-src/emacs/src/lisp.h 127 | ||
| 381 | BITS_WORD_MAX c-src/emacs/src/lisp.h 124 | ||
| 382 | BITS_WORD_MAX c-src/emacs/src/lisp.h 128 | ||
| 383 | bla c.c /^int bla ()$/ | ||
| 384 | BLACK cp-src/screen.hpp 12 | ||
| 385 | blah tex-src/testenv.tex /^\\section{blah}$/ | ||
| 386 | bletch el-src/TAGTEST.EL /^(foo::defmumble bletch beuarghh)$/ | ||
| 387 | BLOCK c-src/emacs/src/gmalloc.c /^#define BLOCK(A) (((char *) (A) - _heapbase) \/ BLO/ | ||
| 388 | BLOCKIFY c-src/emacs/src/gmalloc.c /^#define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) \// | ||
| 389 | BLOCKLOG c-src/emacs/src/gmalloc.c 125 | ||
| 390 | BLOCKSIZE c-src/emacs/src/gmalloc.c 126 | ||
| 391 | /bl ps-src/rfc1245.ps /^\/bl { $/ | ||
| 392 | BLUE cp-src/screen.hpp 13 | ||
| 393 | blv c-src/emacs/src/lisp.h 689 | ||
| 394 | blv_found c-src/emacs/src/lisp.h /^blv_found (struct Lisp_Buffer_Local_Value *blv)$/ | ||
| 395 | bodyindent tex-src/texinfo.tex /^\\advance\\dimen2 by -\\defbodyindent$/ | ||
| 396 | bodyindent tex-src/texinfo.tex /^\\advance\\dimen3 by -\\defbodyindent$/ | ||
| 397 | bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by -\\defbodyindent$/ | ||
| 398 | bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by \\defbodyindent \\advance \\righ/ | ||
| 399 | bodyindent tex-src/texinfo.tex /^\\exdentamount=\\defbodyindent$/ | ||
| 400 | bodyindent tex-src/texinfo.tex /^\\newskip\\defbodyindent \\defbodyindent=.4in$/ | ||
| 401 | Body_Required/f ada-src/etags-test-for.ada /^ function Body_Required$/ | ||
| 402 | Boo::Boo cp-src/c.C /^Boo::Boo(Boo) :$/ | ||
| 403 | Boo cp-src/c.C 129 | ||
| 404 | Boo cp-src/c.C /^ Boo(int _i, int _a, int _b) : i(_i), a(_a), b(/ | ||
| 405 | bool c.c 222 | ||
| 406 | bool_header_size c-src/emacs/src/lisp.h 1472 | ||
| 407 | bool merc-src/accumulator.m /^:- import_module bool.$/ | ||
| 408 | boolvar c-src/emacs/src/lisp.h 2287 | ||
| 409 | bool_vector_bitref c-src/emacs/src/lisp.h /^bool_vector_bitref (Lisp_Object a, EMACS_INT i)$/ | ||
| 410 | BOOL_VECTOR_BITS_PER_CHAR c-src/emacs/src/lisp.h 114 | ||
| 411 | BOOL_VECTOR_BITS_PER_CHAR c-src/emacs/src/lisp.h 115 | ||
| 412 | bool_vector_bytes c-src/emacs/src/lisp.h /^bool_vector_bytes (EMACS_INT size)$/ | ||
| 413 | bool_vector_data c-src/emacs/src/lisp.h /^bool_vector_data (Lisp_Object a)$/ | ||
| 414 | BOOL_VECTOR_P c-src/emacs/src/lisp.h /^BOOL_VECTOR_P (Lisp_Object a)$/ | ||
| 415 | bool_vector_ref c-src/emacs/src/lisp.h /^bool_vector_ref (Lisp_Object a, EMACS_INT i)$/ | ||
| 416 | bool_vector_set c-src/emacs/src/lisp.h /^bool_vector_set (Lisp_Object a, EMACS_INT i, bool / | ||
| 417 | bool_vector_size c-src/emacs/src/lisp.h /^bool_vector_size (Lisp_Object a)$/ | ||
| 418 | bool_vector_uchar_data c-src/emacs/src/lisp.h /^bool_vector_uchar_data (Lisp_Object a)$/ | ||
| 419 | bool_vector_words c-src/emacs/src/lisp.h /^bool_vector_words (EMACS_INT size)$/ | ||
| 420 | /B ps-src/rfc1245.ps /^\/B { $/ | ||
| 421 | bracelev 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/ | ||
| 425 | BROWN cp-src/screen.hpp 18 | ||
| 426 | B ruby-src/test1.ru /^ class B$/ | ||
| 427 | b ruby-src/test1.ru /^ def b()$/ | ||
| 428 | bsp_DevId c-src/h.h 25 | ||
| 429 | bt 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}}$/ | ||
| 433 | btowc c-src/emacs/src/regex.h /^# define btowc(c) c$/ | ||
| 434 | buffer c-src/emacs/src/lisp.h 2000 | ||
| 435 | buffer c-src/emacs/src/regex.h 341 | ||
| 436 | buffer c-src/etags.c 238 | ||
| 437 | buffer c-src/h.h 119 | ||
| 438 | BUFFER_OBJFWDP c-src/emacs/src/lisp.h /^BUFFER_OBJFWDP (union Lisp_Fwd *a)$/ | ||
| 439 | BUFFERP c-src/emacs/src/lisp.h /^BUFFERP (Lisp_Object a)$/ | ||
| 440 | BUFFERSIZE objc-src/Subprocess.h 43 | ||
| 441 | buildact prol-src/natded.prolog /^buildact([SynIn],Right,RightPlus1):-$/ | ||
| 442 | build prol-src/natded.prolog /^build([],Left,Left).$/ | ||
| 443 | build_pure_c_string c-src/emacs/src/lisp.h /^build_pure_c_string (const char *str)$/ | ||
| 444 | build_string c-src/emacs/src/lisp.h /^build_string (const char *str)$/ | ||
| 445 | builtin_lisp_symbol c-src/emacs/src/lisp.h /^builtin_lisp_symbol (int index)$/ | ||
| 446 | \bullet tex-src/texinfo.tex /^\\def\\bullet{$\\ptexbullet$}$/ | ||
| 447 | burst c-src/h.h 28 | ||
| 448 | busy c-src/emacs/src/gmalloc.c 158 | ||
| 449 | ButtonBar pyt-src/server.py /^def ButtonBar(frame, legend, ref, alternatives, co/ | ||
| 450 | button_down_location c-src/emacs/src/keyboard.c 5210 | ||
| 451 | button_down_time c-src/emacs/src/keyboard.c 5218 | ||
| 452 | \bye tex-src/texinfo.tex /^\\outer\\def\\bye{\\pagealignmacro\\tracingstats=1\\ptex/ | ||
| 453 | bytecode_dest c-src/emacs/src/lisp.h 3037 | ||
| 454 | bytecode_top c-src/emacs/src/lisp.h 3036 | ||
| 455 | BYTE_MARK_STACK c-src/emacs/src/lisp.h 3181 | ||
| 456 | bytepos c-src/emacs/src/lisp.h 2016 | ||
| 457 | bytes_free c-src/emacs/src/gmalloc.c 314 | ||
| 458 | _bytes_free c-src/emacs/src/gmalloc.c 376 | ||
| 459 | byte_stack c-src/emacs/src/lisp.h 3049 | ||
| 460 | bytes_total c-src/emacs/src/gmalloc.c 310 | ||
| 461 | bytes_used c-src/emacs/src/gmalloc.c 312 | ||
| 462 | _bytes_used c-src/emacs/src/gmalloc.c 374 | ||
| 463 | caccacacca c.c /^caccacacca (a,b,c,d,e,f,g)$/ | ||
| 464 | cacheLRUEntry_s c.c 172 | ||
| 465 | cacheLRUEntry_t c.c 177 | ||
| 466 | calculate_goal_info merc-src/accumulator.m /^:- pred calculate_goal_info(hlds_goal_expr::in, hl/ | ||
| 467 | CALLMANY c-src/emacs/src/lisp.h /^#define CALLMANY(f, array) (f) (ARRAYELTS (array),/ | ||
| 468 | CALLN c-src/emacs/src/lisp.h /^#define CALLN(f, ...) CALLMANY (f, ((Lisp_Object [/ | ||
| 469 | calloc c-src/emacs/src/gmalloc.c 1717 | ||
| 470 | calloc c-src/emacs/src/gmalloc.c 66 | ||
| 471 | calloc c-src/emacs/src/gmalloc.c 70 | ||
| 472 | calloc c-src/emacs/src/gmalloc.c /^calloc (size_t nmemb, size_t size)$/ | ||
| 473 | can_be_null c-src/emacs/src/regex.h 370 | ||
| 474 | cancel_echoing c-src/emacs/src/keyboard.c /^cancel_echoing (void)$/ | ||
| 475 | canonicalize_filename c-src/etags.c /^canonicalize_filename (register char *fn)$/ | ||
| 476 | \capsenumerate tex-src/texinfo.tex /^\\def\\capsenumerate{\\enumerate{A}}$/ | ||
| 477 | CAR c-src/emacs/src/lisp.h /^CAR (Lisp_Object c)$/ | ||
| 478 | CAR_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$/ | ||
| 482 | case_Lisp_Int c-src/emacs/src/lisp.h 438 | ||
| 483 | cat_atoms prol-src/natded.prolog /^cat_atoms(A1,A2,A3):-$/ | ||
| 484 | CATCHER c-src/emacs/src/lisp.h 3021 | ||
| 485 | cat cp-src/c.C 126 | ||
| 486 | cat cp-src/c.C 130 | ||
| 487 | cat c-src/h.h 81 | ||
| 488 | cat prol-src/natded.prolog /^cat(A, Alpha@Beta, Ass3, Qs3, tree(fe,A:Alpha@Beta/ | ||
| 489 | C_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}}$/ | ||
| 492 | c c.c 180 | ||
| 493 | cccccccccc c-src/h.h 115 | ||
| 494 | C cp-src/fail.C 25 | ||
| 495 | C cp-src/fail.C 9 | ||
| 496 | C cp-src/fail.C /^ C(int i) {x = i;}$/ | ||
| 497 | c c-src/h.h 106 | ||
| 498 | c c-src/h.h /^#define c() d$/ | ||
| 499 | %cdiff make-src/Makefile /^%cdiff: CTAGS% CTAGS ${infiles}$/ | ||
| 500 | cdr c-src/emacs/src/lisp.h 1159 | ||
| 501 | CDR c-src/emacs/src/lisp.h /^CDR (Lisp_Object c)$/ | ||
| 502 | CDR_SAFE c-src/emacs/src/lisp.h /^CDR_SAFE (Lisp_Object c)$/ | ||
| 503 | cell 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$/ | ||
| 506 | C_entries c-src/etags.c /^C_entries (int c_ext, FILE *inf)$/ | ||
| 507 | C_EXT c-src/etags.c 2193 | ||
| 508 | c_ext c-src/etags.c 2271 | ||
| 509 | CFLAGS make-src/Makefile /^CFLAGS=${WARNINGS} -ansi -g3 # -pg -O$/ | ||
| 510 | /cfs ps-src/rfc1245.ps /^\/cfs { $/ | ||
| 511 | cgrep html-src/software.html /^cgrep$/ | ||
| 512 | chain c-src/emacs/src/lisp.h 1162 | ||
| 513 | chain c-src/emacs/src/lisp.h 2206 | ||
| 514 | chain c-src/emacs/src/lisp.h 2396 | ||
| 515 | chain_subst_2 merc-src/accumulator.m /^:- pred chain_subst_2(list(A)::in, map(A, B)::in, / | ||
| 516 | chain_subst merc-src/accumulator.m /^:- func chain_subst(accu_subst, accu_subst) = accu/ | ||
| 517 | ChangeFileType 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}%$/ | ||
| 534 | CHARACTERBITS c-src/emacs/src/lisp.h 2457 | ||
| 535 | CHAR_ALT c-src/emacs/src/lisp.h 2445 | ||
| 536 | CHAR_BIT c-src/emacs/src/lisp.h 2957 | ||
| 537 | CHAR_BIT c-src/emacs/src/lisp.h 2959 | ||
| 538 | CHAR_BIT c-src/emacs/src/lisp.h 2964 | ||
| 539 | CHAR_BIT c-src/emacs/src/lisp.h 2969 | ||
| 540 | CHAR_BIT c-src/emacs/src/lisp.h 2974 | ||
| 541 | CHAR_BIT c-src/emacs/src/lisp.h 2978 | ||
| 542 | CHAR_BIT c-src/emacs/src/lisp.h 2983 | ||
| 543 | char_bits c-src/emacs/src/lisp.h 2443 | ||
| 544 | CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 593 | ||
| 545 | CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 597 | ||
| 546 | CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 605 | ||
| 547 | CHAR c-src/etags.c /^#define CHAR(x) ((unsigned int)(x) & (CHARS - 1))/ | ||
| 548 | CHAR_CTL c-src/emacs/src/lisp.h 2449 | ||
| 549 | CHAR_HYPER c-src/emacs/src/lisp.h 2447 | ||
| 550 | CHAR_META c-src/emacs/src/lisp.h 2450 | ||
| 551 | CHAR_MODIFIER_MASK c-src/emacs/src/lisp.h 2452 | ||
| 552 | charpos c-src/emacs/src/lisp.h 2011 | ||
| 553 | CHARS c-src/etags.c 157 | ||
| 554 | charset_unibyte c-src/emacs/src/regex.h 410 | ||
| 555 | CHAR_SHIFT c-src/emacs/src/lisp.h 2448 | ||
| 556 | CHAR_SUPER c-src/emacs/src/lisp.h 2446 | ||
| 557 | CHAR_TABLE_EXTRA_SLOTS c-src/emacs/src/lisp.h /^CHAR_TABLE_EXTRA_SLOTS (struct Lisp_Char_Table *ct/ | ||
| 558 | CHAR_TABLE_P c-src/emacs/src/lisp.h /^CHAR_TABLE_P (Lisp_Object a)$/ | ||
| 559 | CHAR_TABLE_REF_ASCII c-src/emacs/src/lisp.h /^CHAR_TABLE_REF_ASCII (Lisp_Object ct, ptrdiff_t id/ | ||
| 560 | CHAR_TABLE_REF c-src/emacs/src/lisp.h /^CHAR_TABLE_REF (Lisp_Object ct, int idx)$/ | ||
| 561 | CHAR_TABLE_SET c-src/emacs/src/lisp.h /^CHAR_TABLE_SET (Lisp_Object ct, int idx, Lisp_Obje/ | ||
| 562 | char_table_specials c-src/emacs/src/lisp.h 1692 | ||
| 563 | CHAR_TABLE_STANDARD_SLOTS c-src/emacs/src/lisp.h 1697 | ||
| 564 | CHARTAB_SIZE_BITS_0 c-src/emacs/src/lisp.h 1567 | ||
| 565 | CHARTAB_SIZE_BITS_1 c-src/emacs/src/lisp.h 1568 | ||
| 566 | CHARTAB_SIZE_BITS_2 c-src/emacs/src/lisp.h 1569 | ||
| 567 | CHARTAB_SIZE_BITS_3 c-src/emacs/src/lisp.h 1570 | ||
| 568 | CHARTAB_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}$/ | ||
| 571 | chartonmstr pas-src/common.pas /^function chartonmstr; (*($/ | ||
| 572 | CHAR_TYPE_SIZE y-src/cccp.y 87 | ||
| 573 | CHAR y-src/cccp.c 7 | ||
| 574 | CHECK_ARRAY c-src/emacs/src/lisp.h /^CHECK_ARRAY (Lisp_Object x, Lisp_Object predicate)/ | ||
| 575 | CHECK_BOOL_VECTOR c-src/emacs/src/lisp.h /^CHECK_BOOL_VECTOR (Lisp_Object x)$/ | ||
| 576 | CHECK_BUFFER c-src/emacs/src/lisp.h /^CHECK_BUFFER (Lisp_Object x)$/ | ||
| 577 | CHECK_CONS c-src/emacs/src/lisp.h /^CHECK_CONS (Lisp_Object x)$/ | ||
| 578 | check_cons_list c-src/emacs/src/lisp.h /^# define check_cons_list() lisp_h_check_cons_list/ | ||
| 579 | checker make-src/Makefile /^checker:$/ | ||
| 580 | CHECKFLAGS make-src/Makefile /^CHECKFLAGS=-DDEBUG -Wno-unused-function$/ | ||
| 581 | checkhdr c-src/emacs/src/gmalloc.c /^checkhdr (const struct hdr *hdr)$/ | ||
| 582 | checkiso html-src/software.html /^checkiso$/ | ||
| 583 | CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 571 | ||
| 584 | CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 572 | ||
| 585 | CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 579 | ||
| 586 | CHECK_LIST_CONS c-src/emacs/src/lisp.h /^# define CHECK_LIST_CONS(x, y) lisp_h_CHECK_LIST_C/ | ||
| 587 | CHECK_LIST c-src/emacs/src/lisp.h /^CHECK_LIST (Lisp_Object x)$/ | ||
| 588 | CHECK_NATNUM c-src/emacs/src/lisp.h /^CHECK_NATNUM (Lisp_Object x)$/ | ||
| 589 | CHECK_NUMBER_CAR c-src/emacs/src/lisp.h /^CHECK_NUMBER_CAR (Lisp_Object x)$/ | ||
| 590 | CHECK_NUMBER_CDR c-src/emacs/src/lisp.h /^CHECK_NUMBER_CDR (Lisp_Object x)$/ | ||
| 591 | CHECK_NUMBER_COERCE_MARKER c-src/emacs/src/lisp.h /^#define CHECK_NUMBER_COERCE_MARKER(x) \\$/ | ||
| 592 | CHECK_NUMBER c-src/emacs/src/lisp.h /^# define CHECK_NUMBER(x) lisp_h_CHECK_NUMBER (x)$/ | ||
| 593 | CHECK_NUMBER_OR_FLOAT_COERCE_MARKER c-src/emacs/src/lisp.h /^#define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(x) / | ||
| 594 | CHECK_NUMBER_OR_FLOAT c-src/emacs/src/lisp.h /^CHECK_NUMBER_OR_FLOAT (Lisp_Object x)$/ | ||
| 595 | CHECKOBJS make-src/Makefile /^CHECKOBJS=chkmalloc.o chkxm.o$/ | ||
| 596 | CHECK_PROCESS c-src/emacs/src/lisp.h /^CHECK_PROCESS (Lisp_Object x)$/ | ||
| 597 | checkQuotation php-src/lce_functions.php /^ function checkQuotation($str)$/ | ||
| 598 | CHECK_RANGED_INTEGER c-src/emacs/src/lisp.h /^#define CHECK_RANGED_INTEGER(x, lo, hi) \\$/ | ||
| 599 | CHECK_STRING_CAR c-src/emacs/src/lisp.h /^CHECK_STRING_CAR (Lisp_Object x)$/ | ||
| 600 | CHECK_SYMBOL c-src/emacs/src/lisp.h /^# define CHECK_SYMBOL(x) lisp_h_CHECK_SYMBOL (x)$/ | ||
| 601 | CHECK_TYPE c-src/emacs/src/lisp.h /^# define CHECK_TYPE(ok, predicate, x) lisp_h_CHECK/ | ||
| 602 | CHECK_TYPE_RANGED_INTEGER c-src/emacs/src/lisp.h /^#define CHECK_TYPE_RANGED_INTEGER(type, x) \\$/ | ||
| 603 | CHECK_VECTOR c-src/emacs/src/lisp.h /^CHECK_VECTOR (Lisp_Object x)$/ | ||
| 604 | CHECK_VECTOR_OR_STRING c-src/emacs/src/lisp.h /^CHECK_VECTOR_OR_STRING (Lisp_Object x)$/ | ||
| 605 | CHECK_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{%$/ | ||
| 608 | childDidExit objc-src/Subprocess.m /^- childDidExit$/ | ||
| 609 | chunks_free c-src/emacs/src/gmalloc.c 313 | ||
| 610 | _chunks_free c-src/emacs/src/gmalloc.c 375 | ||
| 611 | chunks_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}$/ | ||
| 615 | Circle.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}}$/ | ||
| 618 | C_JAVA c-src/etags.c 2197 | ||
| 619 | cjava c-src/etags.c 2936 | ||
| 620 | Cjava_entries c-src/etags.c /^Cjava_entries (FILE *inf)$/ | ||
| 621 | Cjava_help c-src/etags.c 551 | ||
| 622 | Cjava_suffixes c-src/etags.c 549 | ||
| 623 | CK_ABS_C y-src/parse.y /^#define CK_ABS_C(x) if((x)<MIN_COL || (x)>MAX_COL)/ | ||
| 624 | CK_ABS_R y-src/parse.y /^#define CK_ABS_R(x) if((x)<MIN_ROW || (x)>MAX_ROW)/ | ||
| 625 | CK_REL_C y-src/parse.y /^#define CK_REL_C(x) if( ((x)>0 && MAX_COL-(x)<cu/ | ||
| 626 | CK_REL_R y-src/parse.y /^#define CK_REL_R(x) if( ((x)>0 && MAX_ROW-(x)<cu/ | ||
| 627 | ClassExample ruby-src/test.rb /^ class ClassExample$/ | ||
| 628 | classifyLine php-src/lce_functions.php /^ function classifyLine($line)$/ | ||
| 629 | class_method ruby-src/test.rb /^ def ClassExample.class_method$/ | ||
| 630 | clean make-src/Makefile /^clean:$/ | ||
| 631 | clear-abbrev-table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, / | ||
| 632 | clearAllKey objcpp-src/SimpleCalc.M /^- clearAllKey:sender$/ | ||
| 633 | clear cp-src/conway.hpp /^ void clear(void) { alive = 0; }$/ | ||
| 634 | clear_event c-src/emacs/src/keyboard.c /^clear_event (struct input_event *event)$/ | ||
| 635 | clear_input_pending c-src/emacs/src/keyboard.c /^clear_input_pending (void)$/ | ||
| 636 | clearKey objcpp-src/SimpleCalc.M /^- clearKey:sender$/ | ||
| 637 | clear_neighbors cp-src/clheir.cpp /^void discrete_location::clear_neighbors(void)$/ | ||
| 638 | Clear/p ada-src/2ataspri.adb /^ procedure Clear (Cell : in out TAS_Cell) is$/ | ||
| 639 | Clear/p ada-src/2ataspri.ads /^ procedure Clear (Cell : in out TAS_Cell)/ | ||
| 640 | clear_screen cp-src/screen.cpp /^void clear_screen(void)$/ | ||
| 641 | \clear tex-src/texinfo.tex /^\\def\\clear{\\parsearg\\clearxxx}$/ | ||
| 642 | clear-this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/ | ||
| 643 | clear_waiting_for_input c-src/emacs/src/keyboard.c /^clear_waiting_for_input (void)$/ | ||
| 644 | \clearxxx tex-src/texinfo.tex /^\\def\\clearxxx #1{$/ | ||
| 645 | cmd_error c-src/emacs/src/keyboard.c /^cmd_error (Lisp_Object data)$/ | ||
| 646 | cmd_error_internal c-src/emacs/src/keyboard.c /^cmd_error_internal (Lisp_Object data, const char */ | ||
| 647 | cmpfn c-src/emacs/src/lisp.h /^ bool (*cmpfn) (struct hash_table_test *t, Lisp_O/ | ||
| 648 | cmt prol-src/natded.prolog /^cmt:-$/ | ||
| 649 | CMultiChannelCSC19_3D cp-src/c.C 2 | ||
| 650 | cname c-src/etags.c 2519 | ||
| 651 | CNL c-src/etags.c /^#define CNL() \\$/ | ||
| 652 | CNL_SAVE_DEFINEDEF c-src/etags.c /^#define CNL_SAVE_DEFINEDEF() \\$/ | ||
| 653 | cno c-src/etags.c 224 | ||
| 654 | COBOLFLAGS make-src/Makefile /^COBOLFLAGS=--language=none --regex='\/.......[a-zA-/ | ||
| 655 | Cobol_help c-src/etags.c 558 | ||
| 656 | Cobol_paragraphs c-src/etags.c /^Cobol_paragraphs (FILE *inf)$/ | ||
| 657 | Cobol_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}}$/ | ||
| 660 | colori cp-src/c.C 40 | ||
| 661 | COLORS cp-src/screen.hpp 11 | ||
| 662 | __COLORS cp-src/screen.hpp 9 | ||
| 663 | /colorsetup ps-src/rfc1245.ps /^\/colorsetup {$/ | ||
| 664 | commaargvals prol-src/natded.prolog /^commaargvals(Args) -->$/ | ||
| 665 | command c-src/etags.c 187 | ||
| 666 | command-error-default-function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/ | ||
| 667 | command_loop_1 c-src/emacs/src/keyboard.c /^command_loop_1 (void)$/ | ||
| 668 | command_loop_2 c-src/emacs/src/keyboard.c /^command_loop_2 (Lisp_Object ignore)$/ | ||
| 669 | command_loop c-src/emacs/src/keyboard.c /^command_loop (void)$/ | ||
| 670 | command_loop_level c-src/emacs/src/keyboard.c 195 | ||
| 671 | CommentAD php-src/lce_functions.php 70 | ||
| 672 | CommentAD php-src/lce_functions.php /^ function CommentAD($/ | ||
| 673 | comment 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 { $/ | ||
| 678 | commutativity_assertion merc-src/accumulator.m /^:- pred commutativity_assertion(module_info::in,li/ | ||
| 679 | COMPILED_ARGLIST c-src/emacs/src/lisp.h 2431 | ||
| 680 | COMPILED_BYTECODE c-src/emacs/src/lisp.h 2432 | ||
| 681 | COMPILED_CONSTANTS c-src/emacs/src/lisp.h 2433 | ||
| 682 | COMPILED_DOC_STRING c-src/emacs/src/lisp.h 2435 | ||
| 683 | COMPILED_INTERACTIVE c-src/emacs/src/lisp.h 2436 | ||
| 684 | COMPILEDP c-src/emacs/src/lisp.h /^COMPILEDP (Lisp_Object a)$/ | ||
| 685 | COMPILED_STACK_DEPTH c-src/emacs/src/lisp.h 2434 | ||
| 686 | compile_empty prol-src/natded.prolog /^compile_empty:-$/ | ||
| 687 | compile_lex prol-src/natded.prolog /^compile_lex(File):-$/ | ||
| 688 | complete prol-src/natded.prolog /^complete(Cat):-$/ | ||
| 689 | complete-tag el-src/emacs/lisp/progmodes/etags.el /^(defun complete-tag ()$/ | ||
| 690 | compressor c-src/etags.c 188 | ||
| 691 | compressors c-src/etags.c 457 | ||
| 692 | compute_next_state cp-src/clheir.hpp /^ virtual void compute_next_state(void) { }$/ | ||
| 693 | compute_next_state cp-src/conway.hpp /^ void compute_next_state(void)$/ | ||
| 694 | conalgorithm html-src/algrthms.html /^Convolutionally$/ | ||
| 695 | concat c-src/etags.c /^concat (const char *s1, const char *s2, const char/ | ||
| 696 | concatenatenamestrings pas-src/common.pas /^function concatenatenamestrings; (*($/ | ||
| 697 | ConcatT pas-src/common.pas /^function ConcatT;(*($/ | ||
| 698 | Concept Index tex-src/gzip.texi /^@node Concept Index, , Problems, Top$/ | ||
| 699 | CONDITION_CASE c-src/emacs/src/lisp.h 3021 | ||
| 700 | Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is$/ | ||
| 701 | Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is private;$/ | ||
| 702 | Cond_Signal/p ada-src/2ataspri.adb /^ procedure Cond_Signal (Cond : in out Condition_/ | ||
| 703 | Cond_Signal/p ada-src/2ataspri.ads /^ procedure Cond_Signal (Cond : in out Condition_/ | ||
| 704 | Cond_Timed_Wait/p ada-src/2ataspri.adb /^ procedure Cond_Timed_Wait$/ | ||
| 705 | Cond_Timed_Wait/p ada-src/2ataspri.ads /^ procedure Cond_Timed_Wait$/ | ||
| 706 | Cond_Wait/p ada-src/2ataspri.adb /^ procedure Cond_Wait (Cond : in out Condition_Va/ | ||
| 707 | Cond_Wait/p ada-src/2ataspri.ads /^ procedure Cond_Wait (Cond : in out Condition_Va/ | ||
| 708 | Configure pyt-src/server.py /^class Configure(Frame, ControlEdit):$/ | ||
| 709 | ConfirmQuit pyt-src/server.py /^def ConfirmQuit(frame, context):$/ | ||
| 710 | consider_token c-src/etags.c /^consider_token (char *str, int len, int c, int *c_/ | ||
| 711 | CONSP c-src/emacs/src/lisp.h /^# define CONSP(x) lisp_h_CONSP (x)$/ | ||
| 712 | constant_args c-src/h.h 27 | ||
| 713 | constant c-src/emacs/src/lisp.h 668 | ||
| 714 | constant c-src/h.h 29 | ||
| 715 | Constant ruby-src/test1.ru 42 | ||
| 716 | constant y-src/cccp.y 112 | ||
| 717 | CONS_TO_INTEGER c-src/emacs/src/lisp.h /^#define CONS_TO_INTEGER(cons, type, var) \\$/ | ||
| 718 | constype c-src/emacs/src/lisp.h 3739 | ||
| 719 | CONSTYPE_HEAP c-src/emacs/src/lisp.h 3739 | ||
| 720 | CONSTYPE_PURE c-src/emacs/src/lisp.h 3739 | ||
| 721 | consult_lex prol-src/natded.prolog /^consult_lex:-$/ | ||
| 722 | contents c-src/emacs/src/lisp.h 1372 | ||
| 723 | contents c-src/emacs/src/lisp.h 1600 | ||
| 724 | contents c-src/emacs/src/lisp.h 1624 | ||
| 725 | \contents tex-src/texinfo.tex /^\\outer\\def\\contents{%$/ | ||
| 726 | ControlEdit pyt-src/server.py /^class ControlEdit(Frame):$/ | ||
| 727 | Controls pyt-src/server.py /^class Controls:$/ | ||
| 728 | CONVERT_CHARSTRING_TO_VALUE pas-src/common.pas /^procedure CONVERT_CHARSTRING_TO_VALUE;(*($/ | ||
| 729 | Copying 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}$/ | ||
| 732 | CopyTextString pas-src/common.pas /^function CopyTextString;(*($/ | ||
| 733 | count c-src/emacs/src/lisp.h 1863 | ||
| 734 | counter cp-src/c.C 33 | ||
| 735 | counter cp-src/c.C 36 | ||
| 736 | count_layers lua-src/allegro.lua /^local function count_layers (layer)$/ | ||
| 737 | count_words c-src/tab.c /^static int count_words(char *str, char delim)$/ | ||
| 738 | cow cp-src/c.C 127 | ||
| 739 | cow cp-src/c.C 131 | ||
| 740 | C_PLAIN c-src/etags.c 2194 | ||
| 741 | C_PLPL c-src/etags.c 2195 | ||
| 742 | cplpl c-src/etags.c 2935 | ||
| 743 | Cplusplus_entries c-src/etags.c /^Cplusplus_entries (FILE *inf)$/ | ||
| 744 | Cplusplus_help c-src/etags.c 540 | ||
| 745 | Cplusplus_suffixes c-src/etags.c 535 | ||
| 746 | CPPFLAGS make-src/Makefile /^CPPFLAGS=${CHECKFLAGS} -DSTDC_HEADERS -DHAVE_GETCW/ | ||
| 747 | CPSRC make-src/Makefile /^CPSRC=c.C abstract.C abstract.H cfront.H burton.cp/ | ||
| 748 | /C ps-src/rfc1245.ps /^\/C { $/ | ||
| 749 | create_acc_call merc-src/accumulator.m /^:- func create_acc_call(hlds_goal::in(goal_plain_c/ | ||
| 750 | create_acc_goal merc-src/accumulator.m /^:- pred create_acc_goal(hlds_goal::in, accu_substs/ | ||
| 751 | create-bar forth-src/test-forth.fth /^: create-bar foo ;$/ | ||
| 752 | Create_LL_Task/p ada-src/2ataspri.adb /^ procedure Create_LL_Task$/ | ||
| 753 | Create_LL_Task/p ada-src/2ataspri.ads /^ procedure Create_LL_Task$/ | ||
| 754 | create_new_base_goals merc-src/accumulator.m /^:- func create_new_base_goals(set(accu_goal_id), a/ | ||
| 755 | create_new_orig_recursive_goals merc-src/accumulator.m /^:- func create_new_orig_recursive_goals(set(accu_g/ | ||
| 756 | create_new_recursive_goals merc-src/accumulator.m /^:- func create_new_recursive_goals(set(accu_goal_i/ | ||
| 757 | create_new_var merc-src/accumulator.m /^:- pred create_new_var(prog_var::in, string::in, p/ | ||
| 758 | create_orig_goal merc-src/accumulator.m /^:- pred create_orig_goal(hlds_goal::in, accu_subst/ | ||
| 759 | createPOEntries php-src/lce_functions.php /^ function createPOEntries()$/ | ||
| 760 | createWidgets pyt-src/server.py /^ def createWidgets(self):$/ | ||
| 761 | createWidgets 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/ | ||
| 764 | cscInitTime cp-src/c.C 7 | ||
| 765 | cscSegmentationTime cp-src/c.C 8 | ||
| 766 | CSRC make-src/Makefile /^CSRC=abbrev.c ..\/etags\/h.h .\/\/c.c torture.c getopt/ | ||
| 767 | C_stab_entry c-src/etags.c 2271 | ||
| 768 | cstack c-src/etags.c 2523 | ||
| 769 | C_STAR c-src/etags.c 2196 | ||
| 770 | Cstar_entries c-src/etags.c /^Cstar_entries (FILE *inf)$/ | ||
| 771 | Cstar_suffixes c-src/etags.c 562 | ||
| 772 | C_symtype c-src/etags.c /^C_symtype (char *str, int len, int c_ext)$/ | ||
| 773 | CTAGS13 CTAGS14 CTAGS15 make-src/Makefile /^CTAGS13 CTAGS14 CTAGS15: ctags% ${infiles}$/ | ||
| 774 | CTAGS c-src/etags.c 146 | ||
| 775 | CTAGS c-src/etags.c 147 | ||
| 776 | CTAGS c-src/etags.c 149 | ||
| 777 | CTAGS make-src/Makefile /^CTAGS: ctags ${infiles}$/ | ||
| 778 | CTAGS% make-src/Makefile /^CTAGS%: ctags% ${infiles}$/ | ||
| 779 | ctags 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}}$/ | ||
| 783 | Cube.data.getFoo lua-src/test.lua /^function Cube.data.getFoo ()$/ | ||
| 784 | curlb c-src/etags.c 2929 | ||
| 785 | curlinepos c-src/etags.c 2931 | ||
| 786 | current-idle-time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/ | ||
| 787 | current-input-mode c-src/emacs/src/keyboard.c /^DEFUN ("current-input-mode", Fcurrent_input_mode, / | ||
| 788 | current_kboard c-src/emacs/src/keyboard.c 85 | ||
| 789 | current_lb_is_new c-src/etags.c 2926 | ||
| 790 | curry-test scm-src/test.scm /^(define (((((curry-test a) b) c) d) e)$/ | ||
| 791 | cursor_position cp-src/screen.cpp /^void cursor_position(void)$/ | ||
| 792 | cursor_x cp-src/screen.cpp 15 | ||
| 793 | cursor_y cp-src/screen.cpp 15 | ||
| 794 | CYAN cp-src/screen.hpp 15 | ||
| 795 | DAEMON_RUNNING c-src/emacs/src/lisp.h 4258 | ||
| 796 | DAEMON_RUNNING c-src/emacs/src/lisp.h 4262 | ||
| 797 | DARKGRAY cp-src/screen.hpp 20 | ||
| 798 | data c-src/emacs/src/lisp.h 1395 | ||
| 799 | data c-src/emacs/src/lisp.h 2129 | ||
| 800 | data c-src/emacs/src/lisp.h 2395 | ||
| 801 | d c.c 180 | ||
| 802 | D cp-src/fail.C 41 | ||
| 803 | D cp-src/fail.C /^ D() : ::A::T2::T(97), x(1066) {}$/ | ||
| 804 | d c-src/emacs/src/lisp.h 4673 | ||
| 805 | d c-src/emacs/src/lisp.h 4679 | ||
| 806 | ddefineseen c-src/etags.c 2462 | ||
| 807 | DEAFUN c.c /^DEAFUN ("expand-file-name", Fexpand_file_name, Sex/ | ||
| 808 | debian-bug html-src/software.html /^debian-bug.el$/ | ||
| 809 | Debug cp-src/functions.cpp /^void Debug ( int lineno, int level, char* func , c/ | ||
| 810 | DEBUG c-src/etags.c 84 | ||
| 811 | DEBUG c-src/etags.c 85 | ||
| 812 | DEBUG c-src/etags.c 87 | ||
| 813 | DEBUG objc-src/PackInsp.m 37 | ||
| 814 | debug_on_exit c-src/emacs/src/lisp.h 2984 | ||
| 815 | decimalKey objcpp-src/SimpleCalc.M /^- decimalKey:sender$/ | ||
| 816 | declared_special c-src/emacs/src/lisp.h 676 | ||
| 817 | DECLARE_GDB_SYM c-src/emacs/src/lisp.h /^#define DECLARE_GDB_SYM(type, id) type const id EX/ | ||
| 818 | decode_timer c-src/emacs/src/keyboard.c /^decode_timer (Lisp_Object timer, struct timespec */ | ||
| 819 | defalt c-src/emacs/src/lisp.h 1585 | ||
| 820 | default_C_entries c-src/etags.c /^default_C_entries (FILE *inf)$/ | ||
| 821 | default_C_help c-src/etags.c 515 | ||
| 822 | default_C_help c-src/etags.c 523 | ||
| 823 | default_C_suffixes c-src/etags.c 512 | ||
| 824 | DEFAULT_HASH_SIZE c-src/emacs/src/lisp.h 1940 | ||
| 825 | __default_morecore c-src/emacs/src/gmalloc.c /^__default_morecore (ptrdiff_t increment)$/ | ||
| 826 | DEFAULT_REHASH_SIZE c-src/emacs/src/lisp.h 1950 | ||
| 827 | DEFAULT_REHASH_THRESHOLD c-src/emacs/src/lisp.h 1946 | ||
| 828 | default-tags-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar default-tags-table-function nil$/ | ||
| 829 | defcell c-src/emacs/src/lisp.h 2351 | ||
| 830 | \defcodeindex tex-src/texinfo.tex /^\\def\\defcodeindex{\\parsearg\\newcodeindex}$/ | ||
| 831 | def c-src/h.h 35 | ||
| 832 | def 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}$/ | ||
| 840 | define-abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/ | ||
| 841 | define-abbrev-table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/ | ||
| 842 | definedef c-src/etags.c 2464 | ||
| 843 | defined_GC_CHECK_STRING_BYTES c-src/emacs/src/lisp.h 4663 | ||
| 844 | defined_GC_CHECK_STRING_BYTES c-src/emacs/src/lisp.h 4665 | ||
| 845 | DEFINE_GDB_SYMBOL_BEGIN c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_BEGIN(type, id) DECLARE/ | ||
| 846 | DEFINE_GDB_SYMBOL_BEGIN c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_BEGIN(type, id) extern / | ||
| 847 | DEFINE_GDB_SYMBOL_END c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_END(id) = id;$/ | ||
| 848 | DEFINE_GDB_SYMBOL_END c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_END(val) ;$/ | ||
| 849 | define-global-abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/ | ||
| 850 | DEFINE_LISP_SYMBOL c-src/emacs/src/lisp.h /^#define DEFINE_LISP_SYMBOL(name) \\$/ | ||
| 851 | define-mode-abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, / | ||
| 852 | DEFINE_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/ | ||
| 873 | Def_ 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/ | ||
| 877 | DEFSYM c-src/emacs/src/lisp.h /^#define DEFSYM(sym, name) \/* empty *\/$/ | ||
| 878 | DEFSYM 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/ | ||
| 898 | DEFUN_ARGS_0 c-src/emacs/src/lisp.h 714 | ||
| 899 | DEFUN_ARGS_1 c-src/emacs/src/lisp.h 715 | ||
| 900 | DEFUN_ARGS_2 c-src/emacs/src/lisp.h 716 | ||
| 901 | DEFUN_ARGS_3 c-src/emacs/src/lisp.h 717 | ||
| 902 | DEFUN_ARGS_4 c-src/emacs/src/lisp.h 718 | ||
| 903 | DEFUN_ARGS_5 c-src/emacs/src/lisp.h 719 | ||
| 904 | DEFUN_ARGS_6 c-src/emacs/src/lisp.h 721 | ||
| 905 | DEFUN_ARGS_7 c-src/emacs/src/lisp.h 723 | ||
| 906 | DEFUN_ARGS_8 c-src/emacs/src/lisp.h 725 | ||
| 907 | DEFUN_ARGS_MANY c-src/emacs/src/lisp.h 712 | ||
| 908 | \defunargs tex-src/texinfo.tex /^\\def\\defunargs #1{\\functionparens \\sl$/ | ||
| 909 | DEFUN_ARGS_UNEVALLED c-src/emacs/src/lisp.h 713 | ||
| 910 | DEFUN c-src/emacs/src/lisp.h /^#define DEFUN(lname, fnname, sname, minargs, maxar/ | ||
| 911 | defun_func1 c.c /^defun_func1()$/ | ||
| 912 | DEFUN_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%$/ | ||
| 917 | DEFVAR_BOOL c-src/emacs/src/lisp.h /^#define DEFVAR_BOOL(lname, vname, doc) \\$/ | ||
| 918 | DEFVAR_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/ | ||
| 920 | DEFVAR_INT c-src/emacs/src/lisp.h /^#define DEFVAR_INT(lname, vname, doc) \\$/ | ||
| 921 | DEFVAR_KBOARD c-src/emacs/src/lisp.h /^#define DEFVAR_KBOARD(lname, vname, doc) \\$/ | ||
| 922 | DEFVAR_LISP c-src/emacs/src/lisp.h /^#define DEFVAR_LISP(lname, vname, doc) \\$/ | ||
| 923 | DEFVAR_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/ | ||
| 931 | delegate objc-src/Subprocess.m /^- delegate$/ | ||
| 932 | deleteItem pyt-src/server.py /^ def deleteItem(self):$/ | ||
| 933 | delete_kboard c-src/emacs/src/keyboard.c /^delete_kboard (KBOARD *kb)$/ | ||
| 934 | deliver_input_available_signal c-src/emacs/src/keyboard.c /^deliver_input_available_signal (int sig)$/ | ||
| 935 | deliver_interrupt_signal c-src/emacs/src/keyboard.c /^deliver_interrupt_signal (int sig)$/ | ||
| 936 | deliver_user_signal c-src/emacs/src/keyboard.c /^deliver_user_signal (int sig)$/ | ||
| 937 | depth c-src/emacs/src/lisp.h 1618 | ||
| 938 | derived_analyses prol-src/natded.prolog /^derived_analyses([],[]).$/ | ||
| 939 | describe_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 {$/ | ||
| 942 | detect_input_pending c-src/emacs/src/keyboard.c /^detect_input_pending (void)$/ | ||
| 943 | detect_input_pending_ignore_squeezables c-src/emacs/src/keyboard.c /^detect_input_pending_ignore_squeezables (void)$/ | ||
| 944 | detect_input_pending_run_timers c-src/emacs/src/keyboard.c /^detect_input_pending_run_timers (bool do_display)$/ | ||
| 945 | DEVICE_LAST c-src/h.h 24 | ||
| 946 | DEVICE_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 [$/ | ||
| 950 | dialog_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 \// | ||
| 952 | dignorerest 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/ | ||
| 955 | discard-input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/ | ||
| 956 | discard_mouse_events c-src/emacs/src/keyboard.c /^discard_mouse_events (void)$/ | ||
| 957 | discrete_location cp-src/clheir.hpp 56 | ||
| 958 | discrete_location cp-src/clheir.hpp /^ discrete_location(int xi, int yi, int zi):$/ | ||
| 959 | display cp-src/conway.cpp /^void display(void)$/ | ||
| 960 | \display tex-src/texinfo.tex /^\\def\\display{\\begingroup\\inENV %This group ends at/ | ||
| 961 | DisposeANameList pas-src/common.pas /^procedure DisposeANameList( $/ | ||
| 962 | DisposeNameList pas-src/common.pas /^procedure DisposeNameList;$/ | ||
| 963 | disposetextstring 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}$/ | ||
| 966 | dnone 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/ | ||
| 969 | doc 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/ | ||
| 972 | dog cp-src/c.C 126 | ||
| 973 | dog cp-src/c.C 130 | ||
| 974 | dog 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}}$/ | ||
| 984 | DOS_NT c-src/etags.c 117 | ||
| 985 | DOS_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{%$/ | ||
| 989 | dotfill tex-src/texinfo.tex /^\\noindent\\hskip\\secondaryindent\\hbox{#1}\\indexdotf/ | ||
| 990 | dotfill 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}$/ | ||
| 994 | double_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$/ | ||
| 998 | drag_n_drop_syms c-src/emacs/src/keyboard.c 4629 | ||
| 999 | dribble c-src/emacs/src/keyboard.c 236 | ||
| 1000 | dsharpseen c-src/etags.c 2461 | ||
| 1001 | dummies tex-src/texinfo.tex /^{\\indexdummies % Must do this here, since \\bf, etc/ | ||
| 1002 | dummy1 cp-src/burton.cpp /^::dummy::dummy test::dummy1(void)$/ | ||
| 1003 | dummy2 cp-src/burton.cpp /^::dummy::dummy test::dummy2(::CORBA::Long dummy)$/ | ||
| 1004 | dummy3 cp-src/burton.cpp /^::dummy::dummy test::dummy3(char* name, ::CORBA::L/ | ||
| 1005 | dummydots tex-src/texinfo.tex /^\\let\\dots=\\indexdummydots$/ | ||
| 1006 | dummyfont tex-src/texinfo.tex /^\\let\\b=\\indexdummyfont$/ | ||
| 1007 | dummyfont tex-src/texinfo.tex /^\\let\\code=\\indexdummyfont$/ | ||
| 1008 | dummyfont tex-src/texinfo.tex /^\\let\\emph=\\indexdummyfont$/ | ||
| 1009 | dummyfont tex-src/texinfo.tex /^\\let\\file=\\indexdummyfont$/ | ||
| 1010 | dummyfont tex-src/texinfo.tex /^\\let\\i=\\indexdummyfont$/ | ||
| 1011 | dummyfont tex-src/texinfo.tex /^\\let\\kbd=\\indexdummyfont$/ | ||
| 1012 | dummyfont tex-src/texinfo.tex /^\\let\\key=\\indexdummyfont$/ | ||
| 1013 | dummyfont tex-src/texinfo.tex /^\\let\\r=\\indexdummyfont$/ | ||
| 1014 | dummyfont tex-src/texinfo.tex /^\\let\\samp=\\indexdummyfont$/ | ||
| 1015 | dummyfont tex-src/texinfo.tex /^\\let\\sc=\\indexdummyfont$/ | ||
| 1016 | dummyfont tex-src/texinfo.tex /^\\let\\strong=\\indexdummyfont$/ | ||
| 1017 | dummyfont tex-src/texinfo.tex /^\\let\\tclose=\\indexdummyfont$/ | ||
| 1018 | dummyfont tex-src/texinfo.tex /^\\let\\t=\\indexdummyfont$/ | ||
| 1019 | dummyfont tex-src/texinfo.tex /^\\let\\var=\\indexdummyfont$/ | ||
| 1020 | dummyfont tex-src/texinfo.tex /^\\let\\w=\\indexdummyfont$/ | ||
| 1021 | dummytex tex-src/texinfo.tex /^\\let\\TeX=\\indexdummytex$/ | ||
| 1022 | DUMPED c-src/emacs/src/gmalloc.c 80 | ||
| 1023 | dump pyt-src/server.py /^ def dump(self, folded):$/ | ||
| 1024 | eabs c-src/emacs/src/lisp.h /^#define eabs(x) ((x) < 0 ? -(x) : (x))$/ | ||
| 1025 | \Ealphaenumerate tex-src/texinfo.tex /^\\def\\Ealphaenumerate{\\Eenumerate}$/ | ||
| 1026 | eassert c-src/emacs/src/lisp.h /^# define eassert(cond) \\$/ | ||
| 1027 | eassert c-src/emacs/src/lisp.h /^# define eassert(cond) ((void) (false && (cond))) / | ||
| 1028 | eassume c-src/emacs/src/lisp.h /^# define eassume(cond) \\$/ | ||
| 1029 | eassume c-src/emacs/src/lisp.h /^# define eassume(cond) assume (cond)$/ | ||
| 1030 | eax c-src/sysdep.h 31 | ||
| 1031 | eax c-src/sysdep.h 33 | ||
| 1032 | \Ecapsenumerate tex-src/texinfo.tex /^\\def\\Ecapsenumerate{\\Eenumerate}$/ | ||
| 1033 | \Ecartouche tex-src/texinfo.tex /^\\def\\Ecartouche{%$/ | ||
| 1034 | echo_add_key c-src/emacs/src/keyboard.c /^echo_add_key (Lisp_Object c)$/ | ||
| 1035 | echo_char c-src/emacs/src/keyboard.c /^echo_char (Lisp_Object c)$/ | ||
| 1036 | echo_dash c-src/emacs/src/keyboard.c /^echo_dash (void)$/ | ||
| 1037 | echoing c-src/emacs/src/keyboard.c 154 | ||
| 1038 | echo_kboard c-src/emacs/src/keyboard.c 166 | ||
| 1039 | echo_keystrokes_p c-src/emacs/src/keyboard.c /^echo_keystrokes_p (void)$/ | ||
| 1040 | echo_length c-src/emacs/src/keyboard.c /^echo_length (void)$/ | ||
| 1041 | echo_message_buffer c-src/emacs/src/keyboard.c 171 | ||
| 1042 | echo_now c-src/emacs/src/keyboard.c /^echo_now (void)$/ | ||
| 1043 | echo_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}%$/ | ||
| 1047 | editItem pyt-src/server.py /^ def editItem(self):$/ | ||
| 1048 | editsite pyt-src/server.py /^ def editsite(self, site):$/ | ||
| 1049 | edituser 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}%$/ | ||
| 1055 | egetenv 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{}$/ | ||
| 1060 | ELEM_I c-src/h.h 3 | ||
| 1061 | \Elisp tex-src/texinfo.tex /^\\def\\Elisp{\\endgroup\\afterenvbreak}%$/ | ||
| 1062 | ELSRC make-src/Makefile /^ELSRC=TAGTEST.EL emacs\/lisp\/progmodes\/etags.el$/ | ||
| 1063 | emacs_abort c-src/emacs/src/lisp.h /^extern _Noreturn void emacs_abort (void) NO_INLINE/ | ||
| 1064 | EMACS_INT c-src/emacs/src/lisp.h 103 | ||
| 1065 | EMACS_INT c-src/emacs/src/lisp.h 91 | ||
| 1066 | EMACS_INT c-src/emacs/src/lisp.h 96 | ||
| 1067 | EMACS_INT_MAX c-src/emacs/src/lisp.h 105 | ||
| 1068 | EMACS_INT_MAX c-src/emacs/src/lisp.h 93 | ||
| 1069 | EMACS_INT_MAX c-src/emacs/src/lisp.h 98 | ||
| 1070 | EMACS_LISP_H c-src/emacs/src/lisp.h 22 | ||
| 1071 | EMACS_NAME c-src/etags.c 786 | ||
| 1072 | EMACS_UINT c-src/emacs/src/lisp.h 104 | ||
| 1073 | EMACS_UINT c-src/emacs/src/lisp.h 92 | ||
| 1074 | EMACS_UINT c-src/emacs/src/lisp.h 97 | ||
| 1075 | \emph tex-src/texinfo.tex /^\\def\\emph##1{\\realbackslash emph {##1}}$/ | ||
| 1076 | EmptyNmStr pas-src/common.pas /^function EmptyNmStr(* : NameString*);$/ | ||
| 1077 | /ENDBITMAP ps-src/rfc1245.ps /^\/ENDBITMAP {$/ | ||
| 1078 | end c-src/emacs/src/keyboard.c 8753 | ||
| 1079 | end c-src/emacs/src/lisp.h 2039 | ||
| 1080 | end 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}$/ | ||
| 1084 | endtoken c-src/etags.c /^#define endtoken(c) (_etk[CHAR (c)]) \/* c ends tok/ | ||
| 1085 | \endxxx tex-src/texinfo.tex /^\\def\\endxxx #1{%$/ | ||
| 1086 | enter_critical_section c-src/h.h 116 | ||
| 1087 | ENTRY c-src/sysdep.h /^#define ENTRY(name) \\$/ | ||
| 1088 | entry perl-src/htlmify-cystic 218 | ||
| 1089 | entry perl-src/htlmify-cystic 234 | ||
| 1090 | entry perl-src/htlmify-cystic 245 | ||
| 1091 | entry perl-src/htlmify-cystic 252 | ||
| 1092 | entry perl-src/htlmify-cystic 268 | ||
| 1093 | entry perl-src/htlmify-cystic 276 | ||
| 1094 | entry perl-src/htlmify-cystic 281 | ||
| 1095 | entry perl-src/htlmify-cystic 296 | ||
| 1096 | \entry tex-src/texinfo.tex /^\\def\\entry #1#2{\\begingroup$/ | ||
| 1097 | ENUM_BF c-src/emacs/src/lisp.h /^#define ENUM_BF(TYPE) enum TYPE$/ | ||
| 1098 | ENUM_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{%$/ | ||
| 1103 | Environment tex-src/gzip.texi /^@node Environment, Tapes, Advanced usage, Top$/ | ||
| 1104 | /E ps-src/rfc1245.ps /^\/E {lineto} bind def$/ | ||
| 1105 | EQ c-src/emacs/src/lisp.h /^# define EQ(x, y) lisp_h_EQ (x, y)$/ | ||
| 1106 | equalsKey objcpp-src/SimpleCalc.M /^- equalsKey:sender$/ | ||
| 1107 | EQUAL 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}%$/ | ||
| 1111 | erlang_atom c-src/etags.c /^erlang_atom (char *s)$/ | ||
| 1112 | erlang_attribute c-src/etags.c /^erlang_attribute (char *s)$/ | ||
| 1113 | erlang_func c-src/etags.c /^erlang_func (char *s, char *last)$/ | ||
| 1114 | Erlang_functions c-src/etags.c /^Erlang_functions (FILE *inf)$/ | ||
| 1115 | Erlang_help c-src/etags.c 567 | ||
| 1116 | Erlang_suffixes c-src/etags.c 565 | ||
| 1117 | ERLSRC make-src/Makefile /^ERLSRC=gs_dialog.erl lines.erl lists.erl$/ | ||
| 1118 | error c-src/emacs/src/lisp.h /^extern _Noreturn void error (const char *, ...) AT/ | ||
| 1119 | error c-src/etags.c /^error (const char *format, ...)$/ | ||
| 1120 | error c-src/etags.c /^static void error (const char *, ...) ATTRIBUTE_FO/ | ||
| 1121 | \errorE tex-src/texinfo.tex /^\\def\\errorE#1{$/ | ||
| 1122 | Error_Information/t ada-src/2ataspri.ads /^ type Error_Information is new Interfaces.C.POSI/ | ||
| 1123 | error_signaled c-src/etags.c 264 | ||
| 1124 | \error tex-src/texinfo.tex /^\\def\\error{\\leavevmode\\lower.7ex\\copy\\errorbox}$/ | ||
| 1125 | ERROR y-src/cccp.c 9 | ||
| 1126 | error y-src/cccp.y /^error (msg)$/ | ||
| 1127 | ERROR y-src/parse.y 304 | ||
| 1128 | ErrStrToNmStr 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}%$/ | ||
| 1133 | ETAGS12 make-src/Makefile /^ETAGS12: etags12 ${infiles}$/ | ||
| 1134 | ETAGS13 ETAGS14 ETAGS15 make-src/Makefile /^ETAGS13 ETAGS14 ETAGS15: etags% ${infiles}$/ | ||
| 1135 | etags.1.man make-src/Makefile /^etags.1.man: etags.1$/ | ||
| 1136 | etags el-src/emacs/lisp/progmodes/etags.el /^(defgroup etags nil "Tags tables."$/ | ||
| 1137 | etags-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-file-of-tag (&optional relative) ; Do/ | ||
| 1138 | etags_getcwd c-src/etags.c /^etags_getcwd (void)$/ | ||
| 1139 | etags-goto-tag-location el-src/emacs/lisp/progmodes/etags.el /^(defun etags-goto-tag-location (tag-info)$/ | ||
| 1140 | etags html-src/software.html /^Etags$/ | ||
| 1141 | etags-list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun etags-list-tags (file) ; Doc string?$/ | ||
| 1142 | etags make-src/Makefile /^etags: etags.c ${OBJS}$/ | ||
| 1143 | ETAGS make-src/Makefile /^ETAGS: FRC etags ${infiles}$/ | ||
| 1144 | ETAGS% make-src/Makefile /^ETAGS%: FRC etags% ${infiles}$/ | ||
| 1145 | etags-recognize-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-recognize-tags-table ()$/ | ||
| 1146 | etags-snarf-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-snarf-tag (&optional use-explicit) ; / | ||
| 1147 | etags-tags-apropos-additional el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-apropos-additional (regexp)$/ | ||
| 1148 | etags-tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-apropos (string) ; Doc string?$/ | ||
| 1149 | etags-tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-completion-table () ; Doc string/ | ||
| 1150 | etags-tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-included-tables () ; Doc string?/ | ||
| 1151 | etags-tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-table-files () ; Doc string?$/ | ||
| 1152 | etags-verify-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-verify-tags-table ()$/ | ||
| 1153 | etags--xref-find-definitions el-src/emacs/lisp/progmodes/etags.el /^(defun etags--xref-find-definitions (pattern &opti/ | ||
| 1154 | etags-xref-find-definitions-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar etags-xref-find-definitions-tag-order '(ta/ | ||
| 1155 | etags-xref-find el-src/emacs/lisp/progmodes/etags.el /^(defun etags-xref-find (action id)$/ | ||
| 1156 | etags--xref-limit el-src/emacs/lisp/progmodes/etags.el /^(defconst etags--xref-limit 1000)$/ | ||
| 1157 | \Etitlepage tex-src/texinfo.tex /^\\def\\Etitlepage{%$/ | ||
| 1158 | eval_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}$/ | ||
| 1161 | event-convert-list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, / | ||
| 1162 | event_head c-src/emacs/src/keyboard.c 11021 | ||
| 1163 | event-symbol-parse-modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/ | ||
| 1164 | event_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/ | ||
| 1170 | exact 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/ | ||
| 1174 | execute cp-src/c.C /^ void execute(CPluginCSCState& p, int w, in/ | ||
| 1175 | EXFUN c-src/emacs/src/lisp.h /^#define EXFUN(fnname, maxargs) \\$/ | ||
| 1176 | exit_critical_to_previous c-src/h.h 117 | ||
| 1177 | exit c-src/exit.c /^DEFUN(exit, (status), int status)$/ | ||
| 1178 | exit c-src/exit.strange_suffix /^DEFUN(exit, (status), int status)$/ | ||
| 1179 | Exit_LL_Task/p ada-src/2ataspri.adb /^ procedure Exit_LL_Task is$/ | ||
| 1180 | Exit_LL_Task/p ada-src/2ataspri.ads /^ procedure Exit_LL_Task;$/ | ||
| 1181 | exit-recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/ | ||
| 1182 | exp1 y-src/cccp.y 148 | ||
| 1183 | expand-abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/ | ||
| 1184 | expandmng prol-src/natded.prolog /^expandmng(var(V),var(V)).$/ | ||
| 1185 | expandmng_tree prol-src/natded.prolog /^expandmng_tree(tree(Rule,Syn:Sem,Trees),$/ | ||
| 1186 | expandmng_trees prol-src/natded.prolog /^expandmng_trees([],[]).$/ | ||
| 1187 | expandsyn 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}$/ | ||
| 1190 | explicitly-quoted-pending-delete-mode el-src/TAGTEST.EL /^(defalias (quote explicitly-quoted-pending-delete-/ | ||
| 1191 | exp_list y-src/parse.y 263 | ||
| 1192 | expression_value y-src/cccp.y 68 | ||
| 1193 | exp y-src/atest.y 2 | ||
| 1194 | exp y-src/cccp.y 156 | ||
| 1195 | exp y-src/cccp.y 185 | ||
| 1196 | exp y-src/parse.y 95 | ||
| 1197 | EXTAGS make-src/Makefile /^EXTAGS: extags ${infiles} Makefile$/ | ||
| 1198 | EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 3497 | ||
| 1199 | EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 4372 | ||
| 1200 | ExtractCommentInfo pas-src/common.pas /^procedure ExtractCommentInfo; (*($/ | ||
| 1201 | extras c-src/emacs/src/lisp.h 1603 | ||
| 1202 | extvar c-src/h.h 109 | ||
| 1203 | f1 c.c /^ f1 () { \/* Do something. *\/; }$/ | ||
| 1204 | f1 perl-src/kai-test.pl /^sub f1 {$/ | ||
| 1205 | f2 c.c /^void f2 () { \/* Do something. *\/; }$/ | ||
| 1206 | f2 perl-src/kai-test.pl /^sub main::f2 {$/ | ||
| 1207 | f3 perl-src/kai-test.pl /^sub f3 {$/ | ||
| 1208 | f4 perl-src/kai-test.pl /^sub Bar::f4 {$/ | ||
| 1209 | f5 perl-src/kai-test.pl /^sub f5 {$/ | ||
| 1210 | f6 perl-src/kai-test.pl /^sub f6 {$/ | ||
| 1211 | f7 perl-src/kai-test.pl /^sub f7 {$/ | ||
| 1212 | Fabbrev_expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/ | ||
| 1213 | Fabbrev_symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/ | ||
| 1214 | Fabort_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/ | ||
| 1216 | Fails_t c-src/h.h 5 | ||
| 1217 | /fakecolorsetup ps-src/rfc1245.ps /^\/fakecolorsetup {$/ | ||
| 1218 | FASTCFLAGS make-src/Makefile /^FASTCFLAGS=-O3 -finline-functions -ffast-math -fun/ | ||
| 1219 | FASTCFLAGSWARN make-src/Makefile /^FASTCFLAGSWARN=${WARNINGS} -Werror ${FASTCFLAGS}$/ | ||
| 1220 | fastctags make-src/Makefile /^fastctags:$/ | ||
| 1221 | fastetags make-src/Makefile /^fastetags:$/ | ||
| 1222 | fastmap_accurate c-src/emacs/src/regex.h 383 | ||
| 1223 | fastmap c-src/emacs/src/regex.h 355 | ||
| 1224 | fast_string_match_ignore_case c-src/emacs/src/lisp.h /^fast_string_match_ignore_case (Lisp_Object regexp,/ | ||
| 1225 | fatala c.c /^void fatala () __attribute__ ((noreturn));$/ | ||
| 1226 | fatal c-src/etags.c /^fatal (const char *s1, const char *s2)$/ | ||
| 1227 | f c.c 145 | ||
| 1228 | f c.c 156 | ||
| 1229 | f c.c 168 | ||
| 1230 | f c.c /^int f$/ | ||
| 1231 | Fclear_abbrev_table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, / | ||
| 1232 | Fclear_this_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/ | ||
| 1233 | Fcommand_error_default_function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/ | ||
| 1234 | fconst forth-src/test-forth.fth /^3.1415e fconstant fconst$/ | ||
| 1235 | f cp-src/c.C /^A<float,B<int> > A<B<float>,int>::f(A<int>* x) {}$/ | ||
| 1236 | f cp-src/c.C /^A<int>* f() {}$/ | ||
| 1237 | f cp-src/c.C /^class B<int> { void f() {} };$/ | ||
| 1238 | f cp-src/c.C /^int A<int>::f(A<int>* x) {}$/ | ||
| 1239 | f cp-src/c.C /^int f(A<int> x) {}$/ | ||
| 1240 | f cp-src/c.C /^ int f(){return 0;}; \/\/ first comment$/ | ||
| 1241 | f cp-src/c.C /^ void f() {}$/ | ||
| 1242 | f cp-src/fail.C /^int A::B::f() { return 2; }$/ | ||
| 1243 | f cp-src/fail.C /^ int f() { return 5; }$/ | ||
| 1244 | f c-src/c.c /^T f(){if(x){}$/ | ||
| 1245 | f c-src/h.h 89 | ||
| 1246 | Fcurrent_idle_time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/ | ||
| 1247 | Fcurrent_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("current-input-mode", Fcurrent_input_mode, / | ||
| 1248 | Fdefine_abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/ | ||
| 1249 | Fdefine_abbrev_table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/ | ||
| 1250 | Fdefine_global_abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/ | ||
| 1251 | Fdefine_mode_abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, / | ||
| 1252 | fdefunkey c-src/etags.c 2409 | ||
| 1253 | fdefunname c-src/etags.c 2410 | ||
| 1254 | fdesc c-src/etags.c 201 | ||
| 1255 | fdesc c-src/etags.c 212 | ||
| 1256 | fdHandler objc-src/Subprocess.m /^- fdHandler:(int)theFd$/ | ||
| 1257 | fdHandler objc-src/Subprocess.m /^fdHandler (int theFd, id self)$/ | ||
| 1258 | Fdiscard_input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/ | ||
| 1259 | fdp c-src/etags.c 217 | ||
| 1260 | Fevent_convert_list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, / | ||
| 1261 | Fevent_symbol_parse_modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/ | ||
| 1262 | Fexit_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/ | ||
| 1263 | Fexpand_abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/ | ||
| 1264 | ff cp-src/c.C /^ int ff(){return 1;};$/ | ||
| 1265 | F_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$/ | ||
| 1268 | field_of_play cp-src/conway.cpp 18 | ||
| 1269 | fignore c-src/etags.c 2416 | ||
| 1270 | file_end perl-src/htlmify-cystic /^sub file_end ()$/ | ||
| 1271 | file_index perl-src/htlmify-cystic 33 | ||
| 1272 | fileJoin php-src/lce_functions.php /^ function fileJoin()$/ | ||
| 1273 | filename_is_absolute c-src/etags.c /^filename_is_absolute (char *fn)$/ | ||
| 1274 | filenames c-src/etags.c 196 | ||
| 1275 | file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun file-of-tag (&optional relative)$/ | ||
| 1276 | file-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}}$/ | ||
| 1279 | file_tocs perl-src/htlmify-cystic 30 | ||
| 1280 | /fillprocs ps-src/rfc1245.ps /^\/fillprocs 32 array def$/ | ||
| 1281 | FILTER make-src/Makefile /^FILTER=grep -v '\\.[Cchefy][lor]*,[1-9][0-9]*' || t/ | ||
| 1282 | FINAL_FREE_BLOCKS c-src/emacs/src/gmalloc.c 135 | ||
| 1283 | Finalize_Cond/p ada-src/2ataspri.adb /^ procedure Finalize_Cond (Cond : in out Conditio/ | ||
| 1284 | Finalize_Cond/p ada-src/2ataspri.ads /^ procedure Finalize_Cond (Cond : in out Conditio/ | ||
| 1285 | Finalize_Lock/p ada-src/2ataspri.adb /^ procedure Finalize_Lock (L : in out Lock) is$/ | ||
| 1286 | Finalize_Lock/p ada-src/2ataspri.ads /^ procedure Finalize_Lock (L : in out Lock);$/ | ||
| 1287 | FINALIZERP c-src/emacs/src/lisp.h /^FINALIZERP (Lisp_Object x)$/ | ||
| 1288 | Finalize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Finalize_TAS_Cell (Cell : in out TAS_/ | ||
| 1289 | Finalize_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}$/ | ||
| 1291 | findcats prol-src/natded.prolog /^findcats([],Left,Left).$/ | ||
| 1292 | find_entries c-src/etags.c /^find_entries (FILE *inf)$/ | ||
| 1293 | \findex tex-src/texinfo.tex /^\\def\\findex {\\fnindex}$/ | ||
| 1294 | find-tag-default-function el-src/emacs/lisp/progmodes/etags.el /^(defcustom find-tag-default-function nil$/ | ||
| 1295 | find-tag el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag (tagname &optional next-p regexp-p/ | ||
| 1296 | find-tag-history el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-history nil) ; Doc string?$/ | ||
| 1297 | find-tag-hook el-src/emacs/lisp/progmodes/etags.el /^(defcustom find-tag-hook nil$/ | ||
| 1298 | find-tag-in-order el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-in-order (pattern$/ | ||
| 1299 | find-tag-interactive el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-interactive (prompt &optional no-d/ | ||
| 1300 | find-tag-marker-ring el-src/emacs/lisp/progmodes/etags.el /^(defvaralias 'find-tag-marker-ring 'xref--marker-r/ | ||
| 1301 | find-tag-marker-ring-length el-src/emacs/lisp/progmodes/etags.el /^(define-obsolete-variable-alias 'find-tag-marker-r/ | ||
| 1302 | find-tag-next-line-after-failure-p el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-next-line-after-failure-p nil$/ | ||
| 1303 | find-tag-noselect el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-noselect (tagname &optional next-p/ | ||
| 1304 | find-tag-other-frame el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-other-frame (tagname &optional nex/ | ||
| 1305 | find-tag-other-window el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-other-window (tagname &optional ne/ | ||
| 1306 | find-tag-regexp el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-regexp (regexp &optional next-p ot/ | ||
| 1307 | find-tag-regexp-next-line-after-failure-p el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-regexp-next-line-after-failure-p / | ||
| 1308 | find-tag-regexp-search-function el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-regexp-search-function nil$/ | ||
| 1309 | find-tag-regexp-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-regexp-tag-order nil$/ | ||
| 1310 | find-tag-search-function el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-search-function nil$/ | ||
| 1311 | find-tag-tag el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-tag (string)$/ | ||
| 1312 | find-tag-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-tag-order nil$/ | ||
| 1313 | find_user_signal_name c-src/emacs/src/keyboard.c /^find_user_signal_name (int sig)$/ | ||
| 1314 | finish_appendices perl-src/htlmify-cystic /^sub finish_appendices ()$/ | ||
| 1315 | finish_sections perl-src/htlmify-cystic /^sub finish_sections ()$/ | ||
| 1316 | finish_subsections perl-src/htlmify-cystic /^sub finish_subsections ()$/ | ||
| 1317 | finish_subsubsections perl-src/htlmify-cystic /^sub finish_subsubsections ()$/ | ||
| 1318 | \finishtitlepage tex-src/texinfo.tex /^\\def\\finishtitlepage{%$/ | ||
| 1319 | finlist c-src/etags.c 2414 | ||
| 1320 | Finput_pending_p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/ | ||
| 1321 | Finsert_abbrev_table_description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/ | ||
| 1322 | First100Chars pas-src/common.pas /^procedure First100Chars; (*($/ | ||
| 1323 | first c-src/emacs/src/gmalloc.c 151 | ||
| 1324 | fitchtreelist prol-src/natded.prolog /^fitchtreelist([]).$/ | ||
| 1325 | FIXNUM_BITS c-src/emacs/src/lisp.h 252 | ||
| 1326 | FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^#define FIXNUM_OVERFLOW_P(i) \\$/ | ||
| 1327 | FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (EQ, bool, (Lisp_Object x, Lisp_O/ | ||
| 1328 | fixup_locale c-src/emacs/src/lisp.h /^INLINE void fixup_locale (void) {}$/ | ||
| 1329 | flag2str pyt-src/server.py /^def flag2str(value, string):$/ | ||
| 1330 | flag c-src/getopt.h 83 | ||
| 1331 | flistseen c-src/etags.c 2415 | ||
| 1332 | FLOATP c-src/emacs/src/lisp.h /^# define FLOATP(x) lisp_h_FLOATP (x)$/ | ||
| 1333 | FLOAT_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{%$/ | ||
| 1338 | Fmake_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 $/ | ||
| 1350 | fn c-src/exit.c /^ void EXFUN((*fn[1]), (NOARGS));$/ | ||
| 1351 | fn c-src/exit.strange_suffix /^ void EXFUN((*fn[1]), (NOARGS));$/ | ||
| 1352 | fnin y-src/parse.y 68 | ||
| 1353 | \fnitemindex tex-src/texinfo.tex /^\\def\\fnitemindex #1{\\doind {fn}{\\code{#1}}}%$/ | ||
| 1354 | focus_set pyt-src/server.py /^ def focus_set(self):$/ | ||
| 1355 | follow_key c-src/emacs/src/keyboard.c /^follow_key (Lisp_Object keymap, Lisp_Object key)$/ | ||
| 1356 | fonts\rm tex-src/texinfo.tex /^ \\indexfonts\\rm \\tolerance=9500 \\advance\\baseline/ | ||
| 1357 | fonts tex-src/texinfo.tex /^\\obeyspaces \\obeylines \\ninett \\indexfonts \\rawbac/ | ||
| 1358 | foo1 ruby-src/test1.ru /^ attr_reader(:foo1, :bar1, # comment$/ | ||
| 1359 | foo2 ruby-src/test1.ru /^ alias_method ( :foo2, #cmmt$/ | ||
| 1360 | foobar2_ c-src/h.h 16 | ||
| 1361 | foobar2 c-src/h.h 20 | ||
| 1362 | foobar c.c /^extern void foobar (void) __attribute__ ((section / | ||
| 1363 | foobar c-src/c.c /^int foobar() {;}$/ | ||
| 1364 | foo==bar el-src/TAGTEST.EL /^(defun foo==bar () (message "hi")) ; Bug#5624$/ | ||
| 1365 | Foo::Bar perl-src/kai-test.pl /^package Foo::Bar;$/ | ||
| 1366 | foo c.c 150 | ||
| 1367 | foo c.c 166 | ||
| 1368 | foo c.c 167 | ||
| 1369 | foo c.c 178 | ||
| 1370 | foo c.c 189 | ||
| 1371 | foo cp-src/c.C 68 | ||
| 1372 | foo cp-src/c.C 79 | ||
| 1373 | foo cp-src/c.C /^ foo() {$/ | ||
| 1374 | foo cp-src/x.cc /^XX::foo()$/ | ||
| 1375 | foo c-src/h.h 18 | ||
| 1376 | (foo) forth-src/test-forth.fth /^: (foo) 1 ;$/ | ||
| 1377 | foo forth-src/test-forth.fth /^: foo (foo) ;$/ | ||
| 1378 | foo f-src/entry.for /^ character*(*) function foo()$/ | ||
| 1379 | foo f-src/entry.strange /^ character*(*) function foo()$/ | ||
| 1380 | foo f-src/entry.strange_suffix /^ character*(*) function foo()$/ | ||
| 1381 | Foo perl-src/kai-test.pl /^package Foo;$/ | ||
| 1382 | foo php-src/ptest.php /^foo()$/ | ||
| 1383 | foo ruby-src/test1.ru /^ attr_reader :foo$/ | ||
| 1384 | foo! ruby-src/test1.ru /^ def foo!$/ | ||
| 1385 | Fopen_dribble_file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/ | ||
| 1386 | foperator c-src/etags.c 2411 | ||
| 1387 | force_auto_save_soon c-src/emacs/src/keyboard.c /^force_auto_save_soon (void)$/ | ||
| 1388 | force_explicit_name c-src/etags.c 265 | ||
| 1389 | force_quit_count c-src/emacs/src/keyboard.c 10387 | ||
| 1390 | FOR_EACH_ALIST_VALUE c-src/emacs/src/lisp.h /^#define FOR_EACH_ALIST_VALUE(head_var, list_var, v/ | ||
| 1391 | FOR_EACH_TAIL c-src/emacs/src/lisp.h /^#define FOR_EACH_TAIL(hare, list, tortoise, n) \\$/ | ||
| 1392 | foreign_export merc-src/accumulator.m /^:- pragma foreign_export("C", unravel_univ(in, out/ | ||
| 1393 | formatSize 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 / | ||
| 1395 | Forth_help c-src/etags.c 573 | ||
| 1396 | FORTHSRC make-src/Makefile /^FORTHSRC=test-forth.fth$/ | ||
| 1397 | Forth_suffixes c-src/etags.c 571 | ||
| 1398 | Forth_words c-src/etags.c /^Forth_words (FILE *inf)$/ | ||
| 1399 | Fortran_functions c-src/etags.c /^Fortran_functions (FILE *inf)$/ | ||
| 1400 | Fortran_help c-src/etags.c 579 | ||
| 1401 | Fortran_suffixes c-src/etags.c 577 | ||
| 1402 | found c-src/emacs/src/lisp.h 2344 | ||
| 1403 | Fposn_at_point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/ | ||
| 1404 | Fposn_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 { $/ | ||
| 1406 | fracas html-src/software.html /^Fracas$/ | ||
| 1407 | /fraction ps-src/rfc1245.ps /^\/fraction \/currency \/guilsinglleft \/guilsinglright/ | ||
| 1408 | frag 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 $/ | ||
| 1411 | frame_local c-src/emacs/src/lisp.h 2341 | ||
| 1412 | FRAMEP c-src/emacs/src/lisp.h /^FRAMEP (Lisp_Object a)$/ | ||
| 1413 | FRC make-src/Makefile /^FRC:;$/ | ||
| 1414 | Fread_key_sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/ | ||
| 1415 | Fread_key_sequence_vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/ | ||
| 1416 | Frecent_keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, / | ||
| 1417 | Frecursion_depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/ | ||
| 1418 | Frecursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/ | ||
| 1419 | free c-src/emacs/src/gmalloc.c 166 | ||
| 1420 | free c-src/emacs/src/gmalloc.c 1719 | ||
| 1421 | free c-src/emacs/src/gmalloc.c 67 | ||
| 1422 | free c-src/emacs/src/gmalloc.c 72 | ||
| 1423 | _free c-src/emacs/src/gmalloc.c /^_free (void *ptr)$/ | ||
| 1424 | free c-src/emacs/src/gmalloc.c /^free (void *ptr)$/ | ||
| 1425 | free_fdesc c-src/etags.c /^free_fdesc (register fdesc *fdp)$/ | ||
| 1426 | FREEFLOOD c-src/emacs/src/gmalloc.c 1858 | ||
| 1427 | free_for prol-src/natded.prolog /^free_for(var(_),_,_).$/ | ||
| 1428 | freehook 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)$/ | ||
| 1431 | free_regexps c-src/etags.c /^free_regexps (void)$/ | ||
| 1432 | free_tree c-src/etags.c /^free_tree (register node *np)$/ | ||
| 1433 | free_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/ | ||
| 1436 | Freset_this_command_lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/ | ||
| 1437 | fresh_vars prol-src/natded.prolog /^fresh_vars(var(V),var(V)).$/ | ||
| 1438 | Fset_input_interrupt_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/ | ||
| 1439 | Fset_input_meta_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/ | ||
| 1440 | Fset_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/ | ||
| 1441 | Fset_output_flow_control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/ | ||
| 1442 | Fset_quit_char c-src/emacs/src/keyboard.c /^DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_/ | ||
| 1443 | FSRC make-src/Makefile /^FSRC=entry.for entry.strange_suffix entry.strange$/ | ||
| 1444 | fstartlist c-src/etags.c 2413 | ||
| 1445 | Fsuspend_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/ | ||
| 1447 | F_takeprec c-src/etags.c /^F_takeprec (void)$/ | ||
| 1448 | Fthis_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/ | ||
| 1449 | Fthis_command_keys_vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/ | ||
| 1450 | Fthis_single_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/ | ||
| 1451 | Fthis_single_command_raw_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-raw-keys", Fthis_singl/ | ||
| 1452 | Ftop_level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, / | ||
| 1453 | Ftrack_mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/ | ||
| 1454 | FUN0 y-src/parse.y /^yylex FUN0()$/ | ||
| 1455 | FUN1 y-src/parse.y /^str_to_col FUN1(char **,str)$/ | ||
| 1456 | FUN1 y-src/parse.y /^yyerror FUN1(char *, s)$/ | ||
| 1457 | FUN2 y-src/parse.y /^make_list FUN2(YYSTYPE, car, YYSTYPE, cdr)$/ | ||
| 1458 | FUN2 y-src/parse.y /^parse_cell_or_range FUN2(char **,ptr, struct rng */ | ||
| 1459 | func1 c.c /^int func1$/ | ||
| 1460 | func2 c.c /^int func2 (a,b$/ | ||
| 1461 | funcboo c.c /^bool funcboo ()$/ | ||
| 1462 | func c-src/emacs/src/lisp.h /^ void (*func) (int);$/ | ||
| 1463 | func c-src/emacs/src/lisp.h /^ void (*func) (Lisp_Object);$/ | ||
| 1464 | func c-src/emacs/src/lisp.h /^ void (*func) (void *);$/ | ||
| 1465 | func c-src/emacs/src/lisp.h /^ void (*func) (void);$/ | ||
| 1466 | func_key_syms c-src/emacs/src/keyboard.c 4626 | ||
| 1467 | funcpointer c-src/emacs/src/lisp.h 2126 | ||
| 1468 | funcptr c-src/h.h /^ fu int (*funcptr) (void *ptr);$/ | ||
| 1469 | function c-src/emacs/src/lisp.h 1685 | ||
| 1470 | function c-src/emacs/src/lisp.h 2197 | ||
| 1471 | function c-src/emacs/src/lisp.h 2985 | ||
| 1472 | function c-src/emacs/src/lisp.h 694 | ||
| 1473 | function c-src/etags.c 194 | ||
| 1474 | FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 4766 | ||
| 1475 | FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5061 | ||
| 1476 | FUNCTIONP c-src/emacs/src/lisp.h /^FUNCTIONP (Lisp_Object obj)$/ | ||
| 1477 | functionp c-src/emacs/src/lisp.h /^functionp (Lisp_Object object)$/ | ||
| 1478 | Funexpand_abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/ | ||
| 1479 | fval forth-src/test-forth.fth /^fconst fvalue fval$/ | ||
| 1480 | fvar forth-src/test-forth.fth /^fvariable fvar$/ | ||
| 1481 | fvdef c-src/etags.c 2418 | ||
| 1482 | fvextern c-src/etags.c 2420 | ||
| 1483 | fvnameseen c-src/etags.c 2412 | ||
| 1484 | fvnone c-src/etags.c 2408 | ||
| 1485 | fwd c-src/emacs/src/lisp.h 2346 | ||
| 1486 | fwd c-src/emacs/src/lisp.h 690 | ||
| 1487 | Fx_get_selection_internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/ | ||
| 1488 | Fx_get_selection_internal c.c /^ Fx_get_selection_internal, Sx_get_selection/ | ||
| 1489 | Fy_get_selection_internal c.c /^ Fy_get_selection_internal, Sy_get_selection_/ | ||
| 1490 | galileo html-src/software.html /^GaliLEO$/ | ||
| 1491 | GatherControls pyt-src/server.py /^ def GatherControls(self):$/ | ||
| 1492 | gather pyt-src/server.py /^ def gather(self):$/ | ||
| 1493 | GCALIGNED c-src/emacs/src/lisp.h 288 | ||
| 1494 | GCALIGNED c-src/emacs/src/lisp.h 290 | ||
| 1495 | GCALIGNMENT c-src/emacs/src/lisp.h 243 | ||
| 1496 | gc_aset c-src/emacs/src/lisp.h /^gc_aset (Lisp_Object array, ptrdiff_t idx, Lisp_Ob/ | ||
| 1497 | GC_MAKE_GCPROS_NOOPS c-src/emacs/src/lisp.h 3172 | ||
| 1498 | gcmarkbit c-src/emacs/src/lisp.h 1974 | ||
| 1499 | gcmarkbit c-src/emacs/src/lisp.h 1981 | ||
| 1500 | gcmarkbit c-src/emacs/src/lisp.h 2035 | ||
| 1501 | gcmarkbit c-src/emacs/src/lisp.h 2113 | ||
| 1502 | gcmarkbit c-src/emacs/src/lisp.h 2204 | ||
| 1503 | gcmarkbit c-src/emacs/src/lisp.h 656 | ||
| 1504 | GC_MARK_STACK_CHECK_GCPROS c-src/emacs/src/lisp.h 3173 | ||
| 1505 | GC_MARK_STACK c-src/emacs/src/lisp.h 3177 | ||
| 1506 | GCPRO1 c-src/emacs/src/lisp.h /^#define GCPRO1(a) \\$/ | ||
| 1507 | GCPRO1 c-src/emacs/src/lisp.h /^#define GCPRO1(varname) ((void) gcpro1)$/ | ||
| 1508 | GCPRO2 c-src/emacs/src/lisp.h /^#define GCPRO2(a, b) \\$/ | ||
| 1509 | GCPRO2 c-src/emacs/src/lisp.h /^#define GCPRO2(varname1, varname2) ((void) gcpro2,/ | ||
| 1510 | GCPRO3 c-src/emacs/src/lisp.h /^#define GCPRO3(a, b, c) \\$/ | ||
| 1511 | GCPRO3 c-src/emacs/src/lisp.h /^#define GCPRO3(varname1, varname2, varname3) \\$/ | ||
| 1512 | GCPRO4 c-src/emacs/src/lisp.h /^#define GCPRO4(a, b, c, d) \\$/ | ||
| 1513 | GCPRO4 c-src/emacs/src/lisp.h /^#define GCPRO4(varname1, varname2, varname3, varna/ | ||
| 1514 | GCPRO5 c-src/emacs/src/lisp.h /^#define GCPRO5(a, b, c, d, e) \\$/ | ||
| 1515 | GCPRO5 c-src/emacs/src/lisp.h /^#define GCPRO5(varname1, varname2, varname3, varna/ | ||
| 1516 | GCPRO6 c-src/emacs/src/lisp.h /^#define GCPRO6(a, b, c, d, e, f) \\$/ | ||
| 1517 | GCPRO6 c-src/emacs/src/lisp.h /^#define GCPRO6(varname1, varname2, varname3, varna/ | ||
| 1518 | GCPRO7 c-src/emacs/src/lisp.h /^#define GCPRO7(a, b, c, d, e, f, g) \\$/ | ||
| 1519 | GCPRO7 c-src/emacs/src/lisp.h /^#define GCPRO7(a, b, c, d, e, f, g) (GCPRO6 (a, b,/ | ||
| 1520 | gcpro c-src/emacs/src/lisp.h 3042 | ||
| 1521 | gcpro c-src/emacs/src/lisp.h 3132 | ||
| 1522 | g cp-src/c.C /^ int g(){return 2;};$/ | ||
| 1523 | GCTYPEBITS c-src/emacs/src/lisp.h 67 | ||
| 1524 | GCTYPEBITS c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (int, GCTYPEBITS)$/ | ||
| 1525 | GC_USE_GCPROS_AS_BEFORE c-src/emacs/src/lisp.h 3171 | ||
| 1526 | GC_USE_GCPROS_CHECK_ZOMBIES c-src/emacs/src/lisp.h 3174 | ||
| 1527 | genalgorithm html-src/algrthms.html /^Generating the Data<\/font><\/i><\/b>$/ | ||
| 1528 | generate_warning merc-src/accumulator.m /^:- pred generate_warning(module_info::in, prog_var/ | ||
| 1529 | generate_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)$/ | ||
| 1531 | generic_object cp-src/clheir.cpp /^generic_object::generic_object(void)$/ | ||
| 1532 | generic_object cp-src/clheir.hpp 13 | ||
| 1533 | GENERIC_PTR y-src/cccp.y 56 | ||
| 1534 | GENERIC_PTR y-src/cccp.y 58 | ||
| 1535 | gen_help_event c-src/emacs/src/keyboard.c /^gen_help_event (Lisp_Object help, Lisp_Object fram/ | ||
| 1536 | GEQ y-src/cccp.c 15 | ||
| 1537 | getArchs objc-src/PackInsp.m /^-(void)getArchs$/ | ||
| 1538 | getcjmp c-src/emacs/src/keyboard.c 147 | ||
| 1539 | get_compressor_from_suffix c-src/etags.c /^get_compressor_from_suffix (char *file, char **ext/ | ||
| 1540 | get_contiguous_space c-src/emacs/src/gmalloc.c /^get_contiguous_space (ptrdiff_t size, void *positi/ | ||
| 1541 | get_current_dir_name c-src/emacs/src/gmalloc.c 33 | ||
| 1542 | getDomainNames php-src/lce_functions.php /^ function getDomainNames()$/ | ||
| 1543 | getFoo lua-src/test.lua /^function Cube.data.getFoo ()$/ | ||
| 1544 | get_input_pending c-src/emacs/src/keyboard.c /^get_input_pending (int flags)$/ | ||
| 1545 | get_language_from_filename c-src/etags.c /^get_language_from_filename (char *file, int case_s/ | ||
| 1546 | get_language_from_interpreter c-src/etags.c /^get_language_from_interpreter (char *interpreter)$/ | ||
| 1547 | get_language_from_langname c-src/etags.c /^get_language_from_langname (const char *name)$/ | ||
| 1548 | GetLayerByName lua-src/allegro.lua /^function GetLayerByName (name)$/ | ||
| 1549 | get_layer_by_name lua-src/allegro.lua /^local function get_layer_by_name (sprite, layer, n/ | ||
| 1550 | GetNameList pas-src/common.pas /^function GetNameList; (* : BinNodePointer;*)$/ | ||
| 1551 | GetNewNameListNode pas-src/common.pas /^function GetNewNameListNode;(*($/ | ||
| 1552 | getopt1.o make-src/Makefile /^getopt1.o: emacs\/lib-src\/getopt1.c$/ | ||
| 1553 | _GETOPT_H c-src/getopt.h 19 | ||
| 1554 | GETOPTOBJS make-src/Makefile /^GETOPTOBJS= #getopt.o getopt1.o$/ | ||
| 1555 | getopt.o make-src/Makefile /^getopt.o: emacs\/lib-src\/getopt.c$/ | ||
| 1556 | getopt perl-src/yagrip.pl /^sub getopt {$/ | ||
| 1557 | Get_Own_Priority/f ada-src/2ataspri.adb /^ function Get_Own_Priority return System.Any_Pri/ | ||
| 1558 | Get_Own_Priority/f ada-src/2ataspri.ads /^ function Get_Own_Priority return System.Any_Pri/ | ||
| 1559 | getPath objc-src/PackInsp.m /^-(const char *)getPath:(char *)buf forType:(const / | ||
| 1560 | getPOReader php-src/lce_functions.php /^ function &getPOReader($domain)$/ | ||
| 1561 | getPos lua-src/test.lua /^function Circle.getPos ()$/ | ||
| 1562 | getPos lua-src/test.lua /^function Rectangle.getPos ()$/ | ||
| 1563 | Get_Priority/f ada-src/2ataspri.adb /^ function Get_Priority (T : TCB_Ptr) return Syst/ | ||
| 1564 | Get_Priority/f ada-src/2ataspri.ads /^ function Get_Priority (T : TCB_Ptr) return Syst/ | ||
| 1565 | getptys objc-src/Subprocess.m /^getptys (int *master, int *slave)$/ | ||
| 1566 | get_tag c-src/etags.c /^get_tag (register char *bp, char **namepp)$/ | ||
| 1567 | getTextDomains php-src/lce_functions.php /^ function getTextDomains($lines)$/ | ||
| 1568 | gettext php-src/lce_functions.php /^ function gettext($msgid)$/ | ||
| 1569 | GetTextRef pas-src/common.pas /^function GetTextRef;(*($/ | ||
| 1570 | GetUniqueLayerName lua-src/allegro.lua /^function GetUniqueLayerName ()$/ | ||
| 1571 | get_word c-src/tab.c /^static char *get_word(char **str, char delim)$/ | ||
| 1572 | GE y-src/parse.c 8 | ||
| 1573 | ggg c-src/h.h 10 | ||
| 1574 | ghi1 c-src/h.h 36 | ||
| 1575 | ghi2 c-src/h.h 39 | ||
| 1576 | giallo cp-src/c.C 40 | ||
| 1577 | glider 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 { $/ | ||
| 1580 | gnu html-src/software.html /^Free software that I wrote for the GNU project or / | ||
| 1581 | _GNU_SOURCE c-src/etags.c 94 | ||
| 1582 | gobble_input c-src/emacs/src/keyboard.c /^gobble_input (void)$/ | ||
| 1583 | goto-tag-location-function el-src/emacs/lisp/progmodes/etags.el /^(defvar goto-tag-location-function nil$/ | ||
| 1584 | goto_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 {$/ | ||
| 1588 | GREEN cp-src/screen.hpp 14 | ||
| 1589 | \group tex-src/texinfo.tex /^\\def\\group{\\begingroup$/ | ||
| 1590 | GROW_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 / | ||
| 1594 | handle_async_input c-src/emacs/src/keyboard.c /^handle_async_input (void)$/ | ||
| 1595 | handle_input_available_signal c-src/emacs/src/keyboard.c /^handle_input_available_signal (int sig)$/ | ||
| 1596 | handle_interrupt c-src/emacs/src/keyboard.c /^handle_interrupt (bool in_signal_handler)$/ | ||
| 1597 | handle_interrupt_signal c-src/emacs/src/keyboard.c /^handle_interrupt_signal (int sig)$/ | ||
| 1598 | handleList pyt-src/server.py /^ def handleList(self, event):$/ | ||
| 1599 | handleNew pyt-src/server.py /^ def handleNew(self, event):$/ | ||
| 1600 | handler c-src/emacs/src/lisp.h 3023 | ||
| 1601 | handlertype c-src/emacs/src/lisp.h 3021 | ||
| 1602 | handle_user_signal c-src/emacs/src/keyboard.c /^handle_user_signal (int sig)$/ | ||
| 1603 | has_arg c-src/getopt.h 82 | ||
| 1604 | hash c-src/emacs/src/lisp.h 1843 | ||
| 1605 | hash c-src/etags.c /^hash (const char *str, int len)$/ | ||
| 1606 | hashfn c-src/emacs/src/lisp.h /^ EMACS_UINT (*hashfn) (struct hash_table_test *t,/ | ||
| 1607 | HASH_HASH c-src/emacs/src/lisp.h /^HASH_HASH (struct Lisp_Hash_Table *h, ptrdiff_t id/ | ||
| 1608 | HASH_INDEX c-src/emacs/src/lisp.h /^HASH_INDEX (struct Lisp_Hash_Table *h, ptrdiff_t i/ | ||
| 1609 | HASH_KEY c-src/emacs/src/lisp.h /^HASH_KEY (struct Lisp_Hash_Table *h, ptrdiff_t idx/ | ||
| 1610 | HASH_NEXT c-src/emacs/src/lisp.h /^HASH_NEXT (struct Lisp_Hash_Table *h, ptrdiff_t id/ | ||
| 1611 | HASH_TABLE_P c-src/emacs/src/lisp.h /^HASH_TABLE_P (Lisp_Object a)$/ | ||
| 1612 | HASH_TABLE_SIZE c-src/emacs/src/lisp.h /^HASH_TABLE_SIZE (struct Lisp_Hash_Table *h)$/ | ||
| 1613 | hash_table_test c-src/emacs/src/lisp.h 1805 | ||
| 1614 | HASH_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}$/ | ||
| 1617 | HAVE_NTGUI c-src/etags.c 116 | ||
| 1618 | hdr c-src/emacs/src/gmalloc.c 1860 | ||
| 1619 | header c-src/emacs/src/lisp.h 1371 | ||
| 1620 | header c-src/emacs/src/lisp.h 1388 | ||
| 1621 | header c-src/emacs/src/lisp.h 1581 | ||
| 1622 | header c-src/emacs/src/lisp.h 1610 | ||
| 1623 | header c-src/emacs/src/lisp.h 1672 | ||
| 1624 | header c-src/emacs/src/lisp.h 1826 | ||
| 1625 | header_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}$/ | ||
| 1638 | head_table c-src/emacs/src/keyboard.c 11027 | ||
| 1639 | _heapbase c-src/emacs/src/gmalloc.c 355 | ||
| 1640 | HEAP 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 | ||
| 1644 | heapsize c-src/emacs/src/gmalloc.c 361 | ||
| 1645 | hello scm-src/test.scm /^(define hello "Hello, Emacs!")$/ | ||
| 1646 | hello scm-src/test.scm /^(set! hello "Hello, world!")$/ | ||
| 1647 | hello-world scm-src/test.scm /^(define (hello-world)$/ | ||
| 1648 | help_char_p c-src/emacs/src/keyboard.c /^help_char_p (Lisp_Object c)$/ | ||
| 1649 | help c-src/etags.c 193 | ||
| 1650 | help_form_saved_window_configs c-src/emacs/src/keyboard.c 2156 | ||
| 1651 | helpPanel objcpp-src/SimpleCalc.M /^- helpPanel:sender$/ | ||
| 1652 | helpwin pyt-src/server.py /^def helpwin(helpdict):$/ | ||
| 1653 | hide_cursor cp-src/screen.cpp /^void hide_cursor(void)$/ | ||
| 1654 | hlds 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 { $/ | ||
| 1658 | HTML_help c-src/etags.c 584 | ||
| 1659 | HTML_labels c-src/etags.c /^HTML_labels (FILE *inf)$/ | ||
| 1660 | HTMLSRC make-src/Makefile /^HTMLSRC=softwarelibero.html index.shtml algrthms.h/ | ||
| 1661 | HTML_suffixes c-src/etags.c 582 | ||
| 1662 | htmltreelist prol-src/natded.prolog /^htmltreelist([]).$/ | ||
| 1663 | /hx ps-src/rfc1245.ps /^\/hx { $/ | ||
| 1664 | hybrid_aligned_alloc c-src/emacs/src/gmalloc.c /^hybrid_aligned_alloc (size_t alignment, size_t siz/ | ||
| 1665 | hybrid_calloc c-src/emacs/src/gmalloc.c /^hybrid_calloc (size_t nmemb, size_t size)$/ | ||
| 1666 | hybrid_free c-src/emacs/src/gmalloc.c /^hybrid_free (void *ptr)$/ | ||
| 1667 | hybrid_get_current_dir_name c-src/emacs/src/gmalloc.c /^hybrid_get_current_dir_name (void)$/ | ||
| 1668 | hybrid_malloc c-src/emacs/src/gmalloc.c /^hybrid_malloc (size_t size)$/ | ||
| 1669 | hybrid_realloc c-src/emacs/src/gmalloc.c /^hybrid_realloc (void *ptr, size_t size)$/ | ||
| 1670 | hypothetical_mem prol-src/natded.prolog /^hypothetical_mem(fi(N),Ass,_):-$/ | ||
| 1671 | /iacute ps-src/rfc1245.ps /^\/iacute \/igrave \/icircumflex \/idieresis \/ntilde \/o/ | ||
| 1672 | ialpage tex-src/texinfo.tex /^ \\availdimen@=\\pageheight \\advance\\availdimen@ by/ | ||
| 1673 | ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\pa/ | ||
| 1674 | ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\parti/ | ||
| 1675 | ialpage tex-src/texinfo.tex /^\\newbox\\partialpage$/ | ||
| 1676 | ialpage= tex-src/texinfo.tex /^ \\output={\\global\\setbox\\partialpage=$/ | ||
| 1677 | i c.c 169 | ||
| 1678 | /Icircumflex ps-src/rfc1245.ps /^\/Icircumflex \/Idieresis \/Igrave \/Oacute \/Ocircumfl/ | ||
| 1679 | i cp-src/c.C 132 | ||
| 1680 | /ic ps-src/rfc1245.ps /^\/ic [ $/ | ||
| 1681 | i c-src/c.c 2 | ||
| 1682 | i c-src/emacs/src/lisp.h 4673 | ||
| 1683 | i c-src/emacs/src/lisp.h 4679 | ||
| 1684 | i c-src/emacs/src/lisp.h 567 | ||
| 1685 | identify_goal_type merc-src/accumulator.m /^:- pred identify_goal_type(pred_id::in, proc_id::i/ | ||
| 1686 | identify_out_and_out_prime merc-src/accumulator.m /^:- pred identify_out_and_out_prime(module_info::in/ | ||
| 1687 | identify_recursive_calls merc-src/accumulator.m /^:- pred identify_recursive_calls(pred_id::in, proc/ | ||
| 1688 | idx c-src/emacs/src/lisp.h 3150 | ||
| 1689 | IEEE_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/ | ||
| 1702 | ignore_case c-src/etags.c 266 | ||
| 1703 | ignore_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$/ | ||
| 1708 | ill=\relax tex-src/texinfo.tex /^\\let\\refill=\\relax$/ | ||
| 1709 | IMAGEP c-src/emacs/src/lisp.h /^IMAGEP (Lisp_Object x)$/ | ||
| 1710 | immediate_quit c-src/emacs/src/keyboard.c 174 | ||
| 1711 | impatto html-src/softwarelibero.html /^Impatto pratico del software libero$/ | ||
| 1712 | implementation merc-src/accumulator.m /^:- implementation.$/ | ||
| 1713 | inattribute c-src/etags.c 2400 | ||
| 1714 | inc 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}$/ | ||
| 1719 | index 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/ | ||
| 1729 | infabsdir c-src/etags.c 206 | ||
| 1730 | infabsname c-src/etags.c 205 | ||
| 1731 | infiles make-src/Makefile /^infiles = $(filter-out ${NONSRCS},${SRCS}) srclist/ | ||
| 1732 | infname 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}$/ | ||
| 1738 | info c-src/emacs/src/gmalloc.c 157 | ||
| 1739 | infoPanel 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}$/ | ||
| 1750 | inita c.c /^static void inita () {}$/ | ||
| 1751 | initb c.c /^static void initb () {}$/ | ||
| 1752 | init_control c.c 239 | ||
| 1753 | init c-src/etags.c /^init (void)$/ | ||
| 1754 | Initialize_Cond/p ada-src/2ataspri.adb /^ procedure Initialize_Cond (Cond : in out Condit/ | ||
| 1755 | Initialize_Cond/p ada-src/2ataspri.ads /^ procedure Initialize_Cond (Cond : in out Condit/ | ||
| 1756 | initialize_goal_store merc-src/accumulator.m /^:- func initialize_goal_store(list(hlds_goal), ins/ | ||
| 1757 | Initialize_LL_Tasks/p ada-src/2ataspri.adb /^ procedure Initialize_LL_Tasks (T : TCB_Ptr) is$/ | ||
| 1758 | Initialize_LL_Tasks/p ada-src/2ataspri.ads /^ procedure Initialize_LL_Tasks (T : TCB_Ptr);$/ | ||
| 1759 | Initialize_Lock/p ada-src/2ataspri.adb /^ procedure Initialize_Lock$/ | ||
| 1760 | Initialize_Lock/p ada-src/2ataspri.ads /^ procedure Initialize_Lock (Prio : System.Any_Pr/ | ||
| 1761 | initialize-new-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun initialize-new-tags-table ()$/ | ||
| 1762 | initialize_random_junk y-src/cccp.y /^initialize_random_junk ()$/ | ||
| 1763 | InitializeStringPackage pas-src/common.pas /^procedure InitializeStringPackage;$/ | ||
| 1764 | Initialize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Initialize_TAS_Cell (Cell : out TAS_C/ | ||
| 1765 | Initialize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Initialize_TAS_Cell (Cell : out TA/ | ||
| 1766 | initial_kboard c-src/emacs/src/keyboard.c 84 | ||
| 1767 | \initial tex-src/texinfo.tex /^\\def\\initial #1{%$/ | ||
| 1768 | init_kboard c-src/emacs/src/keyboard.c /^init_kboard (KBOARD *kb, Lisp_Object type)$/ | ||
| 1769 | init_keyboard c-src/emacs/src/keyboard.c /^init_keyboard (void)$/ | ||
| 1770 | InitNameList pas-src/common.pas /^procedure InitNameList;$/ | ||
| 1771 | InitNameStringPool pas-src/common.pas /^procedure InitNameStringPool;$/ | ||
| 1772 | init objcpp-src/SimpleCalc.M /^- init$/ | ||
| 1773 | init objc-src/Subprocess.m /^ andStdErr:(BOOL)wantsStdErr$/ | ||
| 1774 | init 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/ | ||
| 1781 | init_registry cp-src/clheir.cpp /^void init_registry(void)$/ | ||
| 1782 | init_tool_bar_items c-src/emacs/src/keyboard.c /^init_tool_bar_items (Lisp_Object reuse)$/ | ||
| 1783 | Inner1/b ada-src/etags-test-for.ada /^ package body Inner1 is$/ | ||
| 1784 | Inner1/b ada-src/waroquiers.ada /^ package body Inner1 is$/ | ||
| 1785 | Inner1/s ada-src/etags-test-for.ada /^ package Inner1 is$/ | ||
| 1786 | Inner1/s ada-src/waroquiers.ada /^ package Inner1 is$/ | ||
| 1787 | Inner2/b ada-src/etags-test-for.ada /^ package body Inner2 is$/ | ||
| 1788 | Inner2/b ada-src/waroquiers.ada /^ package body Inner2 is$/ | ||
| 1789 | Inner2/s ada-src/etags-test-for.ada /^ package Inner2 is$/ | ||
| 1790 | Inner2/s ada-src/waroquiers.ada /^ package Inner2 is$/ | ||
| 1791 | input_available_clear_time c-src/emacs/src/keyboard.c 324 | ||
| 1792 | INPUT_EVENT_POS_MAX c-src/emacs/src/keyboard.c 3698 | ||
| 1793 | INPUT_EVENT_POS_MIN c-src/emacs/src/keyboard.c 3701 | ||
| 1794 | input_pending c-src/emacs/src/keyboard.c 239 | ||
| 1795 | input-pending-p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/ | ||
| 1796 | input_polling_used c-src/emacs/src/keyboard.c /^input_polling_used (void)$/ | ||
| 1797 | input_was_pending c-src/emacs/src/keyboard.c 287 | ||
| 1798 | insert-abbrev-table-description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/ | ||
| 1799 | insertion_type c-src/emacs/src/lisp.h 1989 | ||
| 1800 | insertname pas-src/common.pas /^function insertname;(*($/ | ||
| 1801 | INSERT_TREE_NODE pas-src/common.pas /^procedure INSERT_TREE_NODE;(*( $/ | ||
| 1802 | Install_Abort_Handler/p ada-src/2ataspri.adb /^ procedure Install_Abort_Handler (Handler : Abor/ | ||
| 1803 | Install_Abort_Handler/p ada-src/2ataspri.ads /^ procedure Install_Abort_Handler (Handler : Abor/ | ||
| 1804 | Install_Error_Handler/p ada-src/2ataspri.adb /^ procedure Install_Error_Handler (Handler : Syst/ | ||
| 1805 | Install_Error_Handler/p ada-src/2ataspri.ads /^ procedure Install_Error_Handler (Handler : Syst/ | ||
| 1806 | instance_method_equals= ruby-src/test.rb /^ def instance_method_equals=$/ | ||
| 1807 | instance_method_exclamation! ruby-src/test.rb /^ def instance_method_exclamation!$/ | ||
| 1808 | instance_method_question? ruby-src/test.rb /^ def instance_method_question?$/ | ||
| 1809 | instance_method ruby-src/test.rb /^ def instance_method$/ | ||
| 1810 | INSTANTIATE_MDIAGARRAY_FRIENDS cp-src/MDiagArray2.h /^#define INSTANTIATE_MDIAGARRAY_FRIENDS(T) \\$/ | ||
| 1811 | instruct c-src/etags.c 2527 | ||
| 1812 | instr y-src/parse.y 81 | ||
| 1813 | INT_BIT c-src/emacs/src/gmalloc.c 124 | ||
| 1814 | INT c-src/h.h 32 | ||
| 1815 | integer c-src/emacs/src/lisp.h 2127 | ||
| 1816 | integer_overflow y-src/cccp.y /^integer_overflow ()$/ | ||
| 1817 | INTEGERP c-src/emacs/src/lisp.h /^# define INTEGERP(x) lisp_h_INTEGERP (x)$/ | ||
| 1818 | INTEGER_TO_CONS c-src/emacs/src/lisp.h /^#define INTEGER_TO_CONS(i) \\$/ | ||
| 1819 | integertonmstr pas-src/common.pas /^function integertonmstr; (* (TheInteger : integer)/ | ||
| 1820 | integer y-src/cccp.y 112 | ||
| 1821 | intensity1 f-src/entry.for /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/ | ||
| 1822 | intensity1 f-src/entry.strange /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/ | ||
| 1823 | intensity1 f-src/entry.strange_suffix /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/ | ||
| 1824 | interface_locate c-src/c.c /^interface_locate(void)$/ | ||
| 1825 | interface 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} \\/ | ||
| 1832 | internal_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/ | ||
| 1834 | intern c-src/emacs/src/lisp.h /^intern (const char *str)$/ | ||
| 1835 | intern_c_string c-src/emacs/src/lisp.h /^intern_c_string (const char *str)$/ | ||
| 1836 | interned c-src/emacs/src/lisp.h 672 | ||
| 1837 | interpreters c-src/etags.c 197 | ||
| 1838 | interrupt_input_blocked c-src/emacs/src/keyboard.c 76 | ||
| 1839 | interrupt_input_blocked c-src/emacs/src/lisp.h 3048 | ||
| 1840 | interrupt_input c-src/emacs/src/keyboard.c 328 | ||
| 1841 | interrupts_deferred c-src/emacs/src/keyboard.c 331 | ||
| 1842 | INTERVAL c-src/emacs/src/lisp.h 1149 | ||
| 1843 | INTMASK c-src/emacs/src/lisp.h 437 | ||
| 1844 | int merc-src/accumulator.m /^:- import_module int.$/ | ||
| 1845 | intNumber go-src/test1.go 13 | ||
| 1846 | intoken c-src/etags.c /^#define intoken(c) (_itk[CHAR (c)]) \/* c can be in/ | ||
| 1847 | intspec c-src/emacs/src/lisp.h 1688 | ||
| 1848 | INTTYPEBITS c-src/emacs/src/lisp.h 249 | ||
| 1849 | INT_TYPE_SIZE y-src/cccp.y 91 | ||
| 1850 | intvar c-src/emacs/src/lisp.h 2277 | ||
| 1851 | INT y-src/cccp.c 6 | ||
| 1852 | invalidate_nodes c-src/etags.c /^invalidate_nodes (fdesc *badfdp, node **npp)$/ | ||
| 1853 | Invoking gzip tex-src/gzip.texi /^@node Invoking gzip, Advanced usage, Sample, Top$/ | ||
| 1854 | in_word_set c-src/etags.c /^in_word_set (register const char *str, register un/ | ||
| 1855 | io merc-src/accumulator.m /^:- import_module io.$/ | ||
| 1856 | IpAddrKind rs-src/test.rs 3 | ||
| 1857 | ipc3dChannelType cp-src/c.C 1 | ||
| 1858 | ipc3dCSC19 cp-src/c.C 6 | ||
| 1859 | ipc3dIslandHierarchy cp-src/c.C 1 | ||
| 1860 | ipc3dLinkControl 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/ | ||
| 1864 | irregular_location cp-src/clheir.hpp 47 | ||
| 1865 | irregular_location cp-src/clheir.hpp /^ irregular_location(double xi, double yi, doubl/ | ||
| 1866 | ISALNUM c-src/etags.c /^#define ISALNUM(c) isalnum (CHAR (c))$/ | ||
| 1867 | ISALPHA c-src/etags.c /^#define ISALPHA(c) isalpha (CHAR (c))$/ | ||
| 1868 | is_associative_construction merc-src/accumulator.m /^:- pred is_associative_construction(module_info::i/ | ||
| 1869 | isComment php-src/lce_functions.php /^ function isComment($class)$/ | ||
| 1870 | IsControlCharName pas-src/common.pas /^function IsControlCharName($/ | ||
| 1871 | IsControlChar pas-src/common.pas /^function IsControlChar; (*($/ | ||
| 1872 | is_curly_brace_form c-src/h.h 54 | ||
| 1873 | IS_DAEMON c-src/emacs/src/lisp.h 4257 | ||
| 1874 | IS_DAEMON c-src/emacs/src/lisp.h 4261 | ||
| 1875 | ISDIGIT c-src/etags.c /^#define ISDIGIT(c) isdigit (CHAR (c))$/ | ||
| 1876 | is_explicit c-src/h.h 49 | ||
| 1877 | is_func c-src/etags.c 221 | ||
| 1878 | isHoliday cp-src/functions.cpp /^bool isHoliday ( Date d ){$/ | ||
| 1879 | is_hor_space y-src/cccp.y 953 | ||
| 1880 | is_idchar y-src/cccp.y 948 | ||
| 1881 | is_idstart y-src/cccp.y 950 | ||
| 1882 | isLeap cp-src/functions.cpp /^bool isLeap ( int year ){$/ | ||
| 1883 | ISLOWER c-src/etags.c /^#define ISLOWER(c) islower (CHAR (c))$/ | ||
| 1884 | is_muldiv_operation cp-src/c.C /^is_muldiv_operation(pc)$/ | ||
| 1885 | ISO_FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5149 | ||
| 1886 | iso_lispy_function_keys c-src/emacs/src/keyboard.c 5151 | ||
| 1887 | isoperator prol-src/natded.prolog /^isoperator(Char):-$/ | ||
| 1888 | isoptab prol-src/natded.prolog /^isoptab('%').$/ | ||
| 1889 | is_ordset prol-src/ordsets.prolog /^is_ordset(X) :- var(X), !, fail.$/ | ||
| 1890 | is_recursive_case merc-src/accumulator.m /^:- pred is_recursive_case(list(hlds_goal)::in, pre/ | ||
| 1891 | Is_Set/f ada-src/2ataspri.adb /^ function Is_Set (Cell : in TAS_Cell) return Bo/ | ||
| 1892 | Is_Set/f ada-src/2ataspri.ads /^ function Is_Set (Cell : in TAS_Cell)/ | ||
| 1893 | ISUPPER c-src/etags.c /^# define ISUPPER(c) isupper (CHAR (c))$/ | ||
| 1894 | iswhite 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{%$/ | ||
| 1901 | item_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}}$/ | ||
| 1907 | JAVASRC make-src/Makefile /^JAVASRC=AWTEMul.java KeyEve.java SMan.java SysCol./ | ||
| 1908 | jmp c-src/emacs/src/lisp.h 3044 | ||
| 1909 | just_read_file c-src/etags.c /^just_read_file (FILE *inf)$/ | ||
| 1910 | kbd_buffer c-src/emacs/src/keyboard.c 291 | ||
| 1911 | kbd_buffer_events_waiting c-src/emacs/src/keyboard.c /^kbd_buffer_events_waiting (void)$/ | ||
| 1912 | kbd_buffer_get_event c-src/emacs/src/keyboard.c /^kbd_buffer_get_event (KBOARD **kbp,$/ | ||
| 1913 | kbd_buffer_nr_stored c-src/emacs/src/keyboard.c /^kbd_buffer_nr_stored (void)$/ | ||
| 1914 | KBD_BUFFER_SIZE c-src/emacs/src/keyboard.c 82 | ||
| 1915 | kbd_buffer_store_event c-src/emacs/src/keyboard.c /^kbd_buffer_store_event (register struct input_even/ | ||
| 1916 | kbd_buffer_store_event_hold c-src/emacs/src/keyboard.c /^kbd_buffer_store_event_hold (register struct input/ | ||
| 1917 | kbd_buffer_store_help_event c-src/emacs/src/keyboard.c /^kbd_buffer_store_help_event (Lisp_Object frame, Li/ | ||
| 1918 | kbd_buffer_unget_event c-src/emacs/src/keyboard.c /^kbd_buffer_unget_event (register struct input_even/ | ||
| 1919 | kbd_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/ | ||
| 1921 | kbd_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}}$/ | ||
| 1925 | kboard c-src/emacs/src/keyboard.c 860 | ||
| 1926 | kboard_stack c-src/emacs/src/keyboard.c 858 | ||
| 1927 | kboard_stack c-src/emacs/src/keyboard.c 864 | ||
| 1928 | KBYTES objc-src/PackInsp.m 58 | ||
| 1929 | key_and_value c-src/emacs/src/lisp.h 1868 | ||
| 1930 | keyremap c-src/emacs/src/keyboard.c 8742 | ||
| 1931 | keyremap c-src/emacs/src/keyboard.c 8754 | ||
| 1932 | keyremap_step c-src/emacs/src/keyboard.c /^keyremap_step (Lisp_Object *keybuf, int bufsize, v/ | ||
| 1933 | keys_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{/ | ||
| 1937 | KEY_TO_CHAR c-src/emacs/src/keyboard.c /^#define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTE/ | ||
| 1938 | keyvalcgi prol-src/natded.prolog /^keyvalcgi(Key,Val):-$/ | ||
| 1939 | keyval prol-src/natded.prolog /^keyval(key(Key,Val)) --> [Key,'='], valseq(Val).$/ | ||
| 1940 | keyvalscgi prol-src/natded.prolog /^keyvalscgi(KeyVals),$/ | ||
| 1941 | keyvalseq prol-src/natded.prolog /^keyvalseq([KeyVal|KeyVals]) --> $/ | ||
| 1942 | keyword_parsing y-src/cccp.y 73 | ||
| 1943 | keywords y-src/cccp.y 114 | ||
| 1944 | keywords y-src/cccp.y 306 | ||
| 1945 | kind c-src/emacs/src/keyboard.c 11024 | ||
| 1946 | kind 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/ | ||
| 1951 | kset_echo_string c-src/emacs/src/keyboard.c /^kset_echo_string (struct kboard *kb, Lisp_Object v/ | ||
| 1952 | kset_kbd_queue c-src/emacs/src/keyboard.c /^kset_kbd_queue (struct kboard *kb, Lisp_Object val/ | ||
| 1953 | kset_keyboard_translate_table c-src/emacs/src/keyboard.c /^kset_keyboard_translate_table (struct kboard *kb, / | ||
| 1954 | kset_last_prefix_arg c-src/emacs/src/keyboard.c /^kset_last_prefix_arg (struct kboard *kb, Lisp_Obje/ | ||
| 1955 | kset_last_repeatable_command c-src/emacs/src/keyboard.c /^kset_last_repeatable_command (struct kboard *kb, L/ | ||
| 1956 | kset_local_function_key_map c-src/emacs/src/keyboard.c /^kset_local_function_key_map (struct kboard *kb, Li/ | ||
| 1957 | kset_overriding_terminal_local_map c-src/emacs/src/keyboard.c /^kset_overriding_terminal_local_map (struct kboard / | ||
| 1958 | kset_real_last_command c-src/emacs/src/keyboard.c /^kset_real_last_command (struct kboard *kb, Lisp_Ob/ | ||
| 1959 | kset_system_key_syms c-src/emacs/src/keyboard.c /^kset_system_key_syms (struct kboard *kb, Lisp_Obje/ | ||
| 1960 | LabeledEntry pyt-src/server.py /^class LabeledEntry(Frame):$/ | ||
| 1961 | \labelspace tex-src/texinfo.tex /^\\def\\labelspace{\\hskip1em \\relax}$/ | ||
| 1962 | lang c-src/etags.c 208 | ||
| 1963 | lang c-src/etags.c 251 | ||
| 1964 | lang c-src/etags.c 259 | ||
| 1965 | Lang_function c-src/etags.c 182 | ||
| 1966 | Lang_function c-src/h.h 6 | ||
| 1967 | lang_names c-src/etags.c 718 | ||
| 1968 | language c-src/etags.c 199 | ||
| 1969 | last_abbrev_point c-src/abbrev.c 79 | ||
| 1970 | lasta c.c 272 | ||
| 1971 | lastargmargin tex-src/texinfo.tex /^\\newskip\\deflastargmargin \\deflastargmargin=18pt$/ | ||
| 1972 | lastargmargin tex-src/texinfo.tex /^\\setbox0=\\hbox{\\hskip \\deflastargmargin{\\rm #2}\\hs/ | ||
| 1973 | last_auto_save c-src/emacs/src/keyboard.c 214 | ||
| 1974 | lastb c.c 278 | ||
| 1975 | last_heapinfo c-src/emacs/src/gmalloc.c 402 | ||
| 1976 | last_mouse_button c-src/emacs/src/keyboard.c 5215 | ||
| 1977 | last_mouse_x c-src/emacs/src/keyboard.c 5216 | ||
| 1978 | last_mouse_y c-src/emacs/src/keyboard.c 5217 | ||
| 1979 | last_non_minibuf_size c-src/emacs/src/keyboard.c 207 | ||
| 1980 | last_point_position c-src/emacs/src/keyboard.c 217 | ||
| 1981 | last_state_size c-src/emacs/src/gmalloc.c 401 | ||
| 1982 | last-tag el-src/emacs/lisp/progmodes/etags.el /^(defvar last-tag nil$/ | ||
| 1983 | last_undo_boundary c-src/emacs/src/keyboard.c 1287 | ||
| 1984 | LATEST make-src/Makefile /^LATEST=17$/ | ||
| 1985 | lb c-src/etags.c 2923 | ||
| 1986 | \lbrb tex-src/texinfo.tex /^\\def\\lbrb{{\\bf\\char`\\[}} \\def\\rbrb{{\\bf\\char`\\]}}$/ | ||
| 1987 | lbs c-src/etags.c 2924 | ||
| 1988 | lce_bindtextdomain php-src/lce_functions.php /^ function lce_bindtextdomain($d_name, $d_path/ | ||
| 1989 | lce_bindtextdomain php-src/lce_functions.php /^ function lce_bindtextdomain($domain, $path)$/ | ||
| 1990 | LCE_COMMENT php-src/lce_functions.php 13 | ||
| 1991 | LCE_COMMENT_TOOL php-src/lce_functions.php 17 | ||
| 1992 | LCE_COMMENT_USER php-src/lce_functions.php 15 | ||
| 1993 | lce_dgettext php-src/lce_functions.php /^ function lce_dgettext($domain, $msgid)$/ | ||
| 1994 | LCE_FUNCTIONS php-src/lce_functions.php 4 | ||
| 1995 | lce_geteditcode php-src/lce_functions.php /^ function lce_geteditcode($type, $name, $text, $r/ | ||
| 1996 | lce_gettext php-src/lce_functions.php /^ function lce_gettext($msgid)$/ | ||
| 1997 | L_CELL y-src/parse.c 10 | ||
| 1998 | LCE_MSGID php-src/lce_functions.php 19 | ||
| 1999 | LCE_MSGSTR php-src/lce_functions.php 21 | ||
| 2000 | lce php-src/lce_functions.php /^ function lce()$/ | ||
| 2001 | lce_textdomain php-src/lce_functions.php /^ function lce_textdomain($domain)$/ | ||
| 2002 | LCE_TEXT php-src/lce_functions.php 23 | ||
| 2003 | LCE_UNKNOWN php-src/lce_functions.php 9 | ||
| 2004 | LCE_WS php-src/lce_functions.php 11 | ||
| 2005 | L_CONST y-src/parse.c 13 | ||
| 2006 | LDFLAGS make-src/Makefile /^LDFLAGS=#-static -lc_p$/ | ||
| 2007 | leasqr html-src/software.html /^Leasqr$/ | ||
| 2008 | left c-src/etags.c 216 | ||
| 2009 | left_shift y-src/cccp.y /^left_shift (a, b)$/ | ||
| 2010 | len c-src/etags.c 237 | ||
| 2011 | length c-src/etags.c 2495 | ||
| 2012 | length y-src/cccp.y 113 | ||
| 2013 | length y-src/cccp.y 44 | ||
| 2014 | LEQ 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}$/ | ||
| 2018 | let c-src/emacs/src/lisp.h 2981 | ||
| 2019 | letter tex-src/texinfo.tex /^ {#1}{Appendix \\appendixletter}{\\noexpand\\folio}}/ | ||
| 2020 | letter tex-src/texinfo.tex /^{#1}{\\appendixletter}{\\the\\secno}{\\noexpand\\folio}/ | ||
| 2021 | letter tex-src/texinfo.tex /^{#1}{\\appendixletter}{\\the\\secno}{\\the\\subsecno}{\\/ | ||
| 2022 | letter tex-src/texinfo.tex /^ {\\appendixletter}$/ | ||
| 2023 | letter tex-src/texinfo.tex /^ {\\appendixletter}{\\the\\secno}{\\the\\subsecno}{\\th/ | ||
| 2024 | letter tex-src/texinfo.tex /^\\chapmacro {#1}{Appendix \\appendixletter}%$/ | ||
| 2025 | letter tex-src/texinfo.tex /^\\gdef\\thissection{#1}\\secheading {#1}{\\appendixlet/ | ||
| 2026 | letter tex-src/texinfo.tex /^\\subsecheading {#1}{\\appendixletter}{\\the\\secno}{\\/ | ||
| 2027 | letter: tex-src/texinfo.tex /^\\xdef\\thischapter{Appendix \\appendixletter: \\noexp/ | ||
| 2028 | level c-src/emacs/src/lisp.h 3153 | ||
| 2029 | lex prol-src/natded.prolog /^lex(W,SynOut,Sem):-$/ | ||
| 2030 | lexptr y-src/cccp.y 332 | ||
| 2031 | LE y-src/parse.c 7 | ||
| 2032 | L_FN0 y-src/parse.c 14 | ||
| 2033 | L_FN1R y-src/parse.c 20 | ||
| 2034 | L_FN1 y-src/parse.c 15 | ||
| 2035 | L_FN2R y-src/parse.c 21 | ||
| 2036 | L_FN2 y-src/parse.c 16 | ||
| 2037 | L_FN3R y-src/parse.c 22 | ||
| 2038 | L_FN3 y-src/parse.c 17 | ||
| 2039 | L_FN4R y-src/parse.c 23 | ||
| 2040 | L_FN4 y-src/parse.c 18 | ||
| 2041 | L_FNNR y-src/parse.c 24 | ||
| 2042 | L_FNN y-src/parse.c 19 | ||
| 2043 | L_getit c-src/etags.c /^L_getit (void)$/ | ||
| 2044 | L_GE y-src/parse.c 27 | ||
| 2045 | __libc_atexit c-src/exit.c 30 | ||
| 2046 | __libc_atexit c-src/exit.strange_suffix 30 | ||
| 2047 | libs merc-src/accumulator.m /^:- import_module libs.$/ | ||
| 2048 | licenze html-src/softwarelibero.html /^Licenze d'uso di un programma$/ | ||
| 2049 | LIGHTBLUE cp-src/screen.hpp 21 | ||
| 2050 | LIGHTCYAN cp-src/screen.hpp 23 | ||
| 2051 | LIGHTGRAY cp-src/screen.hpp 19 | ||
| 2052 | LIGHTGREEN cp-src/screen.hpp 22 | ||
| 2053 | LIGHTMAGENTA cp-src/screen.hpp 25 | ||
| 2054 | LIGHTRED cp-src/screen.hpp 24 | ||
| 2055 | limit cp-src/Range.h /^ double limit (void) const { return rng_limit; }$/ | ||
| 2056 | linebuffer c-src/etags.c 239 | ||
| 2057 | linebuffer_init c-src/etags.c /^linebuffer_init (linebuffer *lbp)$/ | ||
| 2058 | linebuffer_setlen c-src/etags.c /^linebuffer_setlen (linebuffer *lbp, int toksize)$/ | ||
| 2059 | lineCount php-src/lce_functions.php /^ function lineCount($entry)$/ | ||
| 2060 | line c-src/etags.c 2493 | ||
| 2061 | lineno c-src/emacs/src/lisp.h 3147 | ||
| 2062 | lineno c-src/etags.c 2506 | ||
| 2063 | \linenumber tex-src/texinfo.tex /^ \\def\\linenumber{\\the\\inputlineno:\\space}$/ | ||
| 2064 | line perl-src/htlmify-cystic 37 | ||
| 2065 | linepos c-src/etags.c 2507 | ||
| 2066 | linepos c-src/etags.c 2922 | ||
| 2067 | line y-src/parse.y 87 | ||
| 2068 | links html-src/software.html /^Links to interesting software$/ | ||
| 2069 | Lisp_Bits c-src/emacs/src/lisp.h 239 | ||
| 2070 | Lisp_Boolfwd c-src/emacs/src/lisp.h 2284 | ||
| 2071 | Lisp_Bool_Vector c-src/emacs/src/lisp.h 1384 | ||
| 2072 | Lisp_Buffer_Local_Value c-src/emacs/src/lisp.h 2334 | ||
| 2073 | Lisp_Buffer_Objfwd c-src/emacs/src/lisp.h 2302 | ||
| 2074 | Lisp_Char_Table c-src/emacs/src/lisp.h 1575 | ||
| 2075 | Lisp_Compiled c-src/emacs/src/lisp.h 2429 | ||
| 2076 | Lisp_Cons c-src/emacs/src/lisp.h 475 | ||
| 2077 | lisp_eval_depth c-src/emacs/src/lisp.h 3045 | ||
| 2078 | Lisp_Finalizer c-src/emacs/src/lisp.h 2186 | ||
| 2079 | Lisp_Float c-src/emacs/src/lisp.h 2391 | ||
| 2080 | Lisp_Float c-src/emacs/src/lisp.h 477 | ||
| 2081 | Lisp_Free c-src/emacs/src/lisp.h 2201 | ||
| 2082 | Lisp_functions c-src/etags.c /^Lisp_functions (FILE *inf)$/ | ||
| 2083 | Lisp_Fwd_Bool c-src/emacs/src/lisp.h 505 | ||
| 2084 | Lisp_Fwd_Buffer_Obj c-src/emacs/src/lisp.h 507 | ||
| 2085 | Lisp_Fwd c-src/emacs/src/lisp.h 2368 | ||
| 2086 | Lisp_Fwd_Int c-src/emacs/src/lisp.h 504 | ||
| 2087 | Lisp_Fwd_Kboard_Obj c-src/emacs/src/lisp.h 508 | ||
| 2088 | Lisp_Fwd_Obj c-src/emacs/src/lisp.h 506 | ||
| 2089 | Lisp_Fwd_Type c-src/emacs/src/lisp.h 502 | ||
| 2090 | Lisp_Hash_Table c-src/emacs/src/lisp.h 1823 | ||
| 2091 | lisp_h_check_cons_list c-src/emacs/src/lisp.h /^# define lisp_h_check_cons_list() ((void) 0)$/ | ||
| 2092 | lisp_h_CHECK_LIST_CONS c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_LIST_CONS(x, y) CHECK_TYPE (C/ | ||
| 2093 | lisp_h_CHECK_NUMBER c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_NUMBER(x) CHECK_TYPE (INTEGER/ | ||
| 2094 | lisp_h_CHECK_SYMBOL c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_SYMBOL(x) CHECK_TYPE (SYMBOLP/ | ||
| 2095 | lisp_h_CHECK_TYPE c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_TYPE(ok, predicate, x) \\$/ | ||
| 2096 | lisp_h_CONSP c-src/emacs/src/lisp.h /^#define lisp_h_CONSP(x) (XTYPE (x) == Lisp_Cons)$/ | ||
| 2097 | Lisp_help c-src/etags.c 591 | ||
| 2098 | lisp_h_EQ c-src/emacs/src/lisp.h /^#define lisp_h_EQ(x, y) (XLI (x) == XLI (y))$/ | ||
| 2099 | lisp_h_FLOATP c-src/emacs/src/lisp.h /^#define lisp_h_FLOATP(x) (XTYPE (x) == Lisp_Float)/ | ||
| 2100 | lisp_h_INTEGERP c-src/emacs/src/lisp.h /^#define lisp_h_INTEGERP(x) ((XTYPE (x) & (Lisp_Int/ | ||
| 2101 | lisp_h_make_number c-src/emacs/src/lisp.h /^# define lisp_h_make_number(n) \\$/ | ||
| 2102 | lisp_h_MARKERP c-src/emacs/src/lisp.h /^#define lisp_h_MARKERP(x) (MISCP (x) && XMISCTYPE / | ||
| 2103 | lisp_h_MISCP c-src/emacs/src/lisp.h /^#define lisp_h_MISCP(x) (XTYPE (x) == Lisp_Misc)$/ | ||
| 2104 | lisp_h_NILP c-src/emacs/src/lisp.h /^#define lisp_h_NILP(x) EQ (x, Qnil)$/ | ||
| 2105 | lisp_h_SET_SYMBOL_VAL c-src/emacs/src/lisp.h /^#define lisp_h_SET_SYMBOL_VAL(sym, v) \\$/ | ||
| 2106 | lisp_h_SYMBOL_CONSTANT_P c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOL_CONSTANT_P(sym) (XSYMBOL (sy/ | ||
| 2107 | lisp_h_SYMBOLP c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOLP(x) (XTYPE (x) == Lisp_Symbo/ | ||
| 2108 | lisp_h_SYMBOL_VAL c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOL_VAL(sym) \\$/ | ||
| 2109 | lisp_h_VECTORLIKEP c-src/emacs/src/lisp.h /^#define lisp_h_VECTORLIKEP(x) (XTYPE (x) == Lisp_V/ | ||
| 2110 | lisp_h_XCAR c-src/emacs/src/lisp.h /^#define lisp_h_XCAR(c) XCONS (c)->car$/ | ||
| 2111 | lisp_h_XCDR c-src/emacs/src/lisp.h /^#define lisp_h_XCDR(c) XCONS (c)->u.cdr$/ | ||
| 2112 | lisp_h_XCONS c-src/emacs/src/lisp.h /^#define lisp_h_XCONS(a) \\$/ | ||
| 2113 | lisp_h_XFASTINT c-src/emacs/src/lisp.h /^# define lisp_h_XFASTINT(a) XINT (a)$/ | ||
| 2114 | lisp_h_XHASH c-src/emacs/src/lisp.h /^#define lisp_h_XHASH(a) XUINT (a)$/ | ||
| 2115 | lisp_h_XIL c-src/emacs/src/lisp.h /^# define lisp_h_XIL(i) (i)$/ | ||
| 2116 | lisp_h_XIL c-src/emacs/src/lisp.h /^# define lisp_h_XIL(i) ((Lisp_Object) { i })$/ | ||
| 2117 | lisp_h_XINT c-src/emacs/src/lisp.h /^# define lisp_h_XINT(a) (XLI (a) >> INTTYPEBITS)$/ | ||
| 2118 | lisp_h_XLI c-src/emacs/src/lisp.h /^# define lisp_h_XLI(o) (o)$/ | ||
| 2119 | lisp_h_XLI c-src/emacs/src/lisp.h /^# define lisp_h_XLI(o) ((o).i)$/ | ||
| 2120 | lisp_h_XPNTR c-src/emacs/src/lisp.h /^#define lisp_h_XPNTR(a) \\$/ | ||
| 2121 | lisp_h_XSYMBOL c-src/emacs/src/lisp.h /^# define lisp_h_XSYMBOL(a) \\$/ | ||
| 2122 | lisp_h_XTYPE c-src/emacs/src/lisp.h /^# define lisp_h_XTYPE(a) ((enum Lisp_Type) (XLI (a/ | ||
| 2123 | lisp_h_XUNTAG c-src/emacs/src/lisp.h /^# define lisp_h_XUNTAG(a, type) ((void *) (intptr_/ | ||
| 2124 | LISP_INITIALLY c-src/emacs/src/lisp.h /^#define LISP_INITIALLY(i) (i)$/ | ||
| 2125 | LISP_INITIALLY c-src/emacs/src/lisp.h /^#define LISP_INITIALLY(i) {i}$/ | ||
| 2126 | LISP_INITIALLY_ZERO c-src/emacs/src/lisp.h 582 | ||
| 2127 | Lisp_Int0 c-src/emacs/src/lisp.h 461 | ||
| 2128 | Lisp_Int1 c-src/emacs/src/lisp.h 462 | ||
| 2129 | Lisp_Intfwd c-src/emacs/src/lisp.h 2274 | ||
| 2130 | Lisp_Kboard_Objfwd c-src/emacs/src/lisp.h 2362 | ||
| 2131 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^#define LISP_MACRO_DEFUN(name, type, argdecls, arg/ | ||
| 2132 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (CONSP, bool, (Lisp_Object x), (x/ | ||
| 2133 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (NILP, bool, (Lisp_Object x), (x)/ | ||
| 2134 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (SYMBOL_VAL, Lisp_Object, (struct/ | ||
| 2135 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XCAR, Lisp_Object, (Lisp_Object / | ||
| 2136 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XCONS, struct Lisp_Cons *, (Lisp/ | ||
| 2137 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XHASH, EMACS_INT, (Lisp_Object a/ | ||
| 2138 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XLI, EMACS_INT, (Lisp_Object o),/ | ||
| 2139 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XPNTR, void *, (Lisp_Object a), / | ||
| 2140 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^#define LISP_MACRO_DEFUN_VOID(name, argdecls, args/ | ||
| 2141 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (CHECK_LIST_CONS, (Lisp_Obje/ | ||
| 2142 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (CHECK_TYPE,$/ | ||
| 2143 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (SET_SYMBOL_VAL,$/ | ||
| 2144 | Lisp_Marker c-src/emacs/src/lisp.h 1978 | ||
| 2145 | Lisp_Misc_Any c-src/emacs/src/lisp.h 1971 | ||
| 2146 | Lisp_Misc c-src/emacs/src/lisp.h 2212 | ||
| 2147 | Lisp_Misc c-src/emacs/src/lisp.h 458 | ||
| 2148 | Lisp_Misc_Finalizer c-src/emacs/src/lisp.h 491 | ||
| 2149 | Lisp_Misc_Float c-src/emacs/src/lisp.h 494 | ||
| 2150 | Lisp_Misc_Free c-src/emacs/src/lisp.h 487 | ||
| 2151 | Lisp_Misc_Limit c-src/emacs/src/lisp.h 496 | ||
| 2152 | Lisp_Misc_Marker c-src/emacs/src/lisp.h 488 | ||
| 2153 | Lisp_Misc_Overlay c-src/emacs/src/lisp.h 489 | ||
| 2154 | Lisp_Misc_Save_Value c-src/emacs/src/lisp.h 490 | ||
| 2155 | Lisp_Misc_Type c-src/emacs/src/lisp.h 485 | ||
| 2156 | Lisp_Object c-src/emacs/src/lisp.h 567 | ||
| 2157 | Lisp_Object c-src/emacs/src/lisp.h 577 | ||
| 2158 | Lisp_Objfwd c-src/emacs/src/lisp.h 2294 | ||
| 2159 | Lisp_Overlay c-src/emacs/src/lisp.h 2021 | ||
| 2160 | Lisp_Save_Type c-src/emacs/src/lisp.h 2064 | ||
| 2161 | Lisp_Save_Value c-src/emacs/src/lisp.h 2110 | ||
| 2162 | Lisp_String c-src/emacs/src/lisp.h 466 | ||
| 2163 | Lisp_Sub_Char_Table c-src/emacs/src/lisp.h 1606 | ||
| 2164 | Lisp_Subr c-src/emacs/src/lisp.h 1670 | ||
| 2165 | Lisp_suffixes c-src/etags.c 589 | ||
| 2166 | Lisp_Symbol c-src/emacs/src/lisp.h 454 | ||
| 2167 | Lisp_Symbol c-src/emacs/src/lisp.h 654 | ||
| 2168 | \lisp tex-src/texinfo.tex /^\\def\\lisp{\\aboveenvbreak$/ | ||
| 2169 | Lisp_Type c-src/emacs/src/lisp.h 451 | ||
| 2170 | Lisp_Vector c-src/emacs/src/lisp.h 1369 | ||
| 2171 | Lisp_Vectorlike c-src/emacs/src/lisp.h 472 | ||
| 2172 | lispy_accent_codes c-src/emacs/src/keyboard.c 4634 | ||
| 2173 | lispy_accent_keys c-src/emacs/src/keyboard.c 4741 | ||
| 2174 | lispy_drag_n_drop_names c-src/emacs/src/keyboard.c 5181 | ||
| 2175 | lispy_function_keys c-src/emacs/src/keyboard.c 4768 | ||
| 2176 | lispy_function_keys c-src/emacs/src/keyboard.c 5065 | ||
| 2177 | lispy_kana_keys c-src/emacs/src/keyboard.c 5026 | ||
| 2178 | lispy_modifier_list c-src/emacs/src/keyboard.c /^lispy_modifier_list (int modifiers)$/ | ||
| 2179 | lispy_multimedia_keys c-src/emacs/src/keyboard.c 4962 | ||
| 2180 | lispy_wheel_names c-src/emacs/src/keyboard.c 5174 | ||
| 2181 | list2i c-src/emacs/src/lisp.h /^list2i (EMACS_INT x, EMACS_INT y)$/ | ||
| 2182 | list3i c-src/emacs/src/lisp.h /^list3i (EMACS_INT x, EMACS_INT y, EMACS_INT w)$/ | ||
| 2183 | list4i c-src/emacs/src/lisp.h /^list4i (EMACS_INT x, EMACS_INT y, EMACS_INT w, EMA/ | ||
| 2184 | LISTCONTENTSBUTTON objc-src/PackInsp.m 48 | ||
| 2185 | LISTCONTENTS objc-src/PackInsp.m 39 | ||
| 2186 | list c-src/emacs/src/gmalloc.c 186 | ||
| 2187 | LISTDESCRIPTIONBUTTON objc-src/PackInsp.m 49 | ||
| 2188 | ListEdit pyt-src/server.py /^class ListEdit(Frame):$/ | ||
| 2189 | list merc-src/accumulator.m /^:- import_module list.$/ | ||
| 2190 | list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun list-tags (file &optional _next-match)$/ | ||
| 2191 | list-tags-function el-src/emacs/lisp/progmodes/etags.el /^(defvar list-tags-function nil$/ | ||
| 2192 | list_to_ord_set prol-src/ordsets.prolog /^list_to_ord_set(List, Set) :-$/ | ||
| 2193 | LL_Assert/p ada-src/2ataspri.adb /^ procedure LL_Assert (B : Boolean; M : String) i/ | ||
| 2194 | LL_Assert/p ada-src/2ataspri.ads /^ procedure LL_Assert (B : Boolean; M : String);$/ | ||
| 2195 | L_LE y-src/parse.c 25 | ||
| 2196 | LL_Task_Procedure_Access/t ada-src/2ataspri.ads /^ type LL_Task_Procedure_Access is access procedu/ | ||
| 2197 | LL_Task_Procedure_Access/t ada-src/etags-test-for.ada /^ type LL_Task_Procedure_Access is access procedu/ | ||
| 2198 | LL_Wrapper/p ada-src/2ataspri.adb /^ procedure LL_Wrapper (T : TCB_Ptr);$/ | ||
| 2199 | LL_Wrapper/p ada-src/2ataspri.adb /^ procedure LL_Wrapper (T : TCB_Ptr) is$/ | ||
| 2200 | LL_Wrapper/p ada-src/etags-test-for.ada /^ procedure LL_Wrapper (T : TCB_Ptr);$/ | ||
| 2201 | L_NE y-src/parse.c 26 | ||
| 2202 | lno c-src/etags.c 223 | ||
| 2203 | /lnormalize ps-src/rfc1245.ps /^\/lnormalize { $/ | ||
| 2204 | loadContentsOf objc-src/PackInsp.m /^-loadContentsOf:(const char *)type inTable:(HashTa/ | ||
| 2205 | loadImage objc-src/PackInsp.m /^-loadImage$/ | ||
| 2206 | loadKeyValuesFrom objc-src/PackInsp.m /^-loadKeyValuesFrom:(const char *)type inTable:(Has/ | ||
| 2207 | load objc-src/PackInsp.m /^-load$/ | ||
| 2208 | loadPORManager php-src/lce_functions.php /^ function &loadPORManager()$/ | ||
| 2209 | local_if_set c-src/emacs/src/lisp.h 2338 | ||
| 2210 | LOCALIZE_ARCH objc-src/PackInsp.m /^#define LOCALIZE_ARCH(s) NXLoadLocalizedStringFrom/ | ||
| 2211 | LOCALIZE objc-src/PackInsp.m /^#define LOCALIZE(s) NXLoadLocalizedStringFromTabl/ | ||
| 2212 | Locate pas-src/common.pas /^function Locate; (*($/ | ||
| 2213 | location cp-src/clheir.hpp 33 | ||
| 2214 | location cp-src/clheir.hpp /^ location() { }$/ | ||
| 2215 | LOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define LOCK_ALIGNED_BLOCKS() \\$/ | ||
| 2216 | LOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define LOCK_ALIGNED_BLOCKS()$/ | ||
| 2217 | LOCK c-src/emacs/src/gmalloc.c /^#define LOCK() \\$/ | ||
| 2218 | LOCK c-src/emacs/src/gmalloc.c /^#define LOCK()$/ | ||
| 2219 | Lock/t ada-src/2ataspri.ads /^ type Lock is$/ | ||
| 2220 | Lock/t ada-src/2ataspri.ads /^ type Lock is private;$/ | ||
| 2221 | \loggingall tex-src/texinfo.tex /^\\def\\loggingall{\\tracingcommands2 \\tracingstats2 $/ | ||
| 2222 | LONG_TYPE_SIZE y-src/cccp.y 95 | ||
| 2223 | LOOKING_AT c-src/etags.c /^#define LOOKING_AT(cp, kw) \/* kw is the keyword, / | ||
| 2224 | LOOKING_AT_NOCASE c-src/etags.c /^#define LOOKING_AT_NOCASE(cp, kw) \/* the keyword i/ | ||
| 2225 | lookup_call merc-src/accumulator.m /^:- pred lookup_call(accu_goal_store::in, accu_goal/ | ||
| 2226 | LOOKUP objc-src/PackInsp.m 176 | ||
| 2227 | LOOKUP objc-src/PackInsp.m /^#define LOOKUP(key, notfound) ([table isKey:key] ?/ | ||
| 2228 | lookup y-src/cccp.y /^lookup (name, len, hash)$/ | ||
| 2229 | LOOP_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}$/ | ||
| 2231 | lowcase c-src/etags.c /^#define lowcase(c) tolower (CHAR (c))$/ | ||
| 2232 | \lowercaseenumerate tex-src/texinfo.tex /^\\def\\lowercaseenumerate{%$/ | ||
| 2233 | LowerCaseNmStr 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/ | ||
| 2236 | L_RANGE y-src/parse.c 11 | ||
| 2237 | LSH y-src/cccp.c 16 | ||
| 2238 | \l tex-src/texinfo.tex /^\\def\\l#1{{\\li #1}\\null} % $/ | ||
| 2239 | LTGT cp-src/MDiagArray2.h 144 | ||
| 2240 | LTGT cp-src/MDiagArray2.h 35 | ||
| 2241 | LTGT cp-src/MDiagArray2.h 39 | ||
| 2242 | LTGT cp-src/MDiagArray2.h 42 | ||
| 2243 | Lua_functions c-src/etags.c /^Lua_functions (FILE *inf)$/ | ||
| 2244 | Lua_help c-src/etags.c 600 | ||
| 2245 | LUASRC make-src/Makefile /^LUASRC=allegro.lua$/ | ||
| 2246 | Lua_suffixes c-src/etags.c 598 | ||
| 2247 | lucid_event_type_list_p c-src/emacs/src/keyboard.c /^lucid_event_type_list_p (Lisp_Object object)$/ | ||
| 2248 | L_VAR y-src/parse.c 12 | ||
| 2249 | \lvvmode tex-src/texinfo.tex /^\\def\\lvvmode{\\vbox to 0pt{}}$/ | ||
| 2250 | mabort c-src/emacs/src/gmalloc.c /^mabort (enum mcheck_status status)$/ | ||
| 2251 | mach_host_self c-src/machsyscalls.h /^SYSCALL (mach_host_self, -29,$/ | ||
| 2252 | Machine_Exceptions/t ada-src/2ataspri.ads /^ type Machine_Exceptions is new Interfaces.C.POS/ | ||
| 2253 | Machin_T/b ada-src/waroquiers.ada /^ protected body Machin_T is$/ | ||
| 2254 | Machin_T/t ada-src/etags-test-for.ada /^ protected Machin_T is$/ | ||
| 2255 | Machin_T/t ada-src/etags-test-for.ada /^ protected type Machin_T is$/ | ||
| 2256 | Machin_T/t ada-src/waroquiers.ada /^ protected type Machin_T is$/ | ||
| 2257 | mach_msg_trap c-src/machsyscalls.h /^SYSCALL (mach_msg_trap, -25,$/ | ||
| 2258 | mach_reply_port c-src/machsyscalls.h /^SYSCALL (mach_reply_port, -26,$/ | ||
| 2259 | mach_task_self c-src/machsyscalls.h /^SYSCALL (mach_task_self, -28,$/ | ||
| 2260 | mach_thread_self c-src/machsyscalls.h /^SYSCALL (mach_thread_self, -27,$/ | ||
| 2261 | MAGENTA cp-src/screen.hpp 17 | ||
| 2262 | MAGICBYTE c-src/emacs/src/gmalloc.c 1856 | ||
| 2263 | magic c-src/emacs/src/gmalloc.c 1863 | ||
| 2264 | MAGICFREE c-src/emacs/src/gmalloc.c 1855 | ||
| 2265 | MAGICWORD c-src/emacs/src/gmalloc.c 1854 | ||
| 2266 | maintaining.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{%$/ | ||
| 2269 | make-abbrev-table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/ | ||
| 2270 | make_coor prol-src/natded.prolog /^make_coor(s(_),Alpha,Sem1,Sem2,Alpha@Sem1@Sem2).$/ | ||
| 2271 | make_C_tag c-src/etags.c /^make_C_tag (bool isfun)$/ | ||
| 2272 | make_ctrl_char c-src/emacs/src/keyboard.c /^make_ctrl_char (int c)$/ | ||
| 2273 | MakeDispose pyt-src/server.py /^ def MakeDispose(self):$/ | ||
| 2274 | Makefile_filenames c-src/etags.c 603 | ||
| 2275 | Makefile_help c-src/etags.c 605 | ||
| 2276 | Makefile_targets c-src/etags.c /^Makefile_targets (FILE *inf)$/ | ||
| 2277 | make_fixnum_or_float c-src/emacs/src/lisp.h /^#define make_fixnum_or_float(val) \\$/ | ||
| 2278 | make_formatted_string c-src/emacs/src/lisp.h /^extern Lisp_Object make_formatted_string (char *, / | ||
| 2279 | make_lisp_ptr c-src/emacs/src/lisp.h /^make_lisp_ptr (void *ptr, enum Lisp_Type type)$/ | ||
| 2280 | make_lisp_symbol c-src/emacs/src/lisp.h /^make_lisp_symbol (struct Lisp_Symbol *sym)$/ | ||
| 2281 | make_lispy_event c-src/emacs/src/keyboard.c /^make_lispy_event (struct input_event *event)$/ | ||
| 2282 | make_lispy_focus_in c-src/emacs/src/keyboard.c /^make_lispy_focus_in (Lisp_Object frame)$/ | ||
| 2283 | make_lispy_focus_out c-src/emacs/src/keyboard.c /^make_lispy_focus_out (Lisp_Object frame)$/ | ||
| 2284 | make_lispy_movement c-src/emacs/src/keyboard.c /^make_lispy_movement (struct frame *frame, Lisp_Obj/ | ||
| 2285 | make_lispy_position c-src/emacs/src/keyboard.c /^make_lispy_position (struct frame *f, Lisp_Object / | ||
| 2286 | make_lispy_switch_frame c-src/emacs/src/keyboard.c /^make_lispy_switch_frame (Lisp_Object frame)$/ | ||
| 2287 | MAKE make-src/Makefile /^MAKE:=$(MAKE) --no-print-directory$/ | ||
| 2288 | make_number c-src/emacs/src/lisp.h /^# define make_number(n) lisp_h_make_number (n)$/ | ||
| 2289 | make_pointer_integer c-src/emacs/src/lisp.h /^make_pointer_integer (void *p)$/ | ||
| 2290 | make_scroll_bar_position c-src/emacs/src/keyboard.c /^make_scroll_bar_position (struct input_event *ev, / | ||
| 2291 | MakeSitelist pyt-src/server.py /^ def MakeSitelist(self, master):$/ | ||
| 2292 | MAKESRC make-src/Makefile /^MAKESRC=Makefile$/ | ||
| 2293 | make_tag c-src/etags.c /^make_tag (const char *name, \/* tag name, or NULL / | ||
| 2294 | make_uninit_sub_char_table c-src/emacs/src/lisp.h /^make_uninit_sub_char_table (int depth, int min_cha/ | ||
| 2295 | make_uninit_vector c-src/emacs/src/lisp.h /^make_uninit_vector (ptrdiff_t size)$/ | ||
| 2296 | malloc_atfork_handler_child c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_child (void)$/ | ||
| 2297 | malloc_atfork_handler_parent c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_parent (void)$/ | ||
| 2298 | malloc_atfork_handler_prepare c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_prepare (void)$/ | ||
| 2299 | malloc c-src/emacs/src/gmalloc.c 1715 | ||
| 2300 | malloc c-src/emacs/src/gmalloc.c 64 | ||
| 2301 | malloc c-src/emacs/src/gmalloc.c 68 | ||
| 2302 | malloc 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)$/ | ||
| 2304 | malloc c-src/emacs/src/gmalloc.c /^malloc (size_t size)$/ | ||
| 2305 | malloc_enable_thread c-src/emacs/src/gmalloc.c /^malloc_enable_thread (void)$/ | ||
| 2306 | __malloc_extra_blocks c-src/emacs/src/gmalloc.c 381 | ||
| 2307 | MALLOCFLOOD c-src/emacs/src/gmalloc.c 1857 | ||
| 2308 | mallochook c-src/emacs/src/gmalloc.c /^mallochook (size_t size)$/ | ||
| 2309 | malloc_info c-src/emacs/src/gmalloc.c 167 | ||
| 2310 | malloc_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 | ||
| 2317 | man manpage make-src/Makefile /^man manpage: etags.1.man$/ | ||
| 2318 | /manualpapersize ps-src/rfc1245.ps /^\/manualpapersize {$/ | ||
| 2319 | MANY c-src/emacs/src/lisp.h 2833 | ||
| 2320 | mao c-src/h.h 101 | ||
| 2321 | map c-src/emacs/src/keyboard.c 8748 | ||
| 2322 | map merc-src/accumulator.m /^:- import_module map.$/ | ||
| 2323 | mapping html-src/algrthms.html /^Mapping the Channel Symbols$/ | ||
| 2324 | mapsyn prol-src/natded.prolog /^mapsyn(A\/B,AM\/BM):-$/ | ||
| 2325 | map_word prol-src/natded.prolog /^map_word([[_]|Ws],Exp):-$/ | ||
| 2326 | MARKERP c-src/emacs/src/lisp.h /^# define MARKERP(x) lisp_h_MARKERP (x)$/ | ||
| 2327 | mark_kboards c-src/emacs/src/keyboard.c /^mark_kboards (void)$/ | ||
| 2328 | \math tex-src/texinfo.tex /^\\def\\math#1{\\implicitmath #1\\implicitmath}$/ | ||
| 2329 | MAX_ALLOCA c-src/emacs/src/lisp.h 4556 | ||
| 2330 | max_args c-src/emacs/src/lisp.h 1686 | ||
| 2331 | maxargs c-src/emacs/src/lisp.h 2831 | ||
| 2332 | max c.c /^__attribute__ ((always_inline)) max (int a, int b)/ | ||
| 2333 | max c.c /^max (int a, int b)$/ | ||
| 2334 | max cp-src/conway.cpp /^#define max(x,y) ((x > y) ? x : y)$/ | ||
| 2335 | max c-src/emacs/src/lisp.h 58 | ||
| 2336 | max c-src/emacs/src/lisp.h /^#define max(a, b) ((a) > (b) ? (a) : (b))$/ | ||
| 2337 | MAX_ENCODED_BYTES c-src/emacs/src/keyboard.c 2254 | ||
| 2338 | MAX_HASH_VALUE c-src/etags.c 2329 | ||
| 2339 | max_num_directions cp-src/clheir.hpp 31 | ||
| 2340 | max_num_generic_objects cp-src/clheir.cpp 9 | ||
| 2341 | MAXPATHLEN c-src/etags.c 115 | ||
| 2342 | /max ps-src/rfc1245.ps /^\/max {2 copy lt {exch} if pop} bind def$/ | ||
| 2343 | MAX_WORD_LENGTH c-src/etags.c 2327 | ||
| 2344 | maybe_gc c-src/emacs/src/lisp.h /^maybe_gc (void)$/ | ||
| 2345 | maybe merc-src/accumulator.m /^:- import_module maybe.$/ | ||
| 2346 | MAYBEREL y-src/parse.y /^#define MAYBEREL(p) (*(p)=='[' && (isdigit((p)[1])/ | ||
| 2347 | MBYTES objc-src/PackInsp.m 59 | ||
| 2348 | Mcccp y-src/cccp.y /^main ()$/ | ||
| 2349 | Mc cp-src/c.C /^int main (void) { my_function0(0); my_function1(1)/ | ||
| 2350 | mcCSC cp-src/c.C 6 | ||
| 2351 | mcheck c-src/emacs/src/gmalloc.c /^mcheck (void (*func) (enum mcheck_status))$/ | ||
| 2352 | MCHECK_DISABLED c-src/emacs/src/gmalloc.c 285 | ||
| 2353 | MCHECK_FREE c-src/emacs/src/gmalloc.c 287 | ||
| 2354 | MCHECK_HEAD c-src/emacs/src/gmalloc.c 288 | ||
| 2355 | MCHECK_OK c-src/emacs/src/gmalloc.c 286 | ||
| 2356 | mcheck_status c-src/emacs/src/gmalloc.c 283 | ||
| 2357 | MCHECK_TAIL c-src/emacs/src/gmalloc.c 289 | ||
| 2358 | mcheck_used c-src/emacs/src/gmalloc.c 2012 | ||
| 2359 | Mconway.cpp cp-src/conway.cpp /^void main(void)$/ | ||
| 2360 | mdbcomp merc-src/accumulator.m /^:- import_module mdbcomp.$/ | ||
| 2361 | MDiagArray2 cp-src/MDiagArray2.h 78 | ||
| 2362 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const Array<T>& a) : DiagArray2<T> / | ||
| 2363 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const DiagArray2<T>& a) : DiagArray/ | ||
| 2364 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const MDiagArray2<T>& a) : DiagArra/ | ||
| 2365 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (int r, int c, const T& val) : DiagA/ | ||
| 2366 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (int r, int c) : DiagArray2<T> (r, c/ | ||
| 2367 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (T *d, int r, int c) : DiagArray2<T>/ | ||
| 2368 | ~MDiagArray2 cp-src/MDiagArray2.h /^ ~MDiagArray2 (void) { }$/ | ||
| 2369 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (void) : DiagArray2<T> () { }$/ | ||
| 2370 | me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ | ||
| 2371 | me22b lua-src/test.lua /^ local function test.me22b (one)$/ | ||
| 2372 | memalign c-src/emacs/src/gmalloc.c /^memalign (size_t alignment, size_t size)$/ | ||
| 2373 | member_lessthan_goalid merc-src/accumulator.m /^:- pred member_lessthan_goalid(accu_goal_store::in/ | ||
| 2374 | member prol-src/natded.prolog /^member(X,[X|_]).$/ | ||
| 2375 | memclear c-src/emacs/src/lisp.h /^memclear (void *p, ptrdiff_t nbytes)$/ | ||
| 2376 | menu_bar_item c-src/emacs/src/keyboard.c /^menu_bar_item (Lisp_Object key, Lisp_Object item, / | ||
| 2377 | menu_bar_items c-src/emacs/src/keyboard.c /^menu_bar_items (Lisp_Object old)$/ | ||
| 2378 | menu_bar_items_index c-src/emacs/src/keyboard.c 7369 | ||
| 2379 | menu_bar_items_vector c-src/emacs/src/keyboard.c 7368 | ||
| 2380 | menu_bar_one_keymap_changed_items c-src/emacs/src/keyboard.c 7363 | ||
| 2381 | menu_item_eval_property_1 c-src/emacs/src/keyboard.c /^menu_item_eval_property_1 (Lisp_Object arg)$/ | ||
| 2382 | menu_item_eval_property c-src/emacs/src/keyboard.c /^menu_item_eval_property (Lisp_Object sexpr)$/ | ||
| 2383 | menu_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{}$/ | ||
| 2385 | Metags c-src/etags.c /^main (int argc, char **argv)$/ | ||
| 2386 | metasource c-src/etags.c 198 | ||
| 2387 | Mfail cp-src/fail.C /^main()$/ | ||
| 2388 | min_args c-src/emacs/src/lisp.h 1686 | ||
| 2389 | min_char c-src/emacs/src/lisp.h 1621 | ||
| 2390 | min cp-src/conway.cpp /^#define min(x,y) ((x > y) ? y : x)$/ | ||
| 2391 | min c-src/emacs/src/gmalloc.c /^#define min(a, b) ((a) < (b) ? (a) : (b))$/ | ||
| 2392 | min c-src/emacs/src/lisp.h 57 | ||
| 2393 | min c-src/emacs/src/lisp.h /^#define min(a, b) ((a) < (b) ? (a) : (b))$/ | ||
| 2394 | MIN_HASH_VALUE c-src/etags.c 2328 | ||
| 2395 | /min ps-src/rfc1245.ps /^\/min {2 copy gt {exch} if pop} bind def$/ | ||
| 2396 | minus cp-src/functions.cpp /^void Date::minus ( int days , int month , int year/ | ||
| 2397 | \minus tex-src/texinfo.tex /^\\def\\minus{$-$}$/ | ||
| 2398 | MIN_WORD_LENGTH c-src/etags.c 2326 | ||
| 2399 | MISCP c-src/emacs/src/lisp.h /^# define MISCP(x) lisp_h_MISCP (x)$/ | ||
| 2400 | miti html-src/softwarelibero.html /^Sfatiamo alcuni miti$/ | ||
| 2401 | Mkai-test.pl perl-src/kai-test.pl /^package main;$/ | ||
| 2402 | modifier_names c-src/emacs/src/keyboard.c 6319 | ||
| 2403 | modifier_symbols c-src/emacs/src/keyboard.c 6327 | ||
| 2404 | modify_event_symbol c-src/emacs/src/keyboard.c /^modify_event_symbol (ptrdiff_t symbol_num, int mod/ | ||
| 2405 | module_class_method ruby-src/test.rb /^ def ModuleExample.module_class_method$/ | ||
| 2406 | ModuleExample ruby-src/test.rb /^module ModuleExample$/ | ||
| 2407 | module_instance_method ruby-src/test.rb /^ def module_instance_method$/ | ||
| 2408 | more_aligned_int c.c 165 | ||
| 2409 | morecore_nolock c-src/emacs/src/gmalloc.c /^morecore_nolock (size_t size)$/ | ||
| 2410 | morecore_recursing c-src/emacs/src/gmalloc.c 604 | ||
| 2411 | More_Lisp_Bits c-src/emacs/src/lisp.h 801 | ||
| 2412 | more= ruby-src/test1.ru /^ :more$/ | ||
| 2413 | MOST_NEGATIVE_FIXNUM c-src/emacs/src/lisp.h 835 | ||
| 2414 | MOST_POSITIVE_FIXNUM c-src/emacs/src/lisp.h 834 | ||
| 2415 | mouse_syms c-src/emacs/src/keyboard.c 4627 | ||
| 2416 | move cp-src/clheir.cpp /^void agent::move(int direction)$/ | ||
| 2417 | MOVE c-src/sysdep.h /^#define MOVE(x,y) movl x, y$/ | ||
| 2418 | MoveLayerAfter lua-src/allegro.lua /^function MoveLayerAfter (this_one)$/ | ||
| 2419 | MoveLayerBefore lua-src/allegro.lua /^function MoveLayerBefore (this_one)$/ | ||
| 2420 | MoveLayerBottom lua-src/allegro.lua /^function MoveLayerBottom ()$/ | ||
| 2421 | MoveLayerTop lua-src/allegro.lua /^function MoveLayerTop ()$/ | ||
| 2422 | mprobe c-src/emacs/src/gmalloc.c /^mprobe (void *ptr)$/ | ||
| 2423 | /M ps-src/rfc1245.ps /^\/M {newpath moveto} bind def$/ | ||
| 2424 | MSDOS c-src/etags.c 100 | ||
| 2425 | MSDOS c-src/etags.c 106 | ||
| 2426 | MSDOS c-src/etags.c 107 | ||
| 2427 | MSDOS c-src/etags.c 110 | ||
| 2428 | msgid php-src/lce_functions.php /^ function msgid($line, $class)$/ | ||
| 2429 | MSGSEL f-src/entry.for /^ ENTRY MSGSEL ( TYPE )$/ | ||
| 2430 | MSGSEL f-src/entry.strange /^ ENTRY MSGSEL ( TYPE )$/ | ||
| 2431 | MSGSEL f-src/entry.strange_suffix /^ ENTRY MSGSEL ( TYPE )$/ | ||
| 2432 | msgstr php-src/lce_functions.php /^ function msgstr($line, $class)$/ | ||
| 2433 | /ms ps-src/rfc1245.ps /^\/ms { $/ | ||
| 2434 | mstats c-src/emacs/src/gmalloc.c 308 | ||
| 2435 | Mtest1.go go-src/test1.go 1 | ||
| 2436 | Mtest1.go go-src/test1.go /^func main() {$/ | ||
| 2437 | Mtest.go go-src/test.go 1 | ||
| 2438 | Mtest.go go-src/test.go /^func main() {$/ | ||
| 2439 | Mtest.rs rs-src/test.rs /^fn main() {$/ | ||
| 2440 | mtg html-src/software.html /^MTG$/ | ||
| 2441 | mt prol-src/natded.prolog /^mt:-$/ | ||
| 2442 | multibyte c-src/emacs/src/regex.h 403 | ||
| 2443 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c 6231 | ||
| 2444 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c 6764 | ||
| 2445 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c /^#define MULTI_LETTER_MOD(BIT, NAME, LEN) \\$/ | ||
| 2446 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c /^#define MULTI_LETTER_MOD(BIT, NAME, LEN) \\$/ | ||
| 2447 | multi_line c-src/etags.c 267 | ||
| 2448 | Mx.cc cp-src/x.cc /^main(int argc, char *argv[])$/ | ||
| 2449 | \mylbrace tex-src/texinfo.tex /^\\def\\mylbrace {{\\tt \\char '173}}$/ | ||
| 2450 | mypi forth-src/test-forth.fth /^synonym mypi fconst$/ | ||
| 2451 | my_printf c.c /^my_printf (void *my_object, const char *my_format,/ | ||
| 2452 | \myrbrace tex-src/texinfo.tex /^\\def\\myrbrace {{\\tt \\char '175}}$/ | ||
| 2453 | my_struct c.c 226 | ||
| 2454 | my_struct c-src/h.h 91 | ||
| 2455 | my_typedef c.c 228 | ||
| 2456 | my_typedef c-src/h.h 93 | ||
| 2457 | name c-src/emacs/src/keyboard.c 7241 | ||
| 2458 | name c-src/emacs/src/lisp.h 1808 | ||
| 2459 | name c-src/emacs/src/lisp.h 3144 | ||
| 2460 | name c-src/emacs/src/lisp.h 682 | ||
| 2461 | name c-src/etags.c 192 | ||
| 2462 | name c-src/etags.c 218 | ||
| 2463 | name c-src/etags.c 2271 | ||
| 2464 | name c-src/etags.c 261 | ||
| 2465 | name c-src/getopt.h 76 | ||
| 2466 | name c-src/getopt.h 78 | ||
| 2467 | named c-src/etags.c 2505 | ||
| 2468 | NameHasChar pas-src/common.pas /^function NameHasChar; (* (TheName : NameString; Th/ | ||
| 2469 | name perl-src/htlmify-cystic 357 | ||
| 2470 | namestringequal pas-src/common.pas /^function namestringequal;(*(var Name1,Name2 : Name/ | ||
| 2471 | NameStringLess pas-src/common.pas /^function NameStringLess;(*(var Name1,Name2 : NameS/ | ||
| 2472 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Function}%$/ | ||
| 2473 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Macro}%$/ | ||
| 2474 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Special Form}%$/ | ||
| 2475 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{User Option}%$/ | ||
| 2476 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Variable}%$/ | ||
| 2477 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\deftpargs{#3}\\endgrou/ | ||
| 2478 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defunargs{#3}\\endgrou/ | ||
| 2479 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defvarargs{#3}\\endgro/ | ||
| 2480 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defcvtype{} of #1}%$/ | ||
| 2481 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defoptype{} on #1}%$/ | ||
| 2482 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{Instance Variable of #1}%/ | ||
| 2483 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{Method on #1}%$/ | ||
| 2484 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#1} #2}{Function}%$/ | ||
| 2485 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#1} #2}{Variable}%$/ | ||
| 2486 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#2} #3}{#1}%$/ | ||
| 2487 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#2} #3}{#1}$/ | ||
| 2488 | NAME y-src/cccp.c 8 | ||
| 2489 | name y-src/cccp.y 113 | ||
| 2490 | name y-src/cccp.y 43 | ||
| 2491 | nargs c-src/emacs/src/lisp.h 2987 | ||
| 2492 | NATNUMP c-src/emacs/src/lisp.h /^NATNUMP (Lisp_Object x)$/ | ||
| 2493 | /nbluet ps-src/rfc1245.ps /^\/nbluet 256 array def$/ | ||
| 2494 | n c-src/exit.c 28 | ||
| 2495 | n c-src/exit.strange_suffix 28 | ||
| 2496 | NDEBUG c-src/etags.c 88 | ||
| 2497 | need_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{%$/ | ||
| 2500 | NEG y-src/parse.c 9 | ||
| 2501 | neighbors cp-src/clheir.hpp 59 | ||
| 2502 | nelem cp-src/Range.h /^ int nelem (void) const { return rng_nelem; }$/ | ||
| 2503 | nestlev c-src/etags.c 2525 | ||
| 2504 | \newcodeindex tex-src/texinfo.tex /^\\def\\newcodeindex #1{$/ | ||
| 2505 | \newindex tex-src/texinfo.tex /^\\def\\newindex #1{$/ | ||
| 2506 | NewLayer lua-src/allegro.lua /^function NewLayer (name, x, y, w, h)$/ | ||
| 2507 | NewLayerSet lua-src/allegro.lua /^function NewLayerSet (name)$/ | ||
| 2508 | newlb c-src/etags.c 2930 | ||
| 2509 | newlinepos c-src/etags.c 2932 | ||
| 2510 | NewNameString pas-src/common.pas /^procedure NewNameString; (* (var NSP: NameStringPo/ | ||
| 2511 | new objc-src/PackInsp.m /^+new$/ | ||
| 2512 | new perl-src/htlmify-cystic 163 | ||
| 2513 | new_tag perl-src/htlmify-cystic 18 | ||
| 2514 | newtextstring pas-src/common.pas /^function newtextstring; (*: TextString;*)$/ | ||
| 2515 | next_alive cp-src/conway.hpp 7 | ||
| 2516 | next_almost_prime c-src/emacs/src/lisp.h /^extern EMACS_INT next_almost_prime (EMACS_INT) ATT/ | ||
| 2517 | NEXT_ALMOST_PRIME_LIMIT c-src/emacs/src/lisp.h 3573 | ||
| 2518 | next c.c 174 | ||
| 2519 | next c-src/emacs/src/gmalloc.c 164 | ||
| 2520 | next c-src/emacs/src/gmalloc.c 188 | ||
| 2521 | next c-src/emacs/src/gmalloc.c 198 | ||
| 2522 | next c-src/emacs/src/keyboard.c 7246 | ||
| 2523 | next c-src/emacs/src/keyboard.c 861 | ||
| 2524 | next c-src/emacs/src/lisp.h 1848 | ||
| 2525 | next c-src/emacs/src/lisp.h 2009 | ||
| 2526 | next c-src/emacs/src/lisp.h 2037 | ||
| 2527 | next c-src/emacs/src/lisp.h 2192 | ||
| 2528 | next c-src/emacs/src/lisp.h 3028 | ||
| 2529 | next c-src/emacs/src/lisp.h 3134 | ||
| 2530 | next c-src/emacs/src/lisp.h 700 | ||
| 2531 | next c-src/etags.c 203 | ||
| 2532 | next-file el-src/emacs/lisp/progmodes/etags.el /^(defun next-file (&optional initialize novisit)$/ | ||
| 2533 | next-file-list el-src/emacs/lisp/progmodes/etags.el /^(defvar next-file-list nil$/ | ||
| 2534 | next_free c-src/emacs/src/lisp.h 1851 | ||
| 2535 | nextfree c-src/emacs/src/lisp.h 3029 | ||
| 2536 | \next tex-src/texinfo.tex /^\\def\\next##1{}\\next}$/ | ||
| 2537 | next_weak c-src/emacs/src/lisp.h 1875 | ||
| 2538 | next y-src/cccp.y 42 | ||
| 2539 | NE y-src/parse.c 6 | ||
| 2540 | nfree 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$/ | ||
| 2543 | NIL_IS_ZERO c-src/emacs/src/lisp.h 1515 | ||
| 2544 | NILP c-src/emacs/src/lisp.h /^# define NILP(x) lisp_h_NILP (x)$/ | ||
| 2545 | nl c-src/etags.c 2521 | ||
| 2546 | NmStrToErrStr pas-src/common.pas /^function NmStrToErrStr;(*($/ | ||
| 2547 | NmStrToInteger pas-src/common.pas /^function NmStrToInteger; (* (Str : NameString) : i/ | ||
| 2548 | \nm tex-src/testenv.tex /^\\newcommand{\\nm}[2]{\\nomenclature{#1}{#2}}$/ | ||
| 2549 | no_argument c-src/getopt.h 89 | ||
| 2550 | nocase_tail c-src/etags.c /^nocase_tail (const char *cp)$/ | ||
| 2551 | node c-src/etags.c 225 | ||
| 2552 | noderef tex-src/texinfo.tex /^\\appendixnoderef %$/ | ||
| 2553 | node_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/ | ||
| 2559 | nofonts% tex-src/texinfo.tex /^{\\chapternofonts%$/ | ||
| 2560 | nofonts tex-src/texinfo.tex /^{\\indexnofonts$/ | ||
| 2561 | no_lang_help c-src/etags.c 707 | ||
| 2562 | none_help c-src/etags.c 703 | ||
| 2563 | NONPOINTER_BITS c-src/emacs/src/lisp.h 78 | ||
| 2564 | NONPOINTER_BITS c-src/emacs/src/lisp.h 80 | ||
| 2565 | NONSRCS 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{>}$/ | ||
| 2570 | normalize_fresh prol-src/natded.prolog /^normalize_fresh(M,N):-$/ | ||
| 2571 | normalize prol-src/natded.prolog /^normalize(M,MNorm):-$/ | ||
| 2572 | /normalize ps-src/rfc1245.ps /^\/normalize {$/ | ||
| 2573 | normalize_tree prol-src/natded.prolog /^normalize_tree(tree(Rule,Syn:Sem,Trees),$/ | ||
| 2574 | normalize_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{|}$/ | ||
| 2580 | nosave pyt-src/server.py /^ def nosave(self):$/ | ||
| 2581 | no_sub c-src/emacs/src/regex.h 387 | ||
| 2582 | notag2 c-src/dostorture.c 26 | ||
| 2583 | notag2 c-src/torture.c 26 | ||
| 2584 | notag4 c-src/dostorture.c 45 | ||
| 2585 | notag4 c-src/torture.c 45 | ||
| 2586 | not_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/ | ||
| 2589 | not_eol c-src/emacs/src/regex.h 394 | ||
| 2590 | NOTEQUAL y-src/cccp.c 13 | ||
| 2591 | no tex-src/texinfo.tex /^\\global\\advance \\appendixno by 1 \\message{Appendix/ | ||
| 2592 | no tex-src/texinfo.tex /^\\ifnum\\secno=0 Appendix\\xreftie'char\\the\\appendixn/ | ||
| 2593 | no tex-src/texinfo.tex /^\\newcount \\appendixno \\appendixno = `\\@$/ | ||
| 2594 | no.\the\secno tex-src/texinfo.tex /^\\else \\ifnum \\subsecno=0 Section\\xreftie'char\\the\\/ | ||
| 2595 | no.\the\secno.\the\subsecno tex-src/texinfo.tex /^Section\\xreftie'char\\the\\appendixno.\\the\\secno.\\th/ | ||
| 2596 | no.\the\secno.\the\subsecno.\the\subsubsecno tex-src/texinfo.tex /^Section\\xreftie'char\\the\\appendixno.\\the\\secno.\\th/ | ||
| 2597 | notinname c-src/etags.c /^#define notinname(c) (_nin[CHAR (c)]) \/* c is not / | ||
| 2598 | not_single_kboard_state c-src/emacs/src/keyboard.c /^not_single_kboard_state (KBOARD *kboard)$/ | ||
| 2599 | npending 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/ | ||
| 2605 | ntool_bar_items c-src/emacs/src/keyboard.c 7974 | ||
| 2606 | NULL_PTR y-src/cccp.y 63 | ||
| 2607 | NULL 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/ | ||
| 2613 | numberKeys objcpp-src/SimpleCalc.M /^- numberKeys:sender$/ | ||
| 2614 | number_len c-src/etags.c /^static int number_len (long) ATTRIBUTE_CONST;$/ | ||
| 2615 | /numbersign ps-src/rfc1245.ps /^\/numbersign \/dollar \/percent \/ampersand \/quotesing/ | ||
| 2616 | numbervars prol-src/natded.prolog /^numbervars(X):-$/ | ||
| 2617 | num_columns cp-src/conway.cpp 16 | ||
| 2618 | \numericenumerate tex-src/texinfo.tex /^\\def\\numericenumerate{%$/ | ||
| 2619 | num_input_events c-src/emacs/src/keyboard.c 210 | ||
| 2620 | NUM_MOD_NAMES c-src/emacs/src/keyboard.c 6325 | ||
| 2621 | numOfChannels cp-src/c.C 1 | ||
| 2622 | NUM_RECENT_KEYS c-src/emacs/src/keyboard.c 91 | ||
| 2623 | num_regs c-src/emacs/src/regex.h 430 | ||
| 2624 | num_rows cp-src/conway.cpp 15 | ||
| 2625 | NUMSTATS objc-src/PackInsp.h 36 | ||
| 2626 | nvars c-src/emacs/src/lisp.h 3140 | ||
| 2627 | Objc_help c-src/etags.c 613 | ||
| 2628 | OBJCPPSRC make-src/Makefile /^OBJCPPSRC=SimpleCalc.H SimpleCalc.M$/ | ||
| 2629 | OBJCSRC make-src/Makefile /^OBJCSRC=Subprocess.h Subprocess.m PackInsp.h PackI/ | ||
| 2630 | Objc_suffixes c-src/etags.c 609 | ||
| 2631 | objdef c-src/etags.c 2484 | ||
| 2632 | object c-src/emacs/src/lisp.h 2128 | ||
| 2633 | object_registry cp-src/clheir.cpp 10 | ||
| 2634 | OBJS make-src/Makefile /^OBJS=${GETOPTOBJS} ${REGEXOBJS} ${CHECKOBJS}$/ | ||
| 2635 | objtag c-src/etags.c 2453 | ||
| 2636 | objvar c-src/emacs/src/lisp.h 2297 | ||
| 2637 | obstack_chunk_alloc y-src/parse.y 47 | ||
| 2638 | obstack_chunk_free y-src/parse.y 48 | ||
| 2639 | ocatseen c-src/etags.c 2477 | ||
| 2640 | /ocircumflex ps-src/rfc1245.ps /^\/ocircumflex \/odieresis \/otilde \/uacute \/ugrave \/u/ | ||
| 2641 | octave_MDiagArray2_h cp-src/MDiagArray2.h 29 | ||
| 2642 | octave_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}$/ | ||
| 2645 | oediff make-src/Makefile /^oediff: OTAGS ETAGS ${infiles}$/ | ||
| 2646 | offset c-src/emacs/src/lisp.h 2305 | ||
| 2647 | offset c-src/emacs/src/lisp.h 2365 | ||
| 2648 | offset c-src/etags.c 2494 | ||
| 2649 | oignore c-src/etags.c 2483 | ||
| 2650 | oimplementation c-src/etags.c 2474 | ||
| 2651 | oinbody c-src/etags.c 2478 | ||
| 2652 | ok objc-src/PackInsp.m /^-ok:sender$/ | ||
| 2653 | ok_to_echo_at_next_pause c-src/emacs/src/keyboard.c 159 | ||
| 2654 | old_value c-src/emacs/src/lisp.h 2980 | ||
| 2655 | omethodcolon c-src/etags.c 2481 | ||
| 2656 | omethodparm c-src/etags.c 2482 | ||
| 2657 | omethodsign c-src/etags.c 2479 | ||
| 2658 | omethodtag c-src/etags.c 2480 | ||
| 2659 | \onepageout tex-src/texinfo.tex /^\\def\\onepageout#1{\\hoffset=\\normaloffset$/ | ||
| 2660 | onone c-src/etags.c 2472 | ||
| 2661 | oparenseen c-src/etags.c 2476 | ||
| 2662 | OPENBUTTON objc-src/PackInsp.m 47 | ||
| 2663 | \opencontents tex-src/texinfo.tex /^\\def\\opencontents{\\openout \\contentsfile = \\jobnam/ | ||
| 2664 | open-dribble-file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/ | ||
| 2665 | \openindices tex-src/texinfo.tex /^\\def\\openindices{%$/ | ||
| 2666 | openInWorkspace objc-src/PackInsp.m /^static void openInWorkspace(const char *filename)$/ | ||
| 2667 | open objc-src/PackInsp.m /^-open:sender$/ | ||
| 2668 | operationKeys objcpp-src/SimpleCalc.M /^- operationKeys:sender$/ | ||
| 2669 | operator+ cp-src/c.C /^ A operator+(A& a) {};$/ | ||
| 2670 | operator+ cp-src/c.C /^const A& A::operator+(const A&) { }$/ | ||
| 2671 | operator - cp-src/c.C /^void operator -(int, int) {}$/ | ||
| 2672 | operator+ cp-src/c.C /^void operator+(int, int) {}$/ | ||
| 2673 | operator = cp-src/functions.cpp /^Date & Date::operator = ( Date d ){$/ | ||
| 2674 | operator += cp-src/functions.cpp /^Date & Date::operator += ( int days ){$/ | ||
| 2675 | operator -= cp-src/functions.cpp /^Date & Date::operator -= ( int days ){$/ | ||
| 2676 | operator ++ cp-src/functions.cpp /^Date & Date::operator ++ ( void ){$/ | ||
| 2677 | operator -- cp-src/functions.cpp /^Date & Date::operator -- ( void ){$/ | ||
| 2678 | operator - cp-src/functions.cpp /^int Date::operator - ( Date d ){$/ | ||
| 2679 | operator < cp-src/functions.cpp /^int Date::operator < ( Date d ) {$/ | ||
| 2680 | operator == cp-src/functions.cpp /^int Date::operator == ( Date d ) {$/ | ||
| 2681 | operator > cp-src/functions.cpp /^int Date::operator > ( Date d ) {$/ | ||
| 2682 | operator >> cp-src/functions.cpp /^istream& operator >> ( istream &i, Date & dd ){$/ | ||
| 2683 | operator << cp-src/functions.cpp /^ostream& operator << ( ostream &c, Date d ) {$/ | ||
| 2684 | operator = cp-src/MDiagArray2.h /^ MDiagArray2<T>& operator = (const MDiagArray2<T>/ | ||
| 2685 | OperatorFun c-src/h.h 88 | ||
| 2686 | operator int cp-src/c.C /^void operator int(int, int) {}$/ | ||
| 2687 | operator int cp-src/fail.C /^ operator int() const {return x;}$/ | ||
| 2688 | operator MArray2<T> cp-src/MDiagArray2.h /^ operator MArray2<T> () const$/ | ||
| 2689 | operator y-src/cccp.y 438 | ||
| 2690 | \opnr tex-src/texinfo.tex /^\\def\\opnr{{\\sf\\char`\\(}} \\def\\clnr{{\\sf\\char`\\)}} / | ||
| 2691 | opparsebody\Edefop\defopx\defopheader\defoptype tex-src/texinfo.tex /^\\defopparsebody\\Edefop\\defopx\\defopheader\\defoptyp/ | ||
| 2692 | oprotocol c-src/etags.c 2473 | ||
| 2693 | /O ps-src/rfc1245.ps /^\/O {closepath} bind def$/ | ||
| 2694 | optional_argument c-src/getopt.h 91 | ||
| 2695 | option c-src/getopt.h 73 | ||
| 2696 | OPTIONS make-src/Makefile /^OPTIONS=--members --declarations --regex=@regexfil/ | ||
| 2697 | opvarparsebody\Edefcv\defcvx\defcvarheader\defcvtype tex-src/texinfo.tex /^\\defopvarparsebody\\Edefcv\\defcvx\\defcvarheader\\def/ | ||
| 2698 | ord_add_element prol-src/ordsets.prolog /^ord_add_element([], Element, [Element]).$/ | ||
| 2699 | ord_del_element prol-src/ordsets.prolog /^ord_del_element([], _, []).$/ | ||
| 2700 | ord_disjoint prol-src/ordsets.prolog /^ord_disjoint(Set1, Set2) :-$/ | ||
| 2701 | /ordfeminine ps-src/rfc1245.ps /^\/ordfeminine \/ordmasculine \/.notdef \/ae \/oslash \/q/ | ||
| 2702 | ord_intersection2 prol-src/ordsets.prolog /^ord_intersection2(1, [Set|Sets], Set0, Sets0) :- !/ | ||
| 2703 | ord_intersection3 prol-src/ordsets.prolog /^ord_intersection3(<, _, Set1, Head2, Tail2, Inters/ | ||
| 2704 | ord_intersection4 prol-src/ordsets.prolog /^ord_intersection4(<, _, Set1, Head2, Tail2, Inters/ | ||
| 2705 | ord_intersection prol-src/ordsets.prolog /^ord_intersection([], _, []).$/ | ||
| 2706 | ord_intersection prol-src/ordsets.prolog /^ord_intersection([], Set2, [], Set2).$/ | ||
| 2707 | ord_intersection prol-src/ordsets.prolog /^ord_intersection(Sets, Intersection) :- $/ | ||
| 2708 | ord_intersect prol-src/ordsets.prolog /^ord_intersect([Head1|Tail1], [Head2|Tail2]) :-$/ | ||
| 2709 | ord_member prol-src/ordsets.prolog /^ord_member(X, [E|Es]) :-$/ | ||
| 2710 | ord_seteq prol-src/ordsets.prolog /^ord_seteq(Set1, Set2) :-$/ | ||
| 2711 | ord_setproduct prol-src/ordsets.prolog /^ord_setproduct([], _, []).$/ | ||
| 2712 | ord_subset prol-src/ordsets.prolog /^ord_subset([], _).$/ | ||
| 2713 | ord_subtract prol-src/ordsets.prolog /^ord_subtract(Set1, Set2, Union) :-$/ | ||
| 2714 | ord_symdiff prol-src/ordsets.prolog /^ord_symdiff([], Set2, Set2).$/ | ||
| 2715 | ord_union4 prol-src/ordsets.prolog /^ord_union4(<, Head, Set1, Head2, Tail2, [Head|Unio/ | ||
| 2716 | ord_union_all prol-src/ordsets.prolog /^ord_union_all(1, [Set|Sets], Set, Sets) :- !.$/ | ||
| 2717 | ord_union prol-src/ordsets.prolog /^ord_union(Set1, Set2, Union) :-$/ | ||
| 2718 | ord_union prol-src/ordsets.prolog /^ord_union([], Union) :- !, Union = [].$/ | ||
| 2719 | OR y-src/cccp.c 10 | ||
| 2720 | oss html-src/softwarelibero.html /^Il movimento open source$/ | ||
| 2721 | otagseen c-src/etags.c 2475 | ||
| 2722 | OTAGS make-src/Makefile /^OTAGS: oetags ${SRCS} srclist$/ | ||
| 2723 | /Otilde ps-src/rfc1245.ps /^\/Otilde \/OE \/oe \/endash \/emdash \/quotedblleft \/quo/ | ||
| 2724 | output_file perl-src/htlmify-cystic 35 | ||
| 2725 | output_files perl-src/htlmify-cystic 32 | ||
| 2726 | outputtable html-src/algrthms.html /^Output$/ | ||
| 2727 | outputTime cp-src/c.C 9 | ||
| 2728 | outsyn prol-src/natded.prolog /^outsyn(['Any'],_).$/ | ||
| 2729 | OVERLAYP c-src/emacs/src/lisp.h /^OVERLAYP (Lisp_Object x)$/ | ||
| 2730 | Overview tex-src/gzip.texi /^@node Overview, Sample, Copying, Top$/ | ||
| 2731 | PackageInspector 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 { $/ | ||
| 2734 | pagesize 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}$/ | ||
| 2738 | pair 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/ | ||
| 2742 | parent c-src/emacs/src/keyboard.c 8745 | ||
| 2743 | parent 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{%$/ | ||
| 2747 | parse_c_expression y-src/cccp.y /^parse_c_expression (string)$/ | ||
| 2748 | parse_cgi prol-src/natded.prolog /^parse_cgi(TokenList,KeyVals):-$/ | ||
| 2749 | parse_error y-src/parse.y 82 | ||
| 2750 | parse_escape y-src/cccp.y /^parse_escape (string_ptr)$/ | ||
| 2751 | parseFromVars php-src/lce_functions.php /^ function parseFromVars($prefix)$/ | ||
| 2752 | parse_hash y-src/parse.y 64 | ||
| 2753 | parse_menu_item c-src/emacs/src/keyboard.c /^parse_menu_item (Lisp_Object item, int inmenubar)$/ | ||
| 2754 | parse_modifiers c-src/emacs/src/keyboard.c /^parse_modifiers (Lisp_Object symbol)$/ | ||
| 2755 | parse_modifiers_uncached c-src/emacs/src/keyboard.c /^parse_modifiers_uncached (Lisp_Object symbol, ptrd/ | ||
| 2756 | parse_number y-src/cccp.y /^parse_number (olen)$/ | ||
| 2757 | parse prol-src/natded.prolog /^parse(Ws,Cat):-$/ | ||
| 2758 | parse_return_error y-src/cccp.y 70 | ||
| 2759 | parse_return y-src/parse.y 74 | ||
| 2760 | parse_solitary_modifier c-src/emacs/src/keyboard.c /^parse_solitary_modifier (Lisp_Object symbol)$/ | ||
| 2761 | parse_tool_bar_item c-src/emacs/src/keyboard.c /^parse_tool_bar_item (Lisp_Object key, Lisp_Object / | ||
| 2762 | parse_tree merc-src/accumulator.m /^:- import_module parse_tree.$/ | ||
| 2763 | Pascal_functions c-src/etags.c /^Pascal_functions (FILE *inf)$/ | ||
| 2764 | Pascal_help c-src/etags.c 621 | ||
| 2765 | Pascal_suffixes c-src/etags.c 619 | ||
| 2766 | PASSRC make-src/Makefile /^PASSRC=common.pas$/ | ||
| 2767 | pat c-src/etags.c 262 | ||
| 2768 | pattern c-src/etags.c 260 | ||
| 2769 | p c-src/emacs/src/lisp.h 4673 | ||
| 2770 | p c-src/emacs/src/lisp.h 4679 | ||
| 2771 | pD c-src/emacs/src/lisp.h 165 | ||
| 2772 | pD c-src/emacs/src/lisp.h 167 | ||
| 2773 | pD c-src/emacs/src/lisp.h 169 | ||
| 2774 | pD c-src/emacs/src/lisp.h 171 | ||
| 2775 | pdlcount c-src/emacs/src/lisp.h 3046 | ||
| 2776 | PDT c-src/h.h /^ Date 04 May 87 235311 PDT (Mon)$/ | ||
| 2777 | pending-delete-mode el-src/TAGTEST.EL /^(defalias 'pending-delete-mode 'delete-selection-m/ | ||
| 2778 | pending_funcalls c-src/emacs/src/keyboard.c 4377 | ||
| 2779 | pending_signals c-src/emacs/src/keyboard.c 80 | ||
| 2780 | /periodcentered ps-src/rfc1245.ps /^\/periodcentered \/quotesinglbase \/quotedblbase \/per/ | ||
| 2781 | Perl_functions c-src/etags.c /^Perl_functions (FILE *inf)$/ | ||
| 2782 | Perl_help c-src/etags.c 630 | ||
| 2783 | Perl_interpreters c-src/etags.c 628 | ||
| 2784 | PERLSRC make-src/Makefile /^PERLSRC=htlmify-cystic yagrip.pl kai-test.pl mirro/ | ||
| 2785 | Perl_suffixes c-src/etags.c 626 | ||
| 2786 | p/f ada-src/etags-test-for.ada /^function p ("p");$/ | ||
| 2787 | p/f ada-src/etags-test-for.ada /^ function p pragma Import (C,$/ | ||
| 2788 | pfatal c-src/etags.c /^pfatal (const char *s1)$/ | ||
| 2789 | pfdset c-src/h.h 57 | ||
| 2790 | pfnote c-src/etags.c /^pfnote (char *name, bool is_func, char *linestart,/ | ||
| 2791 | /PF ps-src/rfc1245.ps /^\/PF { $/ | ||
| 2792 | PHP_functions c-src/etags.c /^PHP_functions (FILE *inf)$/ | ||
| 2793 | PHP_help c-src/etags.c 639 | ||
| 2794 | PHPSRC make-src/Makefile /^PHPSRC=lce_functions.php ptest.php sendmail.php$/ | ||
| 2795 | PHP_suffixes c-src/etags.c 637 | ||
| 2796 | pI c-src/emacs/src/lisp.h 106 | ||
| 2797 | pI c-src/emacs/src/lisp.h 94 | ||
| 2798 | pI c-src/emacs/src/lisp.h 99 | ||
| 2799 | \pindex tex-src/texinfo.tex /^\\def\\pindex {\\pgindex}$/ | ||
| 2800 | pinned c-src/emacs/src/lisp.h 679 | ||
| 2801 | Pkg1/b ada-src/etags-test-for.ada /^package body Pkg1 is$/ | ||
| 2802 | Pkg1/b ada-src/waroquiers.ada /^package body Pkg1 is$/ | ||
| 2803 | Pkg1_Func1/f ada-src/etags-test-for.ada /^ function Pkg1_Func1 return Boolean;$/ | ||
| 2804 | Pkg1_Func1/f ada-src/etags-test-for.ada /^function Pkg1_Func1 return Boolean is$/ | ||
| 2805 | Pkg1_Func1/f ada-src/etags-test-for.ada /^ function Pkg1_Func1 return Boolean is separate;$/ | ||
| 2806 | Pkg1_Func1/f ada-src/waroquiers.ada /^ function Pkg1_Func1 return Boolean;$/ | ||
| 2807 | Pkg1_Func1/f ada-src/waroquiers.ada /^function Pkg1_Func1 return Boolean is$/ | ||
| 2808 | Pkg1_Func1/f ada-src/waroquiers.ada /^ function Pkg1_Func1 return Boolean is separate;$/ | ||
| 2809 | Pkg1_Func2/f ada-src/etags-test-for.ada /^ function Pkg1_Func2 (Ijk : Integer; Z : Integer)/ | ||
| 2810 | Pkg1_Func2/f ada-src/waroquiers.ada /^ function Pkg1_Func2 (Ijk : Integer; Z : Integer)/ | ||
| 2811 | Pkg1_Pkg1/b ada-src/etags-test-for.ada /^package body Pkg1_Pkg1 is$/ | ||
| 2812 | Pkg1_Pkg1/b ada-src/etags-test-for.ada /^ package body Pkg1_Pkg1 is separate;$/ | ||
| 2813 | Pkg1_Pkg1/b ada-src/waroquiers.ada /^package body Pkg1_Pkg1 is$/ | ||
| 2814 | Pkg1_Pkg1/b ada-src/waroquiers.ada /^ package body Pkg1_Pkg1 is separate;$/ | ||
| 2815 | Pkg1_Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Pkg1_Proc1;$/ | ||
| 2816 | Pkg1_Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Pkg1_Proc1 is$/ | ||
| 2817 | Pkg1_Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Pkg1_Proc1;$/ | ||
| 2818 | Pkg1_Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Pkg1_Proc1 is$/ | ||
| 2819 | Pkg1_Pkg1/s ada-src/etags-test-for.ada /^ package Pkg1_Pkg1 is$/ | ||
| 2820 | Pkg1_Pkg1/s ada-src/waroquiers.ada /^ package Pkg1_Pkg1 is$/ | ||
| 2821 | Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc1;$/ | ||
| 2822 | Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc1 is$/ | ||
| 2823 | Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc1;$/ | ||
| 2824 | Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc1 is$/ | ||
| 2825 | Pkg1_Proc2/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc2 (I : Integer);$/ | ||
| 2826 | Pkg1_Proc2/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc2 (I : Integer) is$/ | ||
| 2827 | Pkg1_Proc2/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc2 (I : Integer);$/ | ||
| 2828 | Pkg1_Proc2/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc2 (I : Integer) is$/ | ||
| 2829 | Pkg1/s ada-src/etags-test-for.ada /^package Pkg1 is$/ | ||
| 2830 | Pkg1/s ada-src/waroquiers.ada /^package Pkg1 is$/ | ||
| 2831 | plainc c-src/etags.c 2934 | ||
| 2832 | plain_C_entries c-src/etags.c /^plain_C_entries (FILE *inf)$/ | ||
| 2833 | plain_C_suffixes c-src/etags.c 643 | ||
| 2834 | \plainsecheading tex-src/texinfo.tex /^\\def\\plainsecheading #1{\\secheadingi {#1}}$/ | ||
| 2835 | plist c-src/emacs/src/lisp.h 2040 | ||
| 2836 | plist c-src/emacs/src/lisp.h 697 | ||
| 2837 | plus cp-src/functions.cpp /^void Date::plus ( int days , int month , int year / | ||
| 2838 | plus go-src/test1.go 5 | ||
| 2839 | plusvalseq prol-src/natded.prolog /^plusvalseq([]) --> [].$/ | ||
| 2840 | pMd c-src/emacs/src/lisp.h 150 | ||
| 2841 | pMd c-src/emacs/src/lisp.h 155 | ||
| 2842 | pMu c-src/emacs/src/lisp.h 151 | ||
| 2843 | pMu c-src/emacs/src/lisp.h 156 | ||
| 2844 | p_next c-src/etags.c 258 | ||
| 2845 | POEntryAD php-src/lce_functions.php 29 | ||
| 2846 | POEntry php-src/lce_functions.php 105 | ||
| 2847 | POEntry php-src/lce_functions.php /^ function POEntry()$/ | ||
| 2848 | pointer c-src/emacs/src/lisp.h 2125 | ||
| 2849 | point forth-src/test-forth.fth /^BEGIN-STRUCTURE point \\ create the named structure/ | ||
| 2850 | \point tex-src/texinfo.tex /^\\def\\point{$\\star$}$/ | ||
| 2851 | poll_for_input_1 c-src/emacs/src/keyboard.c /^poll_for_input_1 (void)$/ | ||
| 2852 | poll_for_input c-src/emacs/src/keyboard.c /^poll_for_input (struct atimer *timer)$/ | ||
| 2853 | poll_suppress_count c-src/emacs/src/keyboard.c 1908 | ||
| 2854 | poll_suppress_count c-src/emacs/src/lisp.h 3047 | ||
| 2855 | poll_timer c-src/emacs/src/keyboard.c 1915 | ||
| 2856 | popclass_above c-src/etags.c /^popclass_above (int bracelev)$/ | ||
| 2857 | pop_kboard c-src/emacs/src/keyboard.c /^pop_kboard (void)$/ | ||
| 2858 | pop-tag-mark el-src/emacs/lisp/progmodes/etags.el /^(defalias 'pop-tag-mark 'xref-pop-marker-stack)$/ | ||
| 2859 | POReader php-src/lce_functions.php 163 | ||
| 2860 | POReader php-src/lce_functions.php /^ function POReader($domain, $filename)$/ | ||
| 2861 | PORManager php-src/lce_functions.php 498 | ||
| 2862 | PORManager php-src/lce_functions.php /^ function PORManager()$/ | ||
| 2863 | position_to_Time c-src/emacs/src/keyboard.c /^position_to_Time (ptrdiff_t pos)$/ | ||
| 2864 | posix_memalign c-src/emacs/src/gmalloc.c /^posix_memalign (void **memptr, size_t alignment, s/ | ||
| 2865 | posn-at-point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/ | ||
| 2866 | posn-at-x-y c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, / | ||
| 2867 | possible_sum_sign y-src/cccp.y /^#define possible_sum_sign(a, b, sum) ((((a) ^ (b))/ | ||
| 2868 | PostControls pyt-src/server.py /^ def PostControls(self):$/ | ||
| 2869 | post pyt-src/server.py /^ def post(self):$/ | ||
| 2870 | POSTSCRIPTFLAGS make-src/Makefile /^POSTSCRIPTFLAGS=--language=none --regex='#\/[^ \\t{]/ | ||
| 2871 | pot_etags_version c-src/etags.c 81 | ||
| 2872 | pp1 c-src/dostorture.c /^int pp1($/ | ||
| 2873 | pp1 c-src/torture.c /^int pp1($/ | ||
| 2874 | pp2 c-src/dostorture.c /^pp2$/ | ||
| 2875 | pp2 c-src/torture.c /^pp2$/ | ||
| 2876 | pp3 c-src/dostorture.c /^pp3(int bar)$/ | ||
| 2877 | pp3 c-src/torture.c /^pp3(int bar)$/ | ||
| 2878 | pp_bas_cat prol-src/natded.prolog /^pp_bas_cat(Cat):-$/ | ||
| 2879 | pp_cat prol-src/natded.prolog /^pp_cat(Syn:Sem):-$/ | ||
| 2880 | pp_exp prol-src/natded.prolog /^pp_exp('NIL'):-$/ | ||
| 2881 | pp_exps prol-src/natded.prolog /^pp_exps([]).$/ | ||
| 2882 | pp_html_fitch_tree prol-src/natded.prolog /^pp_html_fitch_tree(tree(der,Root,[ders(Words)]),M,/ | ||
| 2883 | pp_html_table_fitch_tree prol-src/natded.prolog /^pp_html_table_fitch_tree(T):-$/ | ||
| 2884 | pp_html_table_tree prol-src/natded.prolog /^pp_html_table_tree(T):-$/ | ||
| 2885 | pp_html_tree prol-src/natded.prolog /^pp_html_tree(ass(Syn,V,'$VAR'(N))):-$/ | ||
| 2886 | pp_html_trees prol-src/natded.prolog /^pp_html_trees([T|Ts],N,M):-$/ | ||
| 2887 | pp_lam_bracket prol-src/natded.prolog /^pp_lam_bracket(A^B):-$/ | ||
| 2888 | pp_lam_paren prol-src/natded.prolog /^pp_lam_paren(Var^Alpha):-$/ | ||
| 2889 | pp_lam prol-src/natded.prolog /^pp_lam(Var^Alpha):-$/ | ||
| 2890 | pp_paren prol-src/natded.prolog /^pp_paren(C):-$/ | ||
| 2891 | pp_rule prol-src/natded.prolog /^pp_rule(fe):-write('\/E').$/ | ||
| 2892 | /P ps-src/rfc1245.ps /^\/P { $/ | ||
| 2893 | pp_syn_back prol-src/natded.prolog /^pp_syn_back(A\/B):-$/ | ||
| 2894 | pp_syn_paren prol-src/natded.prolog /^pp_syn_paren(A\/B):-$/ | ||
| 2895 | pp_syn prol-src/natded.prolog /^pp_syn(A\/B):-$/ | ||
| 2896 | pp_tree prol-src/natded.prolog /^pp_tree(T):-$/ | ||
| 2897 | pp_trees prol-src/natded.prolog /^pp_trees([T|Ts],Column):-$/ | ||
| 2898 | pp_word_list prol-src/natded.prolog /^pp_word_list([]).$/ | ||
| 2899 | pp_word_list_rest prol-src/natded.prolog /^pp_word_list_rest([]).$/ | ||
| 2900 | pp_word prol-src/natded.prolog /^pp_word(W):-$/ | ||
| 2901 | Pre_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/ | ||
| 2903 | predicate c-src/emacs/src/lisp.h 2307 | ||
| 2904 | prev c.c 175 | ||
| 2905 | prev c-src/emacs/src/gmalloc.c 165 | ||
| 2906 | prev c-src/emacs/src/gmalloc.c 189 | ||
| 2907 | prev c-src/emacs/src/lisp.h 2191 | ||
| 2908 | \primary tex-src/texinfo.tex /^\\def\\primary #1{\\line{#1\\hfil}}$/ | ||
| 2909 | PrintAdd go-src/test1.go /^func (n intNumber) PrintAdd() {$/ | ||
| 2910 | PrintAdd go-src/test1.go /^func (s str) PrintAdd() {$/ | ||
| 2911 | printClassification 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}%$/ | ||
| 2916 | print_help c-src/etags.c /^print_help (argument *argbuffer)$/ | ||
| 2917 | \printindex tex-src/texinfo.tex /^\\def\\printindex{\\parsearg\\doprintindex}$/ | ||
| 2918 | print_language_names c-src/etags.c /^print_language_names (void)$/ | ||
| 2919 | printmax_t c-src/emacs/src/lisp.h 148 | ||
| 2920 | printmax_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}$/ | ||
| 2923 | PRINT_UNDOCUMENTED_OPTIONS_HELP c-src/etags.c 804 | ||
| 2924 | print_version c-src/etags.c /^print_version (void)$/ | ||
| 2925 | Private objc-src/Subprocess.m /^@interface Subprocess(Private)$/ | ||
| 2926 | Private_T/b ada-src/etags-test-for.ada /^ task body Private_T is$/ | ||
| 2927 | Private_T/b ada-src/waroquiers.ada /^ task body Private_T is$/ | ||
| 2928 | Private_T/k ada-src/etags-test-for.ada /^ task Private_T;$/ | ||
| 2929 | Private_T/k ada-src/waroquiers.ada /^ task Private_T;$/ | ||
| 2930 | Private_T/p ada-src/etags-test-for.ada /^ procedure Private_T;$/ | ||
| 2931 | Private_T/p ada-src/etags-test-for.ada /^ procedure Private_T is$/ | ||
| 2932 | Private_T/p ada-src/waroquiers.ada /^ procedure Private_T;$/ | ||
| 2933 | Private_T/p ada-src/waroquiers.ada /^ procedure Private_T is$/ | ||
| 2934 | Private_T/t ada-src/etags-test-for.ada /^ type Private_T is$/ | ||
| 2935 | Private_T/t ada-src/etags-test-for.ada /^ type Private_T is private;$/ | ||
| 2936 | Private_T/t ada-src/waroquiers.ada /^ type Private_T is$/ | ||
| 2937 | Private_T/t ada-src/waroquiers.ada /^ type Private_T is private;$/ | ||
| 2938 | Problems tex-src/gzip.texi /^@node Problems, Concept Index, Tapes, Top$/ | ||
| 2939 | proc c-src/h.h 87 | ||
| 2940 | process_file c-src/etags.c /^process_file (FILE *fh, char *fn, language *lang)$/ | ||
| 2941 | process_file_name c-src/etags.c /^process_file_name (char *file, language *lang)$/ | ||
| 2942 | PROCESSP c-src/emacs/src/lisp.h /^PROCESSP (Lisp_Object a)$/ | ||
| 2943 | process_pending_signals c-src/emacs/src/keyboard.c /^process_pending_signals (void)$/ | ||
| 2944 | process_special_events c-src/emacs/src/keyboard.c /^process_special_events (void)$/ | ||
| 2945 | process_tool_bar_item c-src/emacs/src/keyboard.c /^process_tool_bar_item (Lisp_Object key, Lisp_Objec/ | ||
| 2946 | Proc/t ada-src/2ataspri.ads /^ type Proc is access procedure (Addr : System.Ad/ | ||
| 2947 | prof make-src/Makefile /^prof: ETAGS$/ | ||
| 2948 | prolog_atom c-src/etags.c /^prolog_atom (char *s, size_t pos)$/ | ||
| 2949 | Prolog_functions c-src/etags.c /^Prolog_functions (FILE *inf)$/ | ||
| 2950 | Prolog_help c-src/etags.c 654 | ||
| 2951 | prolog_pr c-src/etags.c /^prolog_pr (char *s, char *last)$/ | ||
| 2952 | prolog_skip_comment c-src/etags.c /^prolog_skip_comment (linebuffer *plb, FILE *inf)$/ | ||
| 2953 | Prolog_suffixes c-src/etags.c 652 | ||
| 2954 | PROLSRC make-src/Makefile /^PROLSRC=ordsets.prolog natded.prolog$/ | ||
| 2955 | PROP c-src/emacs/src/keyboard.c 8379 | ||
| 2956 | PROP c-src/emacs/src/keyboard.c /^#define PROP(IDX) AREF (tool_bar_item_properties, / | ||
| 2957 | prop c-src/etags.c 209 | ||
| 2958 | PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) \/* empty *\/$/ | ||
| 2959 | PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) protect_malloc_/ | ||
| 2960 | protect_malloc_state c-src/emacs/src/gmalloc.c /^protect_malloc_state (int protect_p)$/ | ||
| 2961 | PRTPKG f-src/entry.for /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/ | ||
| 2962 | PRTPKG f-src/entry.strange /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/ | ||
| 2963 | PRTPKG f-src/entry.strange_suffix /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/ | ||
| 2964 | PSEUDO c-src/sysdep.h /^#define PSEUDO(name, syscall_name, args) / | ||
| 2965 | PSEUDOVECSIZE c-src/emacs/src/lisp.h /^#define PSEUDOVECSIZE(type, nonlispfield) \\$/ | ||
| 2966 | PSEUDOVECTOR_AREA_BITS c-src/emacs/src/lisp.h 818 | ||
| 2967 | PSEUDOVECTOR_FLAG c-src/emacs/src/lisp.h 774 | ||
| 2968 | PSEUDOVECTORP c-src/emacs/src/lisp.h /^PSEUDOVECTORP (Lisp_Object a, int code)$/ | ||
| 2969 | PSEUDOVECTOR_REST_BITS c-src/emacs/src/lisp.h 813 | ||
| 2970 | PSEUDOVECTOR_REST_MASK c-src/emacs/src/lisp.h 814 | ||
| 2971 | PSEUDOVECTOR_SIZE_BITS c-src/emacs/src/lisp.h 808 | ||
| 2972 | PSEUDOVECTOR_SIZE_MASK c-src/emacs/src/lisp.h 809 | ||
| 2973 | PSEUDOVECTOR_TYPEP c-src/emacs/src/lisp.h /^PSEUDOVECTOR_TYPEP (struct vectorlike_header *a, i/ | ||
| 2974 | PS_functions c-src/etags.c /^PS_functions (FILE *inf)$/ | ||
| 2975 | PS_help c-src/etags.c 649 | ||
| 2976 | PSSRC make-src/Makefile /^PSSRC=rfc1245.ps$/ | ||
| 2977 | PS_suffixes c-src/etags.c 647 | ||
| 2978 | pthread_mutexattr_setprio_ceiling/f ada-src/2ataspri.adb /^ function pthread_mutexattr_setprio_ceiling$/ | ||
| 2979 | pthread_mutexattr_setprotocol/f ada-src/2ataspri.adb /^ function pthread_mutexattr_setprotocol$/ | ||
| 2980 | PTY_LENGTH objc-src/Subprocess.m 21 | ||
| 2981 | PTY_TEMPLATE objc-src/Subprocess.m 20 | ||
| 2982 | Public_T/t ada-src/etags-test-for.ada /^ type Public_T is$/ | ||
| 2983 | Public_T/t ada-src/waroquiers.ada /^ type Public_T is$/ | ||
| 2984 | purpose c-src/emacs/src/lisp.h 1594 | ||
| 2985 | pushclass_above c-src/etags.c /^pushclass_above (int bracelev, char *str, int len)/ | ||
| 2986 | PUSH_C_STR c-src/emacs/src/keyboard.c /^#define PUSH_C_STR(str, listvar) \\$/ | ||
| 2987 | PUSH_HANDLER c-src/emacs/src/lisp.h /^#define PUSH_HANDLER(c, tag_ch_val, handlertype) \\/ | ||
| 2988 | push_kboard c-src/emacs/src/keyboard.c /^push_kboard (struct kboard *k)$/ | ||
| 2989 | put_entries c-src/etags.c /^put_entries (register node *np)$/ | ||
| 2990 | PVEC_BOOL_VECTOR c-src/emacs/src/lisp.h 787 | ||
| 2991 | PVEC_BUFFER c-src/emacs/src/lisp.h 788 | ||
| 2992 | PVEC_CHAR_TABLE c-src/emacs/src/lisp.h 796 | ||
| 2993 | PVEC_COMPILED c-src/emacs/src/lisp.h 795 | ||
| 2994 | PVEC_FONT c-src/emacs/src/lisp.h 798 | ||
| 2995 | PVEC_FRAME c-src/emacs/src/lisp.h 785 | ||
| 2996 | PVEC_FREE c-src/emacs/src/lisp.h 783 | ||
| 2997 | PVEC_HASH_TABLE c-src/emacs/src/lisp.h 789 | ||
| 2998 | PVEC_NORMAL_VECTOR c-src/emacs/src/lisp.h 782 | ||
| 2999 | PVEC_OTHER c-src/emacs/src/lisp.h 793 | ||
| 3000 | PVEC_PROCESS c-src/emacs/src/lisp.h 784 | ||
| 3001 | PVEC_SUB_CHAR_TABLE c-src/emacs/src/lisp.h 797 | ||
| 3002 | PVEC_SUBR c-src/emacs/src/lisp.h 792 | ||
| 3003 | PVEC_TERMINAL c-src/emacs/src/lisp.h 790 | ||
| 3004 | pvec_type c-src/emacs/src/lisp.h 780 | ||
| 3005 | PVEC_TYPE_MASK c-src/emacs/src/lisp.h 819 | ||
| 3006 | PVEC_WINDOW_CONFIGURATION c-src/emacs/src/lisp.h 791 | ||
| 3007 | PVEC_WINDOW c-src/emacs/src/lisp.h 786 | ||
| 3008 | p.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,,,,,,,]}$/ | ||
| 3010 | p.y forth-src/test-forth.fth /^ 1 CELLS +FIELD p.y \\ A single cell field name/ | ||
| 3011 | Python_functions c-src/etags.c /^Python_functions (FILE *inf)$/ | ||
| 3012 | Python_help c-src/etags.c 660 | ||
| 3013 | Python_suffixes c-src/etags.c 658 | ||
| 3014 | PYTSRC make-src/Makefile /^PYTSRC=server.py$/ | ||
| 3015 | quantizing html-src/algrthms.html /^Quantizing the Received$/ | ||
| 3016 | questo ../c/c.web 34 | ||
| 3017 | quiettest make-src/Makefile /^quiettest:$/ | ||
| 3018 | quit_char c-src/emacs/src/keyboard.c 192 | ||
| 3019 | QUIT c-src/emacs/src/lisp.h 3101 | ||
| 3020 | QUITP c-src/emacs/src/lisp.h 3112 | ||
| 3021 | quit_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/ | ||
| 3024 | qux1 ruby-src/test1.ru /^ :qux1)$/ | ||
| 3025 | qux ruby-src/test1.ru /^ alias_method :qux, :tee, attr_accessor(:bogus)/ | ||
| 3026 | qux= ruby-src/test1.ru /^ def qux=(tee)$/ | ||
| 3027 | r0 c-src/sysdep.h 54 | ||
| 3028 | r1 c-src/sysdep.h 55 | ||
| 3029 | r_alloc c-src/emacs/src/lisp.h /^extern void *r_alloc (void **, size_t) ATTRIBUTE_A/ | ||
| 3030 | Range cp-src/Range.h 35 | ||
| 3031 | Range cp-src/Range.h /^ Range (const Range& r)$/ | ||
| 3032 | Range cp-src/Range.h /^ Range (double b, double l)$/ | ||
| 3033 | Range cp-src/Range.h /^ Range (double b, double l, double i)$/ | ||
| 3034 | Range cp-src/Range.h /^ Range (void)$/ | ||
| 3035 | RANGED_INTEGERP c-src/emacs/src/lisp.h /^RANGED_INTEGERP (intmax_t lo, Lisp_Object x, intma/ | ||
| 3036 | range_exp_list y-src/parse.y 273 | ||
| 3037 | range_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/ | ||
| 3040 | raw_keybuf_count c-src/emacs/src/keyboard.c 117 | ||
| 3041 | raw_keybuf c-src/emacs/src/keyboard.c 116 | ||
| 3042 | rbtp c.c 240 | ||
| 3043 | RCSid objc-src/PackInsp.m 30 | ||
| 3044 | read1 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ | ||
| 3045 | read2 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ | ||
| 3046 | readable_events c-src/emacs/src/keyboard.c /^readable_events (int flags)$/ | ||
| 3047 | READABLE_EVENTS_DO_TIMERS_NOW c-src/emacs/src/keyboard.c 346 | ||
| 3048 | READABLE_EVENTS_FILTER_EVENTS c-src/emacs/src/keyboard.c 347 | ||
| 3049 | READABLE_EVENTS_IGNORE_SQUEEZABLES c-src/emacs/src/keyboard.c 348 | ||
| 3050 | \readauxfile tex-src/texinfo.tex /^\\def\\readauxfile{%$/ | ||
| 3051 | read_char c-src/emacs/src/keyboard.c /^read_char (int commandflag, Lisp_Object map,$/ | ||
| 3052 | read_char_help_form_unwind c-src/emacs/src/keyboard.c /^read_char_help_form_unwind (void)$/ | ||
| 3053 | read_char_minibuf_menu_prompt c-src/emacs/src/keyboard.c /^read_char_minibuf_menu_prompt (int commandflag,$/ | ||
| 3054 | read_char_x_menu_prompt c-src/emacs/src/keyboard.c /^read_char_x_menu_prompt (Lisp_Object map,$/ | ||
| 3055 | read cp-src/conway.hpp /^ char read() { return alive; }$/ | ||
| 3056 | read_decoded_event_from_main_queue c-src/emacs/src/keyboard.c /^read_decoded_event_from_main_queue (struct timespe/ | ||
| 3057 | read_event_from_main_queue c-src/emacs/src/keyboard.c /^read_event_from_main_queue (struct timespec *end_t/ | ||
| 3058 | read_key_sequence_cmd c-src/emacs/src/keyboard.c 232 | ||
| 3059 | read-key-sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/ | ||
| 3060 | read_key_sequence c-src/emacs/src/keyboard.c /^read_key_sequence (Lisp_Object *keybuf, int bufsiz/ | ||
| 3061 | read_key_sequence_remapped c-src/emacs/src/keyboard.c 233 | ||
| 3062 | read-key-sequence-vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/ | ||
| 3063 | read_key_sequence_vs c-src/emacs/src/keyboard.c /^read_key_sequence_vs (Lisp_Object prompt, Lisp_Obj/ | ||
| 3064 | readline c-src/etags.c /^readline (linebuffer *lbp, FILE *stream)$/ | ||
| 3065 | readline_internal c-src/etags.c /^readline_internal (linebuffer *lbp, register FILE / | ||
| 3066 | Read_Lock/p ada-src/2ataspri.adb /^ procedure Read_Lock (L : in out Lock; Ceiling_V/ | ||
| 3067 | Read_Lock/p ada-src/2ataspri.ads /^ procedure Read_Lock (L : in out Lock; Ceiling_V/ | ||
| 3068 | read_menu_command c-src/emacs/src/keyboard.c /^read_menu_command (void)$/ | ||
| 3069 | read php-src/lce_functions.php /^ function read()$/ | ||
| 3070 | read_toc perl-src/htlmify-cystic /^sub read_toc ()$/ | ||
| 3071 | ReadVacation cp-src/functions.cpp /^void ReadVacation ( char *filename ) {$/ | ||
| 3072 | realloc c-src/emacs/src/gmalloc.c 1716 | ||
| 3073 | realloc c-src/emacs/src/gmalloc.c 65 | ||
| 3074 | realloc c-src/emacs/src/gmalloc.c 69 | ||
| 3075 | _realloc c-src/emacs/src/gmalloc.c /^_realloc (void *ptr, size_t size)$/ | ||
| 3076 | realloc c-src/emacs/src/gmalloc.c /^realloc (void *ptr, size_t size)$/ | ||
| 3077 | reallochook 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)$/ | ||
| 3080 | RE_BACKSLASH_ESCAPE_IN_LISTS c-src/emacs/src/regex.h 47 | ||
| 3081 | RE_BK_PLUS_QM c-src/emacs/src/regex.h 52 | ||
| 3082 | RECC_ALNUM c-src/emacs/src/regex.h 610 | ||
| 3083 | RECC_ALPHA c-src/emacs/src/regex.h 610 | ||
| 3084 | RECC_ASCII c-src/emacs/src/regex.h 617 | ||
| 3085 | RECC_BLANK c-src/emacs/src/regex.h 615 | ||
| 3086 | RECC_CNTRL c-src/emacs/src/regex.h 613 | ||
| 3087 | RECC_DIGIT c-src/emacs/src/regex.h 614 | ||
| 3088 | RECC_ERROR c-src/emacs/src/regex.h 609 | ||
| 3089 | RECC_GRAPH c-src/emacs/src/regex.h 611 | ||
| 3090 | RECC_LOWER c-src/emacs/src/regex.h 612 | ||
| 3091 | RECC_MULTIBYTE c-src/emacs/src/regex.h 616 | ||
| 3092 | RECC_NONASCII c-src/emacs/src/regex.h 616 | ||
| 3093 | RECC_PRINT c-src/emacs/src/regex.h 611 | ||
| 3094 | RECC_PUNCT c-src/emacs/src/regex.h 613 | ||
| 3095 | RECC_SPACE c-src/emacs/src/regex.h 615 | ||
| 3096 | RECC_UNIBYTE c-src/emacs/src/regex.h 617 | ||
| 3097 | RECC_UPPER c-src/emacs/src/regex.h 612 | ||
| 3098 | RECC_WORD c-src/emacs/src/regex.h 610 | ||
| 3099 | RECC_XDIGIT c-src/emacs/src/regex.h 614 | ||
| 3100 | recent_keys c-src/emacs/src/keyboard.c 100 | ||
| 3101 | recent-keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, / | ||
| 3102 | recent_keys_index c-src/emacs/src/keyboard.c 94 | ||
| 3103 | RE_CHAR_CLASSES c-src/emacs/src/regex.h 58 | ||
| 3104 | RE_CONTEXT_INDEP_ANCHORS c-src/emacs/src/regex.h 72 | ||
| 3105 | RE_CONTEXT_INDEP_OPS c-src/emacs/src/regex.h 80 | ||
| 3106 | RE_CONTEXT_INVALID_OPS c-src/emacs/src/regex.h 84 | ||
| 3107 | record_asynch_buffer_change c-src/emacs/src/keyboard.c /^record_asynch_buffer_change (void)$/ | ||
| 3108 | record_auto_save c-src/emacs/src/keyboard.c /^record_auto_save (void)$/ | ||
| 3109 | record_char c-src/emacs/src/keyboard.c /^record_char (Lisp_Object c)$/ | ||
| 3110 | record_menu_key c-src/emacs/src/keyboard.c /^record_menu_key (Lisp_Object c)$/ | ||
| 3111 | record_single_kboard_state c-src/emacs/src/keyboard.c /^record_single_kboard_state ()$/ | ||
| 3112 | record_xmalloc c-src/emacs/src/lisp.h /^extern void *record_xmalloc (size_t) ATTRIBUTE_ALL/ | ||
| 3113 | recover_top_level_message c-src/emacs/src/keyboard.c 138 | ||
| 3114 | Rectangle.getPos lua-src/test.lua /^function Rectangle.getPos ()$/ | ||
| 3115 | recursion-depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/ | ||
| 3116 | recursive_edit_1 c-src/emacs/src/keyboard.c /^recursive_edit_1 (void)$/ | ||
| 3117 | recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/ | ||
| 3118 | recursive_edit_unwind c-src/emacs/src/keyboard.c /^recursive_edit_unwind (Lisp_Object buffer)$/ | ||
| 3119 | RED cp-src/screen.hpp 16 | ||
| 3120 | RE_DEBUG c-src/emacs/src/regex.h 161 | ||
| 3121 | redirect c-src/emacs/src/lisp.h 663 | ||
| 3122 | RE_DOT_NEWLINE c-src/emacs/src/regex.h 88 | ||
| 3123 | RE_DOT_NOT_NULL c-src/emacs/src/regex.h 92 | ||
| 3124 | reduce prol-src/natded.prolog /^reduce((X^M)@N,L):- % beta reduction$/ | ||
| 3125 | reduce_subterm prol-src/natded.prolog /^reduce_subterm(M,M2):-$/ | ||
| 3126 | RE_DUP_MAX c-src/emacs/src/regex.h 253 | ||
| 3127 | RE_DUP_MAX c-src/emacs/src/regex.h 256 | ||
| 3128 | /ReEncode ps-src/rfc1245.ps /^\/ReEncode { $/ | ||
| 3129 | refreshPort pyt-src/server.py /^ def refreshPort(self):$/ | ||
| 3130 | RE_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{%$/ | ||
| 3133 | REG_BADBR c-src/emacs/src/regex.h 313 | ||
| 3134 | REG_BADPAT c-src/emacs/src/regex.h 305 | ||
| 3135 | REG_BADRPT c-src/emacs/src/regex.h 316 | ||
| 3136 | REG_EBRACE c-src/emacs/src/regex.h 312 | ||
| 3137 | REG_EBRACK c-src/emacs/src/regex.h 310 | ||
| 3138 | REG_ECOLLATE c-src/emacs/src/regex.h 306 | ||
| 3139 | REG_ECTYPE c-src/emacs/src/regex.h 307 | ||
| 3140 | REG_EEND c-src/emacs/src/regex.h 319 | ||
| 3141 | REG_EESCAPE c-src/emacs/src/regex.h 308 | ||
| 3142 | REG_ENOSYS c.c 279 | ||
| 3143 | REG_ENOSYS c-src/emacs/src/regex.h 297 | ||
| 3144 | REG_EPAREN c-src/emacs/src/regex.h 311 | ||
| 3145 | REG_ERANGE c-src/emacs/src/regex.h 314 | ||
| 3146 | REG_ERANGEX c-src/emacs/src/regex.h 322 | ||
| 3147 | REG_ERPAREN c-src/emacs/src/regex.h 321 | ||
| 3148 | reg_errcode_t c.c 279 | ||
| 3149 | reg_errcode_t c-src/emacs/src/regex.h 323 | ||
| 3150 | REG_ESIZE c-src/emacs/src/regex.h 320 | ||
| 3151 | REG_ESPACE c-src/emacs/src/regex.h 315 | ||
| 3152 | REG_ESUBREG c-src/emacs/src/regex.h 309 | ||
| 3153 | regex c-src/etags.c 219 | ||
| 3154 | regexfile make-src/Makefile /^regexfile: Makefile$/ | ||
| 3155 | _REGEX_H c-src/emacs/src/regex.h 21 | ||
| 3156 | REGEX make-src/Makefile /^REGEX=\/[ \\t]*DEFVAR_[A-Z_ \\t\\n(]+"\\([^"]+\\)"\/$/ | ||
| 3157 | REGEXOBJS make-src/Makefile /^REGEXOBJS=regex.o$/ | ||
| 3158 | regex.o make-src/Makefile /^regex.o: emacs\/src\/regex.c$/ | ||
| 3159 | regexp c-src/etags.c 256 | ||
| 3160 | regexp c-src/etags.c 268 | ||
| 3161 | regex_tag_multiline c-src/etags.c /^regex_tag_multiline (void)$/ | ||
| 3162 | regex_t c-src/emacs/src/regex.h 416 | ||
| 3163 | REG_EXTENDED c-src/emacs/src/regex.h 263 | ||
| 3164 | REG_ICASE c-src/emacs/src/regex.h 267 | ||
| 3165 | registerAction objcpp-src/SimpleCalc.M /^- registerAction:(SEL)action$/ | ||
| 3166 | register_heapinfo c-src/emacs/src/gmalloc.c /^register_heapinfo (void)$/ | ||
| 3167 | regmatch_t c-src/emacs/src/regex.h 451 | ||
| 3168 | REG_NEWLINE c-src/emacs/src/regex.h 272 | ||
| 3169 | REG_NOERROR c-src/emacs/src/regex.h 300 | ||
| 3170 | REG_NOMATCH c-src/emacs/src/regex.h 301 | ||
| 3171 | REG_NOSUB c-src/emacs/src/regex.h 276 | ||
| 3172 | REG_NOTBOL c-src/emacs/src/regex.h 286 | ||
| 3173 | REG_NOTEOL c-src/emacs/src/regex.h 289 | ||
| 3174 | regoff_t c-src/emacs/src/regex.h 423 | ||
| 3175 | regs_allocated c-src/emacs/src/regex.h 379 | ||
| 3176 | regs cp-src/screen.cpp 16 | ||
| 3177 | regs c-src/etags.c 263 | ||
| 3178 | regset c-src/h.h 31 | ||
| 3179 | REGS_FIXED c-src/emacs/src/regex.h 378 | ||
| 3180 | REGS_REALLOCATE c-src/emacs/src/regex.h 377 | ||
| 3181 | REGS_UNALLOCATED c-src/emacs/src/regex.h 376 | ||
| 3182 | reg_syntax_t c-src/emacs/src/regex.h 43 | ||
| 3183 | regular_top_level_message c-src/emacs/src/keyboard.c 143 | ||
| 3184 | rehash_size c-src/emacs/src/lisp.h 1835 | ||
| 3185 | rehash_threshold c-src/emacs/src/lisp.h 1839 | ||
| 3186 | RE_HAT_LISTS_NOT_NEWLINE c-src/emacs/src/regex.h 96 | ||
| 3187 | RE_INTERVALS c-src/emacs/src/regex.h 101 | ||
| 3188 | re_iswctype c-src/emacs/src/regex.h 602 | ||
| 3189 | relative_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$/ | ||
| 3195 | release distrib make-src/Makefile /^release distrib: web$/ | ||
| 3196 | RELEASELIST make-src/Makefile /^RELEASELIST=pot@gnu.org xemacs-review@xemacs.org j/ | ||
| 3197 | ReleaseNameString pas-src/common.pas /^procedure ReleaseNameString; (* (var NSP: NameStri/ | ||
| 3198 | RE_LIMITED_OPS c-src/emacs/src/regex.h 105 | ||
| 3199 | removeexp prol-src/natded.prolog /^removeexp(E,E,'NIL'):-!.$/ | ||
| 3200 | RemoveLayer lua-src/allegro.lua /^function RemoveLayer ()$/ | ||
| 3201 | RemoveUnderlineControl pas-src/common.pas /^function RemoveUnderlineControl; (*($/ | ||
| 3202 | RE_NEWLINE_ALT c-src/emacs/src/regex.h 109 | ||
| 3203 | RE_NO_BK_BRACES c-src/emacs/src/regex.h 114 | ||
| 3204 | RE_NO_BK_PARENS c-src/emacs/src/regex.h 118 | ||
| 3205 | RE_NO_BK_REFS c-src/emacs/src/regex.h 122 | ||
| 3206 | RE_NO_BK_VBAR c-src/emacs/src/regex.h 126 | ||
| 3207 | RE_NO_EMPTY_RANGES c-src/emacs/src/regex.h 132 | ||
| 3208 | RE_NO_GNU_OPS c-src/emacs/src/regex.h 144 | ||
| 3209 | RE_NO_NEWLINE_ANCHOR c-src/emacs/src/regex.h 153 | ||
| 3210 | RE_NO_POSIX_BACKTRACKING c-src/emacs/src/regex.h 140 | ||
| 3211 | RE_NREGS c-src/emacs/src/regex.h 440 | ||
| 3212 | re_nsub c-src/emacs/src/regex.h 364 | ||
| 3213 | reorder_modifiers c-src/emacs/src/keyboard.c /^reorder_modifiers (Lisp_Object symbol)$/ | ||
| 3214 | re_pattern_buffer c-src/emacs/src/regex.h 335 | ||
| 3215 | re_pattern_buffer c-src/h.h 119 | ||
| 3216 | ReprOfChar pas-src/common.pas /^function ReprOfChar; (*( ch : char) : NameString;*/ | ||
| 3217 | __repr__ pyt-src/server.py /^ def __repr__(self):$/ | ||
| 3218 | request c.c /^request request (a, b)$/ | ||
| 3219 | requeued_events_pending_p c-src/emacs/src/keyboard.c /^requeued_events_pending_p (void)$/ | ||
| 3220 | required_argument c-src/getopt.h 90 | ||
| 3221 | require merc-src/accumulator.m /^:- import_module require.$/ | ||
| 3222 | re_registers c-src/emacs/src/regex.h 428 | ||
| 3223 | \resetmathfonts tex-src/texinfo.tex /^\\def\\resetmathfonts{%$/ | ||
| 3224 | reset-this-command-lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/ | ||
| 3225 | RE_SHY_GROUPS c-src/emacs/src/regex.h 150 | ||
| 3226 | restore_getcjmp c-src/emacs/src/keyboard.c /^restore_getcjmp (sys_jmp_buf temp)$/ | ||
| 3227 | restore_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}$/ | ||
| 3236 | RESUME_POLLING c-src/emacs/src/keyboard.c 2170 | ||
| 3237 | RE_SYNTAX_AWK c-src/emacs/src/regex.h 186 | ||
| 3238 | RE_SYNTAX_ED c-src/emacs/src/regex.h 216 | ||
| 3239 | RE_SYNTAX_EGREP c-src/emacs/src/regex.h 206 | ||
| 3240 | RE_SYNTAX_EMACS c-src/emacs/src/regex.h 183 | ||
| 3241 | RE_SYNTAX_GNU_AWK c-src/emacs/src/regex.h 193 | ||
| 3242 | RE_SYNTAX_GREP c-src/emacs/src/regex.h 201 | ||
| 3243 | RE_SYNTAX_POSIX_AWK c-src/emacs/src/regex.h 197 | ||
| 3244 | RE_SYNTAX_POSIX_BASIC c-src/emacs/src/regex.h 225 | ||
| 3245 | _RE_SYNTAX_POSIX_COMMON c-src/emacs/src/regex.h 221 | ||
| 3246 | RE_SYNTAX_POSIX_EGREP c-src/emacs/src/regex.h 212 | ||
| 3247 | RE_SYNTAX_POSIX_EXTENDED c-src/emacs/src/regex.h 234 | ||
| 3248 | RE_SYNTAX_POSIX_MINIMAL_BASIC c-src/emacs/src/regex.h 231 | ||
| 3249 | RE_SYNTAX_POSIX_MINIMAL_EXTENDED c-src/emacs/src/regex.h 242 | ||
| 3250 | RE_SYNTAX_SED c-src/emacs/src/regex.h 218 | ||
| 3251 | RE_TRANSLATE_TYPE c-src/emacs/src/regex.h 332 | ||
| 3252 | return_to_command_loop c-src/emacs/src/keyboard.c 135 | ||
| 3253 | RETURN_UNGCPRO c-src/emacs/src/lisp.h /^#define RETURN_UNGCPRO(expr) \\$/ | ||
| 3254 | RE_UNMATCHED_RIGHT_PAREN_ORD c-src/emacs/src/regex.h 136 | ||
| 3255 | reverse prol-src/natded.prolog /^reverse([],Ws,Ws).$/ | ||
| 3256 | revert objc-src/PackInsp.m /^-revert:sender$/ | ||
| 3257 | re_wchar_t c-src/emacs/src/regex.h 600 | ||
| 3258 | re_wchar_t c-src/emacs/src/regex.h 623 | ||
| 3259 | re_wctype c-src/emacs/src/regex.h 601 | ||
| 3260 | re_wctype_t c-src/emacs/src/regex.h 599 | ||
| 3261 | re_wctype_t c-src/emacs/src/regex.h 618 | ||
| 3262 | re_wctype_to_bit c-src/emacs/src/regex.h /^# define re_wctype_to_bit(cc) 0$/ | ||
| 3263 | /RF ps-src/rfc1245.ps /^\/RF { $/ | ||
| 3264 | right c-src/etags.c 216 | ||
| 3265 | right_shift y-src/cccp.y /^right_shift (a, b)$/ | ||
| 3266 | ring1 c.c 241 | ||
| 3267 | ring2 c.c 242 | ||
| 3268 | rm_eo c-src/emacs/src/regex.h 450 | ||
| 3269 | rm_so c-src/emacs/src/regex.h 449 | ||
| 3270 | \rm tex-src/texinfo.tex /^\\def\\rm{\\realbackslash rm }%$/ | ||
| 3271 | rng_base cp-src/Range.h 79 | ||
| 3272 | rng_inc cp-src/Range.h 81 | ||
| 3273 | rng_limit cp-src/Range.h 80 | ||
| 3274 | rng_nelem cp-src/Range.h 83 | ||
| 3275 | rosso cp-src/c.C 40 | ||
| 3276 | /R ps-src/rfc1245.ps /^\/R { $/ | ||
| 3277 | /RR ps-src/rfc1245.ps /^\/RR { $/ | ||
| 3278 | RSH y-src/cccp.c 17 | ||
| 3279 | rsyncfromfly make-src/Makefile /^rsyncfromfly:$/ | ||
| 3280 | rsynctofly make-src/Makefile /^rsynctofly:$/ | ||
| 3281 | RTE/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$/ | ||
| 3285 | rtint c-src/h.h 60 | ||
| 3286 | rtint c-src/h.h 68 | ||
| 3287 | rtstr c-src/h.h 61 | ||
| 3288 | rtstr c-src/h.h 69 | ||
| 3289 | rtunion_def c-src/h.h 58 | ||
| 3290 | rtunion_def c-src/h.h 64 | ||
| 3291 | rtx c-src/h.h 62 | ||
| 3292 | rtxnp c-src/h.h 71 | ||
| 3293 | rtxp 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)$/ | ||
| 3303 | RUN make-src/Makefile /^RUN=$/ | ||
| 3304 | RUN make-src/Makefile /^RUN=time --quiet --format '%U + %S: %E'$/ | ||
| 3305 | RXINCLUDE make-src/Makefile /^RXINCLUDE=-Iemacs\/src$/ | ||
| 3306 | s1 cp-src/c.C 32 | ||
| 3307 | /s1 ps-src/rfc1245.ps /^\/s1 1 string def$/ | ||
| 3308 | s2 cp-src/c.C 35 | ||
| 3309 | SAFE_ALLOCA c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA(size) ((size) <= sa_avail \\/ | ||
| 3310 | SAFE_ALLOCA_LISP c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA_LISP(buf, nelt) \\$/ | ||
| 3311 | SAFE_ALLOCA_STRING c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA_STRING(ptr, string) \\$/ | ||
| 3312 | SAFE_FREE c-src/emacs/src/lisp.h /^#define SAFE_FREE() \\$/ | ||
| 3313 | SAFE_NALLOCA c-src/emacs/src/lisp.h /^#define SAFE_NALLOCA(buf, multiplier, nitems) \\/ | ||
| 3314 | safe_run_hook_funcall c-src/emacs/src/keyboard.c /^safe_run_hook_funcall (ptrdiff_t nargs, Lisp_Objec/ | ||
| 3315 | safe_run_hooks_1 c-src/emacs/src/keyboard.c /^safe_run_hooks_1 (ptrdiff_t nargs, Lisp_Object *ar/ | ||
| 3316 | safe_run_hooks c-src/emacs/src/keyboard.c /^safe_run_hooks (Lisp_Object hook)$/ | ||
| 3317 | safe_run_hooks_error c-src/emacs/src/keyboard.c /^safe_run_hooks_error (Lisp_Object error, ptrdiff_t/ | ||
| 3318 | Sample 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 / | ||
| 3323 | SAVE_FUNCPOINTER c-src/emacs/src/lisp.h 2049 | ||
| 3324 | save_getcjmp c-src/emacs/src/keyboard.c /^save_getcjmp (sys_jmp_buf temp)$/ | ||
| 3325 | SAVE_INTEGER c-src/emacs/src/lisp.h 2048 | ||
| 3326 | /savematrix ps-src/rfc1245.ps /^\/savematrix {$/ | ||
| 3327 | savenstr c-src/etags.c /^savenstr (const char *cp, int len)$/ | ||
| 3328 | SAVE_OBJECT c-src/emacs/src/lisp.h 2051 | ||
| 3329 | SAVE_POINTER c-src/emacs/src/lisp.h 2050 | ||
| 3330 | save pyt-src/server.py /^ def save(self):$/ | ||
| 3331 | SAVE_SLOT_BITS c-src/emacs/src/lisp.h 2055 | ||
| 3332 | savestr c-src/etags.c /^savestr (const char *cp)$/ | ||
| 3333 | SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2062 | ||
| 3334 | SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2114 | ||
| 3335 | SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2123 | ||
| 3336 | save_type c-src/emacs/src/lisp.h /^save_type (struct Lisp_Save_Value *v, int n)$/ | ||
| 3337 | SAVE_TYPE_FUNCPTR_PTR_OBJ c-src/emacs/src/lisp.h 2076 | ||
| 3338 | SAVE_TYPE_INT_INT c-src/emacs/src/lisp.h 2066 | ||
| 3339 | SAVE_TYPE_INT_INT_INT c-src/emacs/src/lisp.h 2067 | ||
| 3340 | SAVE_TYPE_MEMORY c-src/emacs/src/lisp.h 2080 | ||
| 3341 | SAVE_TYPE_OBJ_OBJ c-src/emacs/src/lisp.h 2069 | ||
| 3342 | SAVE_TYPE_OBJ_OBJ_OBJ c-src/emacs/src/lisp.h 2070 | ||
| 3343 | SAVE_TYPE_OBJ_OBJ_OBJ_OBJ c-src/emacs/src/lisp.h 2071 | ||
| 3344 | SAVE_TYPE_PTR_INT c-src/emacs/src/lisp.h 2073 | ||
| 3345 | SAVE_TYPE_PTR_OBJ c-src/emacs/src/lisp.h 2074 | ||
| 3346 | SAVE_TYPE_PTR_PTR c-src/emacs/src/lisp.h 2075 | ||
| 3347 | SAVE_UNUSED c-src/emacs/src/lisp.h 2047 | ||
| 3348 | SAVE_VALUEP c-src/emacs/src/lisp.h /^SAVE_VALUEP (Lisp_Object x)$/ | ||
| 3349 | SAVE_VALUE_SLOTS c-src/emacs/src/lisp.h 2058 | ||
| 3350 | say go-src/test.go /^func say(msg string) {$/ | ||
| 3351 | __sbrk c-src/emacs/src/gmalloc.c 1513 | ||
| 3352 | SBYTES c-src/emacs/src/lisp.h /^SBYTES (Lisp_Object string)$/ | ||
| 3353 | scan_separators c-src/etags.c /^scan_separators (char *name)$/ | ||
| 3354 | S c.c 156 | ||
| 3355 | SCHARS c-src/emacs/src/lisp.h /^SCHARS (Lisp_Object string)$/ | ||
| 3356 | Scheme_functions c-src/etags.c /^Scheme_functions (FILE *inf)$/ | ||
| 3357 | Scheme_help c-src/etags.c 667 | ||
| 3358 | Scheme_suffixes c-src/etags.c 665 | ||
| 3359 | scolonseen c-src/etags.c 2447 | ||
| 3360 | scratch c-src/sysdep.h 56 | ||
| 3361 | SCREEN_FP cp-src/screen.hpp /^#define SCREEN_FP(x,y) \\$/ | ||
| 3362 | SCREEN_START cp-src/screen.hpp 33 | ||
| 3363 | scroll_bar_parts c-src/emacs/src/keyboard.c 5189 | ||
| 3364 | s c-src/emacs/src/lisp.h 4672 | ||
| 3365 | s c-src/emacs/src/lisp.h 4678 | ||
| 3366 | \sc tex-src/texinfo.tex /^\\def\\sc#1{{\\smallcaps#1}} % smallcaps font$/ | ||
| 3367 | SDATA c-src/emacs/src/lisp.h /^SDATA (Lisp_Object string)$/ | ||
| 3368 | SDTrefGetInteger pas-src/common.pas /^function SDTrefGetInteger : integer;$/ | ||
| 3369 | SDTrefIsEnd pas-src/common.pas /^function SDTrefIsEnd : Boolean;$/ | ||
| 3370 | SDTrefRecToString pas-src/common.pas /^procedure SDTrefRecToString (* ($/ | ||
| 3371 | SDTrefSkipSpaces pas-src/common.pas /^procedure SDTrefSkipSpaces;$/ | ||
| 3372 | SDTrefStringToRec 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{$/ | ||
| 3382 | sec=\relax tex-src/texinfo.tex /^\\let\\appendixsec=\\relax$/ | ||
| 3383 | section_href perl-src/htlmify-cystic /^sub section_href ($)$/ | ||
| 3384 | section_name perl-src/htlmify-cystic 12 | ||
| 3385 | section_name perl-src/htlmify-cystic /^sub section_name ($)$/ | ||
| 3386 | section perl-src/htlmify-cystic 25 | ||
| 3387 | section=\relax tex-src/texinfo.tex /^\\let\\appendixsection=\\relax$/ | ||
| 3388 | section_toc perl-src/htlmify-cystic 15 | ||
| 3389 | section_url_base perl-src/htlmify-cystic /^sub section_url_base ()$/ | ||
| 3390 | section_url_name perl-src/htlmify-cystic /^sub section_url_name ()$/ | ||
| 3391 | section_url perl-src/htlmify-cystic /^sub section_url ()$/ | ||
| 3392 | \seczzz tex-src/texinfo.tex /^\\def\\seczzz #1{\\seccheck{section}%$/ | ||
| 3393 | select_last prol-src/natded.prolog /^select_last([X],X,[]).$/ | ||
| 3394 | SelectLayer lua-src/allegro.lua /^function SelectLayer (layer)$/ | ||
| 3395 | select prol-src/natded.prolog /^select(X,[X|Xs],Xs).$/ | ||
| 3396 | select-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table ()$/ | ||
| 3397 | select-tags-table-mode el-src/emacs/lisp/progmodes/etags.el /^(define-derived-mode select-tags-table-mode specia/ | ||
| 3398 | select-tags-table-mode-map el-src/emacs/lisp/progmodes/etags.el /^(defvar select-tags-table-mode-map ; Doc string?$/ | ||
| 3399 | select-tags-table-quit el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table-quit ()$/ | ||
| 3400 | select-tags-table-select el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table-select (button)$/ | ||
| 3401 | Self/f ada-src/2ataspri.adb /^ function Self return TCB_Ptr is$/ | ||
| 3402 | Self/f ada-src/2ataspri.ads /^ function Self return TCB_Ptr;$/ | ||
| 3403 | send objc-src/Subprocess.m /^- send:(const char *)string$/ | ||
| 3404 | send objc-src/Subprocess.m /^- send:(const char *)string withNewline:(BOOL)want/ | ||
| 3405 | separator_names c-src/emacs/src/keyboard.c 7372 | ||
| 3406 | serializeToVars php-src/lce_functions.php /^ function serializeToVars($prefix)$/ | ||
| 3407 | ServerEdit pyt-src/server.py /^class ServerEdit(Frame):$/ | ||
| 3408 | Server pyt-src/server.py /^class Server:$/ | ||
| 3409 | set_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/ | ||
| 3412 | set_char_table_contents c-src/emacs/src/lisp.h /^set_char_table_contents (Lisp_Object table, ptrdif/ | ||
| 3413 | set_char_table_defalt c-src/emacs/src/lisp.h /^set_char_table_defalt (Lisp_Object table, Lisp_Obj/ | ||
| 3414 | set_char_table_extras c-src/emacs/src/lisp.h /^set_char_table_extras (Lisp_Object table, ptrdiff_/ | ||
| 3415 | set_char_table_purpose c-src/emacs/src/lisp.h /^set_char_table_purpose (Lisp_Object table, Lisp_Ob/ | ||
| 3416 | set cp-src/conway.hpp /^ void set(void) { alive = 1; }$/ | ||
| 3417 | setDate 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}$/ | ||
| 3419 | setDelegate objc-src/Subprocess.m /^- setDelegate:anObject$/ | ||
| 3420 | \setfilename tex-src/texinfo.tex /^\\def\\setfilename{%$/ | ||
| 3421 | set_hash_key_slot c-src/emacs/src/lisp.h /^set_hash_key_slot (struct Lisp_Hash_Table *h, ptrd/ | ||
| 3422 | set_hash_value_slot c-src/emacs/src/lisp.h /^set_hash_value_slot (struct Lisp_Hash_Table *h, pt/ | ||
| 3423 | set_inc cp-src/Range.h /^ void set_inc (double i) { rng_inc = i; }$/ | ||
| 3424 | set-input-interrupt-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/ | ||
| 3425 | set-input-meta-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/ | ||
| 3426 | set-input-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/ | ||
| 3427 | set_limit cp-src/Range.h /^ void set_limit (double l) { rng_limit = l; }$/ | ||
| 3428 | /setmanualfeed ps-src/rfc1245.ps /^\/setmanualfeed {$/ | ||
| 3429 | set merc-src/accumulator.m /^:- import_module set.$/ | ||
| 3430 | set-output-flow-control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/ | ||
| 3431 | set_overlay_plist c-src/emacs/src/lisp.h /^set_overlay_plist (Lisp_Object overlay, Lisp_Objec/ | ||
| 3432 | Set_Own_Priority/p ada-src/2ataspri.adb /^ procedure Set_Own_Priority (Prio : System.Any_P/ | ||
| 3433 | Set_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 {$/ | ||
| 3436 | set_poll_suppress_count c-src/emacs/src/keyboard.c /^set_poll_suppress_count (int count)$/ | ||
| 3437 | Set_Priority/p ada-src/2ataspri.adb /^ procedure Set_Priority$/ | ||
| 3438 | Set_Priority/p ada-src/2ataspri.ads /^ procedure Set_Priority (T : TCB_Ptr; Prio : Sys/ | ||
| 3439 | set_prop c-src/emacs/src/keyboard.c /^set_prop (ptrdiff_t idx, Lisp_Object val)$/ | ||
| 3440 | SETPRT f-src/entry.for /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/ | ||
| 3441 | SETPRT f-src/entry.strange /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/ | ||
| 3442 | SETPRT f-src/entry.strange_suffix /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/ | ||
| 3443 | set-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{%$/ | ||
| 3445 | setref tex-src/texinfo.tex /^\\expandafter\\expandafter\\expandafter\\appendixsetre/ | ||
| 3446 | setRevertButtonTitle objc-src/PackInsp.m /^-setRevertButtonTitle$/ | ||
| 3447 | set_save_integer c-src/emacs/src/lisp.h /^set_save_integer (Lisp_Object obj, int n, ptrdiff_/ | ||
| 3448 | set_save_pointer c-src/emacs/src/lisp.h /^set_save_pointer (Lisp_Object obj, int n, void *va/ | ||
| 3449 | set_string_intervals c-src/emacs/src/lisp.h /^set_string_intervals (Lisp_Object s, INTERVAL i)$/ | ||
| 3450 | set_sub_char_table_contents c-src/emacs/src/lisp.h /^set_sub_char_table_contents (Lisp_Object table, pt/ | ||
| 3451 | SET_SYMBOL_BLV c-src/emacs/src/lisp.h /^SET_SYMBOL_BLV (struct Lisp_Symbol *sym, struct Li/ | ||
| 3452 | set_symbol_function c-src/emacs/src/lisp.h /^set_symbol_function (Lisp_Object sym, Lisp_Object / | ||
| 3453 | SET_SYMBOL_FWD c-src/emacs/src/lisp.h /^SET_SYMBOL_FWD (struct Lisp_Symbol *sym, union Lis/ | ||
| 3454 | set_symbol_next c-src/emacs/src/lisp.h /^set_symbol_next (Lisp_Object sym, struct Lisp_Symb/ | ||
| 3455 | set_symbol_plist c-src/emacs/src/lisp.h /^set_symbol_plist (Lisp_Object sym, Lisp_Object pli/ | ||
| 3456 | SET_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}}$/ | ||
| 3460 | setup cp-src/c.C 5 | ||
| 3461 | set_upto merc-src/accumulator.m /^:- func set_upto(accu_case, int) = set(accu_goal_i/ | ||
| 3462 | set_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}%$/ | ||
| 3467 | shift 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{%$/ | ||
| 3470 | should_attempt_accu_transform_2 merc-src/accumulator.m /^:- pred should_attempt_accu_transform_2(module_inf/ | ||
| 3471 | should_attempt_accu_transform merc-src/accumulator.m /^:- pred should_attempt_accu_transform(module_info:/ | ||
| 3472 | shouldLoad objc-src/PackInsp.m /^-(BOOL)shouldLoad$/ | ||
| 3473 | should_see_this_array_type cp-src/c.C 156 | ||
| 3474 | should_see_this_function_pointer cp-src/c.C 153 | ||
| 3475 | should_see_this_one_enclosed_in_extern_C cp-src/c.C 149 | ||
| 3476 | show erl-src/gs_dialog.erl /^show(Module, Title, Message, Args) ->$/ | ||
| 3477 | showError objc-src/Subprocess.m /^showError (const char *errorString, id theDelegate/ | ||
| 3478 | show_help_echo c-src/emacs/src/keyboard.c /^show_help_echo (Lisp_Object help, Lisp_Object wind/ | ||
| 3479 | showInfo objc-src/PackInsp.m /^-showInfo:sender$/ | ||
| 3480 | sig c-src/emacs/src/keyboard.c 7238 | ||
| 3481 | signal_handler1 c-src/h.h 83 | ||
| 3482 | signal_handler c-src/h.h 82 | ||
| 3483 | signal_handler_t c-src/h.h 94 | ||
| 3484 | SimpleCalc objcpp-src/SimpleCalc.H /^@interface SimpleCalc:Object$/ | ||
| 3485 | simulation 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}}$/ | ||
| 3488 | single_kboard c-src/emacs/src/keyboard.c 89 | ||
| 3489 | single_kboard_state c-src/emacs/src/keyboard.c /^single_kboard_state ()$/ | ||
| 3490 | SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c 6212 | ||
| 3491 | SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c 6763 | ||
| 3492 | SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c /^#define SINGLE_LETTER_MOD(BIT) \\$/ | ||
| 3493 | \singlespace tex-src/texinfo.tex /^\\def\\singlespace{%$/ | ||
| 3494 | site cp-src/conway.hpp 5 | ||
| 3495 | site cp-src/conway.hpp /^ site(int xi, int yi): x(xi), y(yi), alive(0) {/ | ||
| 3496 | size c-src/emacs/src/gmalloc.c 156 | ||
| 3497 | size c-src/emacs/src/gmalloc.c 163 | ||
| 3498 | size c-src/emacs/src/gmalloc.c 1862 | ||
| 3499 | size c-src/emacs/src/lisp.h 1364 | ||
| 3500 | size c-src/emacs/src/lisp.h 1390 | ||
| 3501 | size c-src/etags.c 236 | ||
| 3502 | size c-src/etags.c 2522 | ||
| 3503 | SIZEFORMAT objc-src/PackInsp.m 57 | ||
| 3504 | skeyseen c-src/etags.c 2445 | ||
| 3505 | SkipBlanks pas-src/common.pas /^function SkipBlanks; (*($/ | ||
| 3506 | SkipChars pas-src/common.pas /^function SkipChars; (*($/ | ||
| 3507 | skip_name c-src/etags.c /^skip_name (char *cp)$/ | ||
| 3508 | skip_non_spaces c-src/etags.c /^skip_non_spaces (char *cp)$/ | ||
| 3509 | skip_spaces c-src/etags.c /^skip_spaces (char *cp)$/ | ||
| 3510 | SkipSpaces 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/ | ||
| 3517 | snarf-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar snarf-tag-function nil$/ | ||
| 3518 | snone c-src/etags.c 2443 | ||
| 3519 | solutions merc-src/accumulator.m /^:- import_module solutions.$/ | ||
| 3520 | some_mouse_moved c-src/emacs/src/keyboard.c /^some_mouse_moved (void)$/ | ||
| 3521 | #some-storage forth-src/test-forth.fth /^2000 buffer: #some-storage$/ | ||
| 3522 | spacer c-src/emacs/src/lisp.h 1975 | ||
| 3523 | spacer c-src/emacs/src/lisp.h 1982 | ||
| 3524 | spacer c-src/emacs/src/lisp.h 2036 | ||
| 3525 | spacer c-src/emacs/src/lisp.h 2205 | ||
| 3526 | space tex-src/texinfo.tex /^ {#2\\labelspace #1}\\dotfill\\doshortpageno{#3}}%/ | ||
| 3527 | space tex-src/texinfo.tex /^ \\dosubsubsecentry{#2.#3.#4.#5\\labelspace#1}{#6}}/ | ||
| 3528 | specbinding c-src/emacs/src/lisp.h 2955 | ||
| 3529 | specbind_tag c-src/emacs/src/lisp.h 2943 | ||
| 3530 | specialsymbol prol-src/natded.prolog /^specialsymbol(C1,C2,S):-$/ | ||
| 3531 | SPECPDL_BACKTRACE c-src/emacs/src/lisp.h 2948 | ||
| 3532 | SPECPDL_INDEX c-src/emacs/src/lisp.h /^SPECPDL_INDEX (void)$/ | ||
| 3533 | SPECPDL_LET c-src/emacs/src/lisp.h 2949 | ||
| 3534 | SPECPDL_LET_DEFAULT c-src/emacs/src/lisp.h 2952 | ||
| 3535 | SPECPDL_LET_LOCAL c-src/emacs/src/lisp.h 2951 | ||
| 3536 | SPECPDL_UNWIND c-src/emacs/src/lisp.h 2944 | ||
| 3537 | SPECPDL_UNWIND_INT c-src/emacs/src/lisp.h 2946 | ||
| 3538 | SPECPDL_UNWIND_PTR c-src/emacs/src/lisp.h 2945 | ||
| 3539 | SPECPDL_UNWIND_VOID c-src/emacs/src/lisp.h 2947 | ||
| 3540 | splitexp 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}$/ | ||
| 3545 | Square.something:Bar lua-src/test.lua /^function Square.something:Bar ()$/ | ||
| 3546 | srclist make-src/Makefile /^srclist: Makefile$/ | ||
| 3547 | SRCS make-src/Makefile /^SRCS=Makefile ${ADASRC} ${ASRC} ${CSRC} ${CPSRC} $/ | ||
| 3548 | SREF c-src/emacs/src/lisp.h /^SREF (Lisp_Object string, ptrdiff_t index)$/ | ||
| 3549 | ss3 c.c 255 | ||
| 3550 | SSDATA c-src/emacs/src/lisp.h /^SSDATA (Lisp_Object string)$/ | ||
| 3551 | SSET c-src/emacs/src/lisp.h /^SSET (Lisp_Object string, ptrdiff_t index, unsigne/ | ||
| 3552 | sss1 c.c 252 | ||
| 3553 | sss2 c.c 253 | ||
| 3554 | sstab prol-src/natded.prolog /^sstab(2,'C',',').$/ | ||
| 3555 | stack c.c 155 | ||
| 3556 | STACK_CONS c-src/emacs/src/lisp.h /^#define STACK_CONS(a, b) \\$/ | ||
| 3557 | stagseen c-src/etags.c 2446 | ||
| 3558 | standalone make-src/Makefile /^standalone:$/ | ||
| 3559 | \startcontents tex-src/texinfo.tex /^\\def\\startcontents#1{%$/ | ||
| 3560 | start c-src/emacs/src/keyboard.c 8753 | ||
| 3561 | start c-src/emacs/src/lisp.h 2038 | ||
| 3562 | start c-src/emacs/src/regex.h 431 | ||
| 3563 | StartDay cp-src/functions.cpp /^Date StartDay(Date a,int days){\/\/Function to calcu/ | ||
| 3564 | \startenumeration tex-src/texinfo.tex /^\\def\\startenumeration#1{%$/ | ||
| 3565 | start php-src/lce_functions.php /^ function start($line, $class)$/ | ||
| 3566 | start_polling c-src/emacs/src/keyboard.c /^start_polling (void)$/ | ||
| 3567 | =starts-with-equals! scm-src/test.scm /^(define =starts-with-equals! #t)$/ | ||
| 3568 | start_up prol-src/natded.prolog /^start_up:-$/ | ||
| 3569 | start y-src/cccp.y 143 | ||
| 3570 | STATE_ABORT php-src/lce_functions.php 25 | ||
| 3571 | STATE_COMPRESSD objc-src/PackInsp.m 54 | ||
| 3572 | STATE_INSTALLED objc-src/PackInsp.m 53 | ||
| 3573 | STATE_LOOP php-src/lce_functions.php 27 | ||
| 3574 | STATE_OK php-src/lce_functions.php 26 | ||
| 3575 | state_protected_p c-src/emacs/src/gmalloc.c 400 | ||
| 3576 | STAT_EQ objc-src/PackInsp.m /^#define STAT_EQ(s1, s2) ((s1)->st_ino == (s2)->st_/ | ||
| 3577 | statetable html-src/algrthms.html /^Next$/ | ||
| 3578 | STATE_UNINSTALLED objc-src/PackInsp.m 52 | ||
| 3579 | staticetags make-src/Makefile /^staticetags:$/ | ||
| 3580 | st_C_attribute c-src/etags.c 2209 | ||
| 3581 | st_C_class c-src/etags.c 2212 | ||
| 3582 | st_C_define c-src/etags.c 2213 | ||
| 3583 | st_C_enum c-src/etags.c 2213 | ||
| 3584 | st_C_extern c-src/etags.c 2213 | ||
| 3585 | st_C_gnumacro c-src/etags.c 2208 | ||
| 3586 | st_C_ignore c-src/etags.c 2209 | ||
| 3587 | st_C_javastruct c-src/etags.c 2210 | ||
| 3588 | st_C_objend c-src/etags.c 2207 | ||
| 3589 | st_C_objimpl c-src/etags.c 2207 | ||
| 3590 | st_C_objprot c-src/etags.c 2207 | ||
| 3591 | st_C_operator c-src/etags.c 2211 | ||
| 3592 | st_C_struct c-src/etags.c 2213 | ||
| 3593 | st_C_template c-src/etags.c 2212 | ||
| 3594 | st_C_typedef c-src/etags.c 2213 | ||
| 3595 | STDIN c-src/etags.c 408 | ||
| 3596 | STDIN c-src/etags.c 411 | ||
| 3597 | step cp-src/clheir.hpp /^ virtual void step(void) { }$/ | ||
| 3598 | step cp-src/conway.hpp /^ void step(void) { alive = next_alive; }$/ | ||
| 3599 | step_everybody cp-src/clheir.cpp /^void step_everybody(void)$/ | ||
| 3600 | st_none c-src/etags.c 2206 | ||
| 3601 | STOP_POLLING c-src/emacs/src/keyboard.c 2166 | ||
| 3602 | stop_polling c-src/emacs/src/keyboard.c /^stop_polling (void)$/ | ||
| 3603 | stored_goal_plain_call merc-src/accumulator.m /^:- inst stored_goal_plain_call for goal_store.stor/ | ||
| 3604 | store_info merc-src/accumulator.m /^:- type store_info$/ | ||
| 3605 | store_user_signal_events c-src/emacs/src/keyboard.c /^store_user_signal_events (void)$/ | ||
| 3606 | strcaseeq c-src/etags.c /^#define strcaseeq(s,t) (assert ((s)!=NULL && (t)!=/ | ||
| 3607 | streq c-src/etags.c /^#define streq(s,t) (assert ((s)!=NULL || (t)!=NULL/ | ||
| 3608 | str go-src/test1.go 9 | ||
| 3609 | STRING_BYTES_BOUND c-src/emacs/src/lisp.h 1261 | ||
| 3610 | STRING_BYTES c-src/emacs/src/lisp.h /^STRING_BYTES (struct Lisp_String *s)$/ | ||
| 3611 | string_intervals c-src/emacs/src/lisp.h /^string_intervals (Lisp_Object s)$/ | ||
| 3612 | string merc-src/accumulator.m /^:- import_module string.$/ | ||
| 3613 | STRING_MULTIBYTE c-src/emacs/src/lisp.h /^STRING_MULTIBYTE (Lisp_Object str)$/ | ||
| 3614 | STRING_SET_CHARS c-src/emacs/src/lisp.h /^STRING_SET_CHARS (Lisp_Object string, ptrdiff_t ne/ | ||
| 3615 | STRING_SET_MULTIBYTE c-src/emacs/src/lisp.h /^#define STRING_SET_MULTIBYTE(STR) \\$/ | ||
| 3616 | STRING_SET_UNIBYTE c-src/emacs/src/lisp.h /^#define STRING_SET_UNIBYTE(STR) \\$/ | ||
| 3617 | stripLine php-src/lce_functions.php /^ function stripLine($line, $class)$/ | ||
| 3618 | stripname pas-src/common.pas /^function stripname; (* ($/ | ||
| 3619 | StripPath pas-src/common.pas /^function StripPath; (*($/ | ||
| 3620 | strncaseeq c-src/etags.c /^#define strncaseeq(s,t,n) (assert ((s)!=NULL && (t/ | ||
| 3621 | strneq c-src/etags.c /^#define strneq(s,t,n) (assert ((s)!=NULL || (t)!=N/ | ||
| 3622 | __str__ pyt-src/server.py /^ def __str__(self):$/ | ||
| 3623 | structdef c-src/etags.c 2448 | ||
| 3624 | stuff_buffered_input c-src/emacs/src/keyboard.c /^stuff_buffered_input (Lisp_Object stuffstring)$/ | ||
| 3625 | SUB_CHAR_TABLE_OFFSET c-src/emacs/src/lisp.h 1701 | ||
| 3626 | SUB_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}$/ | ||
| 3628 | subprocessDone objc-src/PackInsp.m /^-subprocessDone:(Subprocess *)sender$/ | ||
| 3629 | subprocess objc-src/PackInsp.m /^-subprocess:(Subprocess *)sender output:(char *)bu/ | ||
| 3630 | Subprocess objc-src/Subprocess.h 41 | ||
| 3631 | Subprocess objc-src/Subprocess.h /^@interface Subprocess:Object$/ | ||
| 3632 | SUBRP 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/ | ||
| 3639 | subsec=\relax tex-src/texinfo.tex /^\\let\\appendixsubsec=\\relax$/ | ||
| 3640 | subsection_marker perl-src/htlmify-cystic 161 | ||
| 3641 | subsection perl-src/htlmify-cystic 26 | ||
| 3642 | subsection=\relax tex-src/texinfo.tex /^\\let\\appendixsubsection=\\relax$/ | ||
| 3643 | substitute c-src/etags.c /^substitute (char *in, char *out, struct re_registe/ | ||
| 3644 | subst prol-src/natded.prolog /^subst(var(Y),var(X),M,N):-$/ | ||
| 3645 | SubString 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/ | ||
| 3652 | subsubsec=\relax tex-src/texinfo.tex /^\\let\\appendixsubsubsec=\\relax$/ | ||
| 3653 | subsubsection perl-src/htlmify-cystic 27 | ||
| 3654 | subsubsection=\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{#/ | ||
| 3658 | subtle ruby-src/test1.ru /^ :tee ; attr_reader :subtle$/ | ||
| 3659 | subtree prol-src/natded.prolog /^subtree(T,T).$/ | ||
| 3660 | suffix c-src/etags.c 186 | ||
| 3661 | suffixes c-src/etags.c 195 | ||
| 3662 | suggest_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 / | ||
| 3665 | suspend-emacs c-src/emacs/src/keyboard.c /^DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_e/ | ||
| 3666 | sval y-src/cccp.y 116 | ||
| 3667 | swallow_events c-src/emacs/src/keyboard.c /^swallow_events (bool do_display)$/ | ||
| 3668 | switch_line_buffers c-src/etags.c /^#define switch_line_buffers() (curndx = 1 - curndx/ | ||
| 3669 | sxhash_combine c-src/emacs/src/lisp.h /^sxhash_combine (EMACS_UINT x, EMACS_UINT y)$/ | ||
| 3670 | SXHASH_REDUCE c-src/emacs/src/lisp.h /^SXHASH_REDUCE (EMACS_UINT x)$/ | ||
| 3671 | SYMBOL_BLV c-src/emacs/src/lisp.h /^SYMBOL_BLV (struct Lisp_Symbol *sym)$/ | ||
| 3672 | SYMBOL_CONSTANT_P c-src/emacs/src/lisp.h /^# define SYMBOL_CONSTANT_P(sym) lisp_h_SYMBOL_CONS/ | ||
| 3673 | symbol c-src/emacs/src/lisp.h 2980 | ||
| 3674 | SYMBOL_FORWARDED c-src/emacs/src/lisp.h 651 | ||
| 3675 | SYMBOL_FWD c-src/emacs/src/lisp.h /^SYMBOL_FWD (struct Lisp_Symbol *sym)$/ | ||
| 3676 | SYMBOL_INDEX c-src/emacs/src/lisp.h /^#define SYMBOL_INDEX(sym) i##sym$/ | ||
| 3677 | symbol_interned c-src/emacs/src/lisp.h 639 | ||
| 3678 | SYMBOL_INTERNED c-src/emacs/src/lisp.h 642 | ||
| 3679 | SYMBOL_INTERNED_IN_INITIAL_OBARRAY c-src/emacs/src/lisp.h 643 | ||
| 3680 | SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P c-src/emacs/src/lisp.h /^SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P (Lisp_Object / | ||
| 3681 | SYMBOL_INTERNED_P c-src/emacs/src/lisp.h /^SYMBOL_INTERNED_P (Lisp_Object sym)$/ | ||
| 3682 | SYMBOL_LOCALIZED c-src/emacs/src/lisp.h 650 | ||
| 3683 | symbol_name c-src/emacs/src/lisp.h 1687 | ||
| 3684 | SYMBOL_NAME c-src/emacs/src/lisp.h /^SYMBOL_NAME (Lisp_Object sym)$/ | ||
| 3685 | SYMBOLP c-src/emacs/src/lisp.h /^# define SYMBOLP(x) lisp_h_SYMBOLP (x)$/ | ||
| 3686 | SYMBOL_PLAINVAL c-src/emacs/src/lisp.h 648 | ||
| 3687 | symbol_redirect c-src/emacs/src/lisp.h 646 | ||
| 3688 | SYMBOL_UNINTERNED c-src/emacs/src/lisp.h 641 | ||
| 3689 | SYMBOL_VAL c-src/emacs/src/lisp.h /^# define SYMBOL_VAL(sym) lisp_h_SYMBOL_VAL (sym)$/ | ||
| 3690 | SYMBOL_VARALIAS c-src/emacs/src/lisp.h 649 | ||
| 3691 | syms_of_abbrev c-src/abbrev.c /^syms_of_abbrev ()$/ | ||
| 3692 | syms_of_keyboard c-src/emacs/src/keyboard.c /^syms_of_keyboard (void)$/ | ||
| 3693 | sym_type c-src/etags.c 2204 | ||
| 3694 | synchronize_system_messages_locale c-src/emacs/src/lisp.h /^INLINE void synchronize_system_messages_locale (vo/ | ||
| 3695 | synchronize_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 {%$/ | ||
| 3698 | syntax c-src/emacs/src/regex.h 350 | ||
| 3699 | SYSCALL c-src/machsyscalls.c /^#define SYSCALL(name, number, type, args, typed_ar/ | ||
| 3700 | syscall_error c-src/sysdep.h 34 | ||
| 3701 | sys_jmp_buf c-src/emacs/src/lisp.h 2906 | ||
| 3702 | sys_jmp_buf c-src/emacs/src/lisp.h 2910 | ||
| 3703 | sys_jmp_buf c-src/emacs/src/lisp.h 2916 | ||
| 3704 | sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) _longjmp (j, v)$/ | ||
| 3705 | sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) longjmp (j, v)$/ | ||
| 3706 | sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) siglongjmp (j, v)$/ | ||
| 3707 | sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) _setjmp (j)$/ | ||
| 3708 | sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) setjmp (j)$/ | ||
| 3709 | sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) sigsetjmp (j, 0)$/ | ||
| 3710 | System.Task_Primitives/b ada-src/2ataspri.adb /^package body System.Task_Primitives is$/ | ||
| 3711 | System.Task_Primitives/s ada-src/2ataspri.ads /^package System.Task_Primitives is$/ | ||
| 3712 | t1 cp-src/c.C 34 | ||
| 3713 | t2 cp-src/c.C 38 | ||
| 3714 | T2 cp-src/fail.C 16 | ||
| 3715 | T3 c.c 163 | ||
| 3716 | tab_count_words c-src/tab.c /^int tab_count_words(char **tab)$/ | ||
| 3717 | tab_delete_first c-src/tab.c /^int tab_delete_first(char **tab)$/ | ||
| 3718 | tab_fill c-src/tab.c /^char **tab_fill(char *str, char delim)$/ | ||
| 3719 | tab_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{%$/ | ||
| 3722 | tag1 c-src/dostorture.c /^(*tag1 (sig, handler)) ()$/ | ||
| 3723 | tag1 c-src/h.h 110 | ||
| 3724 | tag1 c-src/torture.c /^(*tag1 (sig, handler)) ()$/ | ||
| 3725 | tag2 c-src/dostorture.c /^(*tag2 (sig, handler)) ()$/ | ||
| 3726 | tag2 c-src/torture.c /^(*tag2 (sig, handler)) ()$/ | ||
| 3727 | tag3 c-src/dostorture.c /^(*tag3 (int sig, void (*handler) (int))) (int)$/ | ||
| 3728 | tag3 c-src/torture.c /^(*tag3 (int sig, void (*handler) (int))) (int)$/ | ||
| 3729 | tag4 c-src/dostorture.c /^(*tag4 (int sig, void (*handler) (int))) (int)$/ | ||
| 3730 | tag4 c-src/torture.c /^(*tag4 (int sig, void (*handler) (int))) (int)$/ | ||
| 3731 | tag5 c-src/dostorture.c /^tag5 (handler, arg)$/ | ||
| 3732 | tag5 c-src/torture.c /^tag5 (handler, arg)$/ | ||
| 3733 | tag6 c-src/dostorture.c /^tag6 (void (*handler) (void *), void *arg)$/ | ||
| 3734 | tag6 c-src/torture.c /^tag6 (void (*handler) (void *), void *arg)$/ | ||
| 3735 | tag-any-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-any-match-p (_tag)$/ | ||
| 3736 | tag-exact-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-exact-file-name-match-p (tag)$/ | ||
| 3737 | tag-exact-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-exact-match-p (tag)$/ | ||
| 3738 | tag-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-file-name-match-p (tag)$/ | ||
| 3739 | tag-find-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun tag-find-file-of-tag (file) ; Doc string?$/ | ||
| 3740 | tag-find-file-of-tag-noselect el-src/emacs/lisp/progmodes/etags.el /^(defun tag-find-file-of-tag-noselect (file)$/ | ||
| 3741 | taggedfname c-src/etags.c 207 | ||
| 3742 | tag-implicit-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-implicit-name-match-p (tag)$/ | ||
| 3743 | tag-lines-already-matched el-src/emacs/lisp/progmodes/etags.el /^(defvar tag-lines-already-matched nil$/ | ||
| 3744 | tag_or_ch c-src/emacs/src/lisp.h 3026 | ||
| 3745 | tag-partial-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-partial-file-name-match-p (_tag)$/ | ||
| 3746 | TAG_PTR c-src/emacs/src/lisp.h /^#define TAG_PTR(tag, ptr) \\$/ | ||
| 3747 | tag-re-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-re-match-p (re)$/ | ||
| 3748 | tags-add-tables el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-add-tables 'ask-user$/ | ||
| 3749 | tags-apropos-additional-actions el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-additional-actions nil$/ | ||
| 3750 | tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun tags-apropos (regexp)$/ | ||
| 3751 | tags-apropos-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-apropos-function nil$/ | ||
| 3752 | tags-apropos-verbose el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-verbose nil$/ | ||
| 3753 | tags-case-fold-search el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-case-fold-search 'default$/ | ||
| 3754 | tags-complete-tags-table-file el-src/emacs/lisp/progmodes/etags.el /^(defun tags-complete-tags-table-file (string predi/ | ||
| 3755 | tags-completion-at-point-function el-src/emacs/lisp/progmodes/etags.el /^(defun tags-completion-at-point-function ()$/ | ||
| 3756 | tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-completion-table ()$/ | ||
| 3757 | tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-completion-table nil$/ | ||
| 3758 | tags-completion-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-completion-table-function nil$/ | ||
| 3759 | tags-compression-info-list el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-compression-info-list$/ | ||
| 3760 | tags-expand-table-name el-src/emacs/lisp/progmodes/etags.el /^(defun tags-expand-table-name (file)$/ | ||
| 3761 | tags-file-name el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-file-name nil$/ | ||
| 3762 | tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defun tags-included-tables ()$/ | ||
| 3763 | tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-included-tables nil$/ | ||
| 3764 | tags-included-tables-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-included-tables-function nil$/ | ||
| 3765 | tags-lazy-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-lazy-completion-table ()$/ | ||
| 3766 | tags-location-ring el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-location-ring (make-ring xref-marker-/ | ||
| 3767 | tags-loop-continue el-src/emacs/lisp/progmodes/etags.el /^(defun tags-loop-continue (&optional first-time)$/ | ||
| 3768 | tags-loop-eval el-src/emacs/lisp/progmodes/etags.el /^(defun tags-loop-eval (form)$/ | ||
| 3769 | tags-loop-operate el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-loop-operate nil$/ | ||
| 3770 | tags-loop-revert-buffers el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-loop-revert-buffers nil$/ | ||
| 3771 | tags-loop-scan el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-loop-scan$/ | ||
| 3772 | TAGS make-src/Makefile /^TAGS: etags.c$/ | ||
| 3773 | tags make-src/Makefile /^tags: TAGS$/ | ||
| 3774 | tags-next-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-next-table ()$/ | ||
| 3775 | tags-query-replace el-src/emacs/lisp/progmodes/etags.el /^(defun tags-query-replace (from to &optional delim/ | ||
| 3776 | tags-recognize-empty-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-recognize-empty-tags-table ()$/ | ||
| 3777 | tags-reset-tags-tables el-src/emacs/lisp/progmodes/etags.el /^(defun tags-reset-tags-tables ()$/ | ||
| 3778 | tags-revert-without-query el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-revert-without-query nil$/ | ||
| 3779 | tags-search el-src/emacs/lisp/progmodes/etags.el /^(defun tags-search (regexp &optional file-list-for/ | ||
| 3780 | tags-select-tags-table el-src/emacs/lisp/progmodes/etags.el /^(define-button-type 'tags-select-tags-table$/ | ||
| 3781 | tags-table-check-computed-list el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-check-computed-list ()$/ | ||
| 3782 | tags-table-computed-list el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-computed-list nil$/ | ||
| 3783 | tags-table-computed-list-for el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-computed-list-for nil$/ | ||
| 3784 | tags-table-extend-computed-list el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-extend-computed-list ()$/ | ||
| 3785 | tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-files ()$/ | ||
| 3786 | tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-files nil$/ | ||
| 3787 | tags-table-files-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-files-function nil$/ | ||
| 3788 | tags-table-format-functions el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-format-functions '(etags-recogn/ | ||
| 3789 | tags-table-including el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-including (this-file core-only)$/ | ||
| 3790 | tags-table-list el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-table-list nil$/ | ||
| 3791 | tags-table-list-member el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-list-member (file list)$/ | ||
| 3792 | tags-table-list-pointer el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-list-pointer nil$/ | ||
| 3793 | tags-table-list-started-at el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-list-started-at nil$/ | ||
| 3794 | tags-table-mode el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-mode ()$/ | ||
| 3795 | tags-table-set-list el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-set-list nil$/ | ||
| 3796 | tags-tag-face el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-tag-face 'default$/ | ||
| 3797 | tags-verify-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-verify-table (file)$/ | ||
| 3798 | tags-with-face el-src/emacs/lisp/progmodes/etags.el /^(defmacro tags-with-face (face &rest body)$/ | ||
| 3799 | tag-symbol-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-symbol-match-p (tag)$/ | ||
| 3800 | TAG_SYMOFFSET c-src/emacs/src/lisp.h /^#define TAG_SYMOFFSET(offset) \\$/ | ||
| 3801 | tag-word-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-word-match-p (tag)$/ | ||
| 3802 | Tapes tex-src/gzip.texi /^@node Tapes, Problems, Environment, Top$/ | ||
| 3803 | target_multibyte c-src/emacs/src/regex.h 407 | ||
| 3804 | TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is$/ | ||
| 3805 | TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is private;$/ | ||
| 3806 | Task_Control_Block/t ada-src/2ataspri.ads /^ type Task_Control_Block is record$/ | ||
| 3807 | Task_Storage_Size/t ada-src/2ataspri.ads /^ type Task_Storage_Size is new Interfaces.C.size/ | ||
| 3808 | Task_Type/b ada-src/etags-test-for.ada /^ task body Task_Type is$/ | ||
| 3809 | Task_Type/b ada-src/waroquiers.ada /^ task body Task_Type is$/ | ||
| 3810 | Task_Type/k ada-src/etags-test-for.ada /^ task type Task_Type is$/ | ||
| 3811 | Task_Type/k ada-src/waroquiers.ada /^ task type Task_Type is$/ | ||
| 3812 | TCB_Ptr/t ada-src/2ataspri.ads /^ type TCB_Ptr is access all Task_Control_Block;$/ | ||
| 3813 | TCLFLAGS 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 / | ||
| 3817 | tcpdump html-src/software.html /^tcpdump$/ | ||
| 3818 | t cp-src/c.C 52 | ||
| 3819 | T cp-src/fail.C 14 | ||
| 3820 | teats cp-src/c.C 127 | ||
| 3821 | tee ruby-src/test1.ru /^ attr_accessor :tee$/ | ||
| 3822 | tee= ruby-src/test1.ru /^ attr_accessor :tee$/ | ||
| 3823 | temporarily_switch_to_single_kboard c-src/emacs/src/keyboard.c /^temporarily_switch_to_single_kboard (struct frame / | ||
| 3824 | tend c-src/etags.c 2432 | ||
| 3825 | TERMINALP c-src/emacs/src/lisp.h /^TERMINALP (Lisp_Object a)$/ | ||
| 3826 | terminateInput objc-src/Subprocess.m /^- terminateInput$/ | ||
| 3827 | terminate objc-src/Subprocess.m /^- terminate:sender$/ | ||
| 3828 | term merc-src/accumulator.m /^:- import_module term.$/ | ||
| 3829 | test1 rs-src/test.rs /^fn test1() {$/ | ||
| 3830 | Test_Abort/p ada-src/2ataspri.adb /^ procedure Test_Abort is$/ | ||
| 3831 | Test_Abort/p ada-src/2ataspri.ads /^ procedure Test_Abort;$/ | ||
| 3832 | Test_And_Set/p ada-src/2ataspri.adb /^ procedure Test_And_Set (Cell : in out TAS_Cell;/ | ||
| 3833 | Test_And_Set/p ada-src/2ataspri.ads /^ procedure Test_And_Set (Cell : in out TAS_Cell;/ | ||
| 3834 | test-begin scm-src/test.scm /^(define-syntax test-begin$/ | ||
| 3835 | test cp-src/c.C 86 | ||
| 3836 | test_crlf1 test_crlf.c /^void test_crlf1()$/ | ||
| 3837 | test_crlf2 tset_crlf.c /^void test_crlf2()$/ | ||
| 3838 | test c-src/emacs/src/lisp.h 1871 | ||
| 3839 | test erl-src/gs_dialog.erl /^test() ->$/ | ||
| 3840 | test go-src/test1.go /^func test(p plus) {$/ | ||
| 3841 | test make-src/Makefile /^test:$/ | ||
| 3842 | test.me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ | ||
| 3843 | test.me22b lua-src/test.lua /^ local function test.me22b (one)$/ | ||
| 3844 | TEST php-src/ptest.php 1 | ||
| 3845 | test php-src/ptest.php /^test $/ | ||
| 3846 | test_undefined c-src/emacs/src/keyboard.c /^test_undefined (Lisp_Object binding)$/ | ||
| 3847 | TEX_clgrp c-src/etags.c 4922 | ||
| 3848 | TeX_commands c-src/etags.c /^TeX_commands (FILE *inf)$/ | ||
| 3849 | TEX_decode_env c-src/etags.c /^TEX_decode_env (const char *evarname, const char */ | ||
| 3850 | TEX_defenv c-src/etags.c 4912 | ||
| 3851 | TEX_esc c-src/etags.c 4920 | ||
| 3852 | TeX_help c-src/etags.c 674 | ||
| 3853 | Texinfo_help c-src/etags.c 688 | ||
| 3854 | Texinfo_nodes c-src/etags.c /^Texinfo_nodes (FILE *inf)$/ | ||
| 3855 | Texinfo_suffixes c-src/etags.c 686 | ||
| 3856 | \texinfoversion tex-src/texinfo.tex /^\\def\\texinfoversion{2.73}$/ | ||
| 3857 | TEX_LESC c-src/etags.c 4986 | ||
| 3858 | TEX_mode c-src/etags.c /^TEX_mode (FILE *inf)$/ | ||
| 3859 | TEX_opgrp c-src/etags.c 4921 | ||
| 3860 | TEX_SESC c-src/etags.c 4987 | ||
| 3861 | TEXSRC 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$/ | ||
| 3890 | TeX_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{%$/ | ||
| 3895 | TEX_toktab c-src/etags.c 4908 | ||
| 3896 | texttreelist 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$/ | ||
| 3900 | there-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{}%$/ | ||
| 3904 | this_command_key_count c-src/emacs/src/keyboard.c 108 | ||
| 3905 | this_command_key_count_reset c-src/emacs/src/keyboard.c 112 | ||
| 3906 | this_command_keys c-src/emacs/src/keyboard.c 107 | ||
| 3907 | this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/ | ||
| 3908 | this-command-keys-vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/ | ||
| 3909 | this c-src/a/b/b.c 1 | ||
| 3910 | \thisfile tex-src/texinfo.tex /^\\def\\thisfile{}$/ | ||
| 3911 | this_file_toc perl-src/htlmify-cystic 29 | ||
| 3912 | this-single-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/ | ||
| 3913 | this_single_command_key_start c-src/emacs/src/keyboard.c 125 | ||
| 3914 | this-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/ | ||
| 3917 | tignore c-src/etags.c 2433 | ||
| 3918 | timer_check_2 c-src/emacs/src/keyboard.c /^timer_check_2 (Lisp_Object timers, Lisp_Object idl/ | ||
| 3919 | timer_check c-src/emacs/src/keyboard.c /^timer_check (void)$/ | ||
| 3920 | timer_idleness_start_time c-src/emacs/src/keyboard.c 335 | ||
| 3921 | timer_last_idleness_start_time c-src/emacs/src/keyboard.c 340 | ||
| 3922 | timer_resume_idle c-src/emacs/src/keyboard.c /^timer_resume_idle (void)$/ | ||
| 3923 | timers_run c-src/emacs/src/keyboard.c 320 | ||
| 3924 | timer_start_idle c-src/emacs/src/keyboard.c /^timer_start_idle (void)$/ | ||
| 3925 | timer_stop_idle c-src/emacs/src/keyboard.c /^timer_stop_idle (void)$/ | ||
| 3926 | Time_to_position c-src/emacs/src/keyboard.c /^Time_to_position (Time encoded_pos)$/ | ||
| 3927 | tinbody 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}}$/ | ||
| 3933 | tkeyseen c-src/etags.c 2429 | ||
| 3934 | tnone c-src/etags.c 2428 | ||
| 3935 | toc_line perl-src/htlmify-cystic /^sub toc_line ($)$/ | ||
| 3936 | \today tex-src/texinfo.tex /^\\def\\today{\\number\\day\\space$/ | ||
| 3937 | toggleDescription objc-src/PackInsp.m /^-toggleDescription$/ | ||
| 3938 | tok c-src/etags.c 2491 | ||
| 3939 | token c-src/etags.c 2508 | ||
| 3940 | tokenizeatom prol-src/natded.prolog /^tokenizeatom(Atom,Ws):-$/ | ||
| 3941 | tokenize prol-src/natded.prolog /^tokenize([C1,C2,C3|Cs],Xs-Ys,TsResult):- % spe/ | ||
| 3942 | tokentab2 y-src/cccp.y 442 | ||
| 3943 | token y-src/cccp.y 437 | ||
| 3944 | token y-src/cccp.y 439 | ||
| 3945 | To_Lower pas-src/common.pas /^function To_Lower;(*(ch:char) : char;*)$/ | ||
| 3946 | tool_bar_item_properties c-src/emacs/src/keyboard.c 7970 | ||
| 3947 | tool_bar_items c-src/emacs/src/keyboard.c /^tool_bar_items (Lisp_Object reuse, int *nitems)$/ | ||
| 3948 | tool_bar_items_vector c-src/emacs/src/keyboard.c 7965 | ||
| 3949 | toolkit_menubar_in_use c-src/emacs/src/keyboard.c /^toolkit_menubar_in_use (struct frame *f)$/ | ||
| 3950 | top_level_1 c-src/emacs/src/keyboard.c /^top_level_1 (Lisp_Object ignore)$/ | ||
| 3951 | top_level_2 c-src/emacs/src/keyboard.c /^top_level_2 (void)$/ | ||
| 3952 | top-level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, / | ||
| 3953 | top_level merc-src/accumulator.m /^:- type top_level$/ | ||
| 3954 | Top tex-src/gzip.texi /^@node Top, , , (dir)$/ | ||
| 3955 | \top tex-src/texinfo.tex /^\\outer\\def\\top{\\parsearg\\unnumberedzzz}$/ | ||
| 3956 | To_Start_Addr/f ada-src/2ataspri.adb /^ function To_Start_Addr is new$/ | ||
| 3957 | total_keys c-src/emacs/src/keyboard.c 97 | ||
| 3958 | TOTAL_KEYWORDS c-src/etags.c 2325 | ||
| 3959 | totally_unblock_input c-src/emacs/src/keyboard.c /^totally_unblock_input (void)$/ | ||
| 3960 | total_size_of_entries c-src/etags.c /^total_size_of_entries (register node *np)$/ | ||
| 3961 | total_surrounding cp-src/conway.cpp /^int site::total_surrounding(void)$/ | ||
| 3962 | To_TCB_Ptr/f ada-src/2ataspri.adb /^ function To_TCB_Ptr is new$/ | ||
| 3963 | To_Upper pas-src/common.pas /^function To_Upper;(*(ch:char) : char;*)$/ | ||
| 3964 | To_void_ptr/f ada-src/2ataspri.adb /^ function To_void_ptr is new$/ | ||
| 3965 | tpcmd c-src/h.h 15 | ||
| 3966 | tpcmd c-src/h.h 8 | ||
| 3967 | /T ps-src/rfc1245.ps /^\/T { $/ | ||
| 3968 | tracking_off c-src/emacs/src/keyboard.c /^tracking_off (Lisp_Object old_value)$/ | ||
| 3969 | track-mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/ | ||
| 3970 | traffic_light cp-src/conway.cpp /^void traffic_light(int x, int y)$/ | ||
| 3971 | translate c-src/emacs/src/regex.h 361 | ||
| 3972 | treats cp-src/c.C 131 | ||
| 3973 | Truc.Bidule/b ada-src/etags-test-for.ada /^package body Truc.Bidule is$/ | ||
| 3974 | Truc.Bidule/b ada-src/waroquiers.ada /^package body Truc.Bidule is$/ | ||
| 3975 | Truc.Bidule/s ada-src/etags-test-for.ada /^package Truc.Bidule is$/ | ||
| 3976 | Truc.Bidule/s ada-src/waroquiers.ada /^package Truc.Bidule is$/ | ||
| 3977 | Truc/s ada-src/etags-test-for.ada /^package Truc is$/ | ||
| 3978 | Truc/s ada-src/waroquiers.ada /^package Truc is$/ | ||
| 3979 | TSL/s ada-src/2ataspri.adb /^ package TSL renames System.Tasking_Soft_Links;$/ | ||
| 3980 | tt=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 / | ||
| 3983 | tt 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}$/ | ||
| 3986 | ttypeseen c-src/etags.c 2430 | ||
| 3987 | tty_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 \// | ||
| 3990 | typdef c-src/etags.c 2434 | ||
| 3991 | type c-src/emacs/src/gmalloc.c 145 | ||
| 3992 | type c-src/emacs/src/lisp.h 1973 | ||
| 3993 | type c-src/emacs/src/lisp.h 1980 | ||
| 3994 | type c-src/emacs/src/lisp.h 2034 | ||
| 3995 | type c-src/emacs/src/lisp.h 2112 | ||
| 3996 | type c-src/emacs/src/lisp.h 2203 | ||
| 3997 | type c-src/emacs/src/lisp.h 2276 | ||
| 3998 | type c-src/emacs/src/lisp.h 2286 | ||
| 3999 | type c-src/emacs/src/lisp.h 2296 | ||
| 4000 | type c-src/emacs/src/lisp.h 2304 | ||
| 4001 | type c-src/emacs/src/lisp.h 2364 | ||
| 4002 | type c-src/emacs/src/lisp.h 3025 | ||
| 4003 | type c-src/etags.c 2271 | ||
| 4004 | typefunargs tex-src/texinfo.tex /^\\deftypefunargs {#3}\\endgroup %$/ | ||
| 4005 | typefunargs tex-src/texinfo.tex /^\\deftypefunargs {#4}\\endgroup %$/ | ||
| 4006 | typemargin tex-src/texinfo.tex /^\\newskip\\deftypemargin \\deftypemargin=12pt$/ | ||
| 4007 | typemargin tex-src/texinfo.tex /^\\rlap{\\rightline{{\\rm #2}\\hskip \\deftypemargin}}}%/ | ||
| 4008 | TYPE_RANGED_INTEGERP c-src/emacs/src/lisp.h /^#define TYPE_RANGED_INTEGERP(type, x) \\$/ | ||
| 4009 | Type_Specific_Data/t ada-src/etags-test-for.ada /^ type Type_Specific_Data is record$/ | ||
| 4010 | TYPESTOSTAT objc-src/PackInsp.h 37 | ||
| 4011 | /Uacute ps-src/rfc1245.ps /^\/Uacute \/Ucircumflex \/Ugrave \/dotlessi \/circumflex/ | ||
| 4012 | u_any c-src/emacs/src/lisp.h 2214 | ||
| 4013 | u_boolfwd c-src/emacs/src/lisp.h 2371 | ||
| 4014 | u_buffer_objfwd c-src/emacs/src/lisp.h 2373 | ||
| 4015 | UCHAR c-src/emacs/src/lisp.h 2424 | ||
| 4016 | _UCHAR_T c-src/emacs/src/lisp.h 2423 | ||
| 4017 | U_CHAR y-src/cccp.y 38 | ||
| 4018 | u c-src/emacs/src/lisp.h 2397 | ||
| 4019 | /udieresis ps-src/rfc1245.ps /^\/udieresis \/dagger \/.notdef \/cent \/sterling \/secti/ | ||
| 4020 | u_finalizer c-src/emacs/src/lisp.h 2219 | ||
| 4021 | u_free c-src/emacs/src/lisp.h 2215 | ||
| 4022 | u_intfwd c-src/emacs/src/lisp.h 2370 | ||
| 4023 | u_kboard_objfwd c-src/emacs/src/lisp.h 2374 | ||
| 4024 | u_marker c-src/emacs/src/lisp.h 2216 | ||
| 4025 | unargs tex-src/texinfo.tex /^\\defunargs {#2}\\endgroup %$/ | ||
| 4026 | unargs tex-src/texinfo.tex /^\\defunargs {#3}\\endgroup %$/ | ||
| 4027 | UNARY y-src/cccp.c 18 | ||
| 4028 | unblock_input c-src/emacs/src/keyboard.c /^unblock_input (void)$/ | ||
| 4029 | unblock_input_to c-src/emacs/src/keyboard.c /^unblock_input_to (int level)$/ | ||
| 4030 | unchar c-src/h.h 99 | ||
| 4031 | UNDEFINED c-src/h.h 118 | ||
| 4032 | UNEVALLED c-src/emacs/src/lisp.h 2834 | ||
| 4033 | unexpand-abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/ | ||
| 4034 | UNGCPRO c-src/emacs/src/lisp.h 3202 | ||
| 4035 | UNGCPRO c-src/emacs/src/lisp.h 3257 | ||
| 4036 | UNGCPRO c-src/emacs/src/lisp.h 3353 | ||
| 4037 | univ merc-src/accumulator.m /^:- import_module univ.$/ | ||
| 4038 | UNLOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define UNLOCK_ALIGNED_BLOCKS() \\$/ | ||
| 4039 | UNLOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define UNLOCK_ALIGNED_BLOCKS()$/ | ||
| 4040 | UNLOCK c-src/emacs/src/gmalloc.c /^#define UNLOCK() \\$/ | ||
| 4041 | UNLOCK c-src/emacs/src/gmalloc.c /^#define UNLOCK()$/ | ||
| 4042 | Unlock/p ada-src/2ataspri.adb /^ procedure Unlock (L : in out Lock) is$/ | ||
| 4043 | Unlock/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/ | ||
| 4063 | unravel_univ merc-src/accumulator.m /^:- some [T] pred unravel_univ(univ::in, T::out) is/ | ||
| 4064 | unread_switch_frame c-src/emacs/src/keyboard.c 204 | ||
| 4065 | UNSIGNED_CMP c-src/emacs/src/lisp.h /^#define UNSIGNED_CMP(a, op, b) \\$/ | ||
| 4066 | unsignedp y-src/cccp.y 112 | ||
| 4067 | unwind c-src/emacs/src/lisp.h 2962 | ||
| 4068 | unwind_int c-src/emacs/src/lisp.h 2972 | ||
| 4069 | unwind_ptr c-src/emacs/src/lisp.h 2967 | ||
| 4070 | unwind_void c-src/emacs/src/lisp.h 2976 | ||
| 4071 | u_objfwd c-src/emacs/src/lisp.h 2372 | ||
| 4072 | u_overlay c-src/emacs/src/lisp.h 2217 | ||
| 4073 | __up c.c 160 | ||
| 4074 | update_accumulator_pred merc-src/accumulator.m /^:- pred update_accumulator_pred(pred_id::in, proc_/ | ||
| 4075 | \uppercaseenumerate tex-src/texinfo.tex /^\\def\\uppercaseenumerate{%$/ | ||
| 4076 | uprintmax_t c-src/emacs/src/lisp.h 149 | ||
| 4077 | uprintmax_t c-src/emacs/src/lisp.h 154 | ||
| 4078 | /U ps-src/rfc1245.ps /^\/U { $/ | ||
| 4079 | usage perl-src/yagrip.pl /^sub usage {$/ | ||
| 4080 | u_save_value c-src/emacs/src/lisp.h 2218 | ||
| 4081 | usecharno c-src/etags.c 210 | ||
| 4082 | used c-src/emacs/src/regex.h 347 | ||
| 4083 | used_syntax c-src/emacs/src/regex.h 398 | ||
| 4084 | USE_LSB_TAG c-src/emacs/src/lisp.h 271 | ||
| 4085 | USE_LSB_TAG c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (bool, USE_LSB_TAG)$/ | ||
| 4086 | USE_PTHREAD c-src/emacs/src/gmalloc.c 25 | ||
| 4087 | user_cmp_function c-src/emacs/src/lisp.h 1814 | ||
| 4088 | UserEdit pyt-src/server.py /^class UserEdit(Frame):$/ | ||
| 4089 | user_error c-src/emacs/src/keyboard.c /^user_error (const char *msg)$/ | ||
| 4090 | user_hash_function c-src/emacs/src/lisp.h 1811 | ||
| 4091 | User pyt-src/server.py /^class User:$/ | ||
| 4092 | user_signal_info c-src/emacs/src/keyboard.c 7235 | ||
| 4093 | user_signals c-src/emacs/src/keyboard.c 7250 | ||
| 4094 | USE_SAFE_ALLOCA c-src/emacs/src/lisp.h 4560 | ||
| 4095 | USE_STACK_CONS c-src/emacs/src/lisp.h 4689 | ||
| 4096 | USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4652 | ||
| 4097 | USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4658 | ||
| 4098 | USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4659 | ||
| 4099 | USE_STACK_STRING c-src/emacs/src/lisp.h 4691 | ||
| 4100 | usfreelock_ptr/t ada-src/etags-test-for.ada /^ type usfreelock_ptr is access$/ | ||
| 4101 | Vabbrev_start_location_buffer c-src/abbrev.c 66 | ||
| 4102 | Vabbrev_start_location c-src/abbrev.c 63 | ||
| 4103 | Vabbrev_table_name_list c-src/abbrev.c 43 | ||
| 4104 | VALBITS c-src/emacs/src/lisp.h 246 | ||
| 4105 | valcell c-src/emacs/src/lisp.h 2357 | ||
| 4106 | val c-src/emacs/src/lisp.h 3027 | ||
| 4107 | val c-src/emacs/src/lisp.h 691 | ||
| 4108 | val c-src/getopt.h 84 | ||
| 4109 | validate php-src/lce_functions.php /^ function validate($value)$/ | ||
| 4110 | valid c-src/etags.c 220 | ||
| 4111 | valid c-src/etags.c 2502 | ||
| 4112 | valloc c-src/emacs/src/gmalloc.c /^valloc (size_t size)$/ | ||
| 4113 | VALMASK c-src/emacs/src/lisp.h 829 | ||
| 4114 | VALMASK c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (EMACS_INT, VALMASK)$/ | ||
| 4115 | VAL_MAX c-src/emacs/src/lisp.h 263 | ||
| 4116 | val prol-src/natded.prolog /^val(X) --> ['['], valseq(X), [']'].$/ | ||
| 4117 | valseq prol-src/natded.prolog /^valseq([Val|Vals]) --> val(Val), plusvalseq(Vals)./ | ||
| 4118 | ValToNmStr pas-src/common.pas /^function ValToNmStr; (*($/ | ||
| 4119 | value c-src/emacs/src/lisp.h 687 | ||
| 4120 | value y-src/cccp.y 112 | ||
| 4121 | varargs tex-src/texinfo.tex /^\\defvarargs {#2}\\endgroup %$/ | ||
| 4122 | varargs tex-src/texinfo.tex /^\\defvarargs {#3}\\endgroup %$/ | ||
| 4123 | var c-src/emacs/src/keyboard.c 11023 | ||
| 4124 | var c-src/emacs/src/lisp.h 3137 | ||
| 4125 | varset 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}}$/ | ||
| 4128 | vcopy c-src/emacs/src/lisp.h /^vcopy (Lisp_Object v, ptrdiff_t offset, Lisp_Objec/ | ||
| 4129 | VECSIZE c-src/emacs/src/lisp.h /^#define VECSIZE(type) \\$/ | ||
| 4130 | vectorlike_header c-src/emacs/src/lisp.h 1343 | ||
| 4131 | VECTORLIKEP c-src/emacs/src/lisp.h /^# define VECTORLIKEP(x) lisp_h_VECTORLIKEP (x)$/ | ||
| 4132 | VECTORP c-src/emacs/src/lisp.h /^VECTORP (Lisp_Object x)$/ | ||
| 4133 | verde cp-src/c.C 40 | ||
| 4134 | verify_ascii c-src/emacs/src/lisp.h /^# define verify_ascii(str) (str)$/ | ||
| 4135 | verify-tags-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar verify-tags-table-function nil$/ | ||
| 4136 | VERSION c-src/etags.c 789 | ||
| 4137 | VERSION erl-src/gs_dialog.erl /^-define(VERSION, '2001.1101').$/ | ||
| 4138 | VERSION objc-src/PackInsp.m 34 | ||
| 4139 | Vfundamental_mode_abbrev_table c-src/abbrev.c 52 | ||
| 4140 | Vglobal_abbrev_table c-src/abbrev.c 48 | ||
| 4141 | VHDLFLAGS make-src/Makefile /^VHDLFLAGS=--language=none --regex='\/[ \\t]*\\(ARCHIT/ | ||
| 4142 | vignore c-src/etags.c 2417 | ||
| 4143 | \vindex tex-src/texinfo.tex /^\\def\\vindex {\\vrindex}$/ | ||
| 4144 | visit-tags-table-buffer el-src/emacs/lisp/progmodes/etags.el /^(defun visit-tags-table-buffer (&optional cont)$/ | ||
| 4145 | visit-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun visit-tags-table (file &optional local)$/ | ||
| 4146 | Vlast_abbrev c-src/abbrev.c 70 | ||
| 4147 | Vlast_abbrev_text c-src/abbrev.c 75 | ||
| 4148 | Vlispy_mouse_stem c-src/emacs/src/keyboard.c 5172 | ||
| 4149 | void c-src/emacs/src/lisp.h /^INLINE void (check_cons_list) (void) { lisp_h_chec/ | ||
| 4150 | voidfuncptr c-src/emacs/src/lisp.h 2108 | ||
| 4151 | voidval 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/ | ||
| 4155 | waiting_for_input c-src/emacs/src/keyboard.c 150 | ||
| 4156 | WAIT_READING_MAX c-src/emacs/src/lisp.h 4281 | ||
| 4157 | WAIT_READING_MAX c-src/emacs/src/lisp.h 4283 | ||
| 4158 | wait_status_ptr_t c.c 161 | ||
| 4159 | WARNINGS make-src/Makefile /^WARNINGS=-pedantic -Wall -Wpointer-arith -Winline / | ||
| 4160 | warning y-src/cccp.y /^warning (msg)$/ | ||
| 4161 | /wbytes ps-src/rfc1245.ps /^\/wbytes { $/ | ||
| 4162 | WCHAR_TYPE_SIZE y-src/cccp.y 99 | ||
| 4163 | weak_alias c-src/emacs/src/gmalloc.c /^weak_alias (free, cfree)$/ | ||
| 4164 | weak c-src/emacs/src/lisp.h 1830 | ||
| 4165 | web ftp publish make-src/Makefile /^web ftp publish:$/ | ||
| 4166 | what c-src/etags.c 252 | ||
| 4167 | wheel_syms c-src/emacs/src/keyboard.c 4628 | ||
| 4168 | where cp-src/clheir.hpp 77 | ||
| 4169 | where c-src/emacs/src/lisp.h 2348 | ||
| 4170 | where c-src/emacs/src/lisp.h 2980 | ||
| 4171 | where_in_registry cp-src/clheir.hpp 15 | ||
| 4172 | WHITE cp-src/screen.hpp 27 | ||
| 4173 | /wh ps-src/rfc1245.ps /^\/wh { $/ | ||
| 4174 | WINDOW_CONFIGURATIONP c-src/emacs/src/lisp.h /^WINDOW_CONFIGURATIONP (Lisp_Object a)$/ | ||
| 4175 | WINDOWP c-src/emacs/src/lisp.h /^WINDOWP (Lisp_Object a)$/ | ||
| 4176 | WINDOWSNT c-src/etags.c 101 | ||
| 4177 | WINDOWSNT c-src/etags.c 102 | ||
| 4178 | windowWillClose objcpp-src/SimpleCalc.M /^- windowWillClose:sender$/ | ||
| 4179 | wipe_kboard c-src/emacs/src/keyboard.c /^wipe_kboard (KBOARD *kb)$/ | ||
| 4180 | womboid c-src/h.h 63 | ||
| 4181 | womboid c-src/h.h 75 | ||
| 4182 | word_size c-src/emacs/src/lisp.h 1473 | ||
| 4183 | WorkingDays cp-src/functions.cpp /^int WorkingDays(Date a, Date b){$/ | ||
| 4184 | WORKING objc-src/PackInsp.m 368 | ||
| 4185 | /W ps-src/rfc1245.ps /^\/W { $/ | ||
| 4186 | write1= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ | ||
| 4187 | write2= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ | ||
| 4188 | write_abbrev c-src/abbrev.c /^write_abbrev (sym, stream)$/ | ||
| 4189 | writebreaklex prol-src/natded.prolog /^writebreaklex([]).$/ | ||
| 4190 | writebreak prol-src/natded.prolog /^writebreak([]).$/ | ||
| 4191 | writecat prol-src/natded.prolog /^writecat(np(ind(sng),nm(_)),np,[],[]):-!.$/ | ||
| 4192 | write_classname c-src/etags.c /^write_classname (linebuffer *cn, const char *quali/ | ||
| 4193 | write_lex_cat prol-src/natded.prolog /^write_lex_cat(File):-$/ | ||
| 4194 | write_lex prol-src/natded.prolog /^write_lex(File):-$/ | ||
| 4195 | writelist prol-src/natded.prolog /^writelist([der(Ws)|Ws2]):-$/ | ||
| 4196 | writelistsubs prol-src/natded.prolog /^writelistsubs([],X):-$/ | ||
| 4197 | Write_Lock/p ada-src/2ataspri.adb /^ procedure Write_Lock (L : in out Lock; Ceiling_/ | ||
| 4198 | Write_Lock/p ada-src/2ataspri.ads /^ procedure Write_Lock (L : in out Lock; Ceiling_/ | ||
| 4199 | writenamestring pas-src/common.pas /^procedure writenamestring;(*($/ | ||
| 4200 | write php-src/lce_functions.php /^ function write()$/ | ||
| 4201 | write php-src/lce_functions.php /^ function write($save="yes")$/ | ||
| 4202 | writesubs prol-src/natded.prolog /^writesubs([]).$/ | ||
| 4203 | writesups prol-src/natded.prolog /^writesups([]).$/ | ||
| 4204 | write_xyc cp-src/screen.cpp /^void write_xyc(int x, int y, char c)$/ | ||
| 4205 | written 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}$/ | ||
| 4209 | XBOOL_VECTOR c-src/emacs/src/lisp.h /^XBOOL_VECTOR (Lisp_Object a)$/ | ||
| 4210 | XBUFFER c-src/emacs/src/lisp.h /^XBUFFER (Lisp_Object a)$/ | ||
| 4211 | XBUFFER_OBJFWD c-src/emacs/src/lisp.h /^XBUFFER_OBJFWD (union Lisp_Fwd *a)$/ | ||
| 4212 | xcar_addr c-src/emacs/src/lisp.h /^xcar_addr (Lisp_Object c)$/ | ||
| 4213 | XCAR c-src/emacs/src/lisp.h /^# define XCAR(c) lisp_h_XCAR (c)$/ | ||
| 4214 | x c.c 153 | ||
| 4215 | x c.c 179 | ||
| 4216 | x c.c 188 | ||
| 4217 | x c.c 189 | ||
| 4218 | xcdr_addr c-src/emacs/src/lisp.h /^xcdr_addr (Lisp_Object c)$/ | ||
| 4219 | XCDR c-src/emacs/src/lisp.h /^# define XCDR(c) lisp_h_XCDR (c)$/ | ||
| 4220 | XCHAR_TABLE c-src/emacs/src/lisp.h /^XCHAR_TABLE (Lisp_Object a)$/ | ||
| 4221 | XCHG_0 c-src/sysdep.h 47 | ||
| 4222 | XCHG_1 c-src/sysdep.h 48 | ||
| 4223 | XCHG_2 c-src/sysdep.h 49 | ||
| 4224 | XCHG_3 c-src/sysdep.h 50 | ||
| 4225 | XCHG_4 c-src/sysdep.h 51 | ||
| 4226 | XCHG_5 c-src/sysdep.h 52 | ||
| 4227 | XCONS c-src/emacs/src/lisp.h /^# define XCONS(a) lisp_h_XCONS (a)$/ | ||
| 4228 | x cp-src/c.C 53 | ||
| 4229 | x cp-src/c.C 80 | ||
| 4230 | x cp-src/clheir.hpp 49 | ||
| 4231 | x cp-src/clheir.hpp 58 | ||
| 4232 | x cp-src/conway.hpp 7 | ||
| 4233 | x cp-src/fail.C 10 | ||
| 4234 | x cp-src/fail.C 44 | ||
| 4235 | X c-src/h.h 100 | ||
| 4236 | XDEFUN c.c /^XDEFUN ("x-get-selection-internal", Fx_get_selecti/ | ||
| 4237 | xdiff make-src/Makefile /^xdiff: ETAGS EXTAGS ${infiles}$/ | ||
| 4238 | XFASTINT c-src/emacs/src/lisp.h /^# define XFASTINT(a) lisp_h_XFASTINT (a)$/ | ||
| 4239 | XFASTINT c-src/emacs/src/lisp.h /^XFASTINT (Lisp_Object a)$/ | ||
| 4240 | XFINALIZER c-src/emacs/src/lisp.h /^XFINALIZER (Lisp_Object a)$/ | ||
| 4241 | XFLOAT c-src/emacs/src/lisp.h /^XFLOAT (Lisp_Object a)$/ | ||
| 4242 | XFLOAT_DATA c-src/emacs/src/lisp.h /^XFLOAT_DATA (Lisp_Object f)$/ | ||
| 4243 | XFLOATINT c-src/emacs/src/lisp.h /^XFLOATINT (Lisp_Object n)$/ | ||
| 4244 | XFWDTYPE c-src/emacs/src/lisp.h /^XFWDTYPE (union Lisp_Fwd *a)$/ | ||
| 4245 | x-get-selection-internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/ | ||
| 4246 | x-get-selection-internal c.c /^ Fx_get_selection_internal, Sx_get_selection/ | ||
| 4247 | XHASH c-src/emacs/src/lisp.h /^# define XHASH(a) lisp_h_XHASH (a)$/ | ||
| 4248 | XHASH_TABLE c-src/emacs/src/lisp.h /^XHASH_TABLE (Lisp_Object a)$/ | ||
| 4249 | XIL c-src/emacs/src/lisp.h /^# define XIL(i) lisp_h_XIL (i)$/ | ||
| 4250 | XINT c-src/emacs/src/lisp.h /^# define XINT(a) lisp_h_XINT (a)$/ | ||
| 4251 | XINT c-src/emacs/src/lisp.h /^XINT (Lisp_Object a)$/ | ||
| 4252 | XINTPTR 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}$/ | ||
| 4257 | XLI_BUILTIN_LISPSYM c-src/emacs/src/lisp.h /^#define XLI_BUILTIN_LISPSYM(iname) TAG_SYMOFFSET (/ | ||
| 4258 | XLI c-src/emacs/src/lisp.h /^# define XLI(o) lisp_h_XLI (o)$/ | ||
| 4259 | xmalloc c-src/etags.c /^xmalloc (size_t size)$/ | ||
| 4260 | XMARKER c-src/emacs/src/lisp.h /^XMARKER (Lisp_Object a)$/ | ||
| 4261 | XMISCANY c-src/emacs/src/lisp.h /^XMISCANY (Lisp_Object a)$/ | ||
| 4262 | XMISC c-src/emacs/src/lisp.h /^XMISC (Lisp_Object a)$/ | ||
| 4263 | XMISCTYPE c-src/emacs/src/lisp.h /^XMISCTYPE (Lisp_Object a)$/ | ||
| 4264 | xnew c-src/etags.c /^#define xnew(n, Type) ((Type *) xmalloc ((n) / | ||
| 4265 | XOVERLAY c-src/emacs/src/lisp.h /^XOVERLAY (Lisp_Object a)$/ | ||
| 4266 | XPNTR c-src/emacs/src/lisp.h /^# define XPNTR(a) lisp_h_XPNTR (a)$/ | ||
| 4267 | XPROCESS 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{$/ | ||
| 4270 | xrealloc c-src/etags.c /^xrealloc (void *ptr, size_t size)$/ | ||
| 4271 | xref-etags-location el-src/emacs/lisp/progmodes/etags.el /^(defclass xref-etags-location (xref-location)$/ | ||
| 4272 | xref-location-line el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-line ((l xref-etags-lo/ | ||
| 4273 | xref-location-marker el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-marker ((l xref-etags-/ | ||
| 4274 | xref-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%$/ | ||
| 4277 | xrnew c-src/etags.c /^#define xrnew(op, n, Type) ((op) = (Type *) xreall/ | ||
| 4278 | XSAVE_FUNCPOINTER c-src/emacs/src/lisp.h /^XSAVE_FUNCPOINTER (Lisp_Object obj, int n)$/ | ||
| 4279 | XSAVE_INTEGER c-src/emacs/src/lisp.h /^XSAVE_INTEGER (Lisp_Object obj, int n)$/ | ||
| 4280 | XSAVE_OBJECT c-src/emacs/src/lisp.h /^XSAVE_OBJECT (Lisp_Object obj, int n)$/ | ||
| 4281 | XSAVE_POINTER c-src/emacs/src/lisp.h /^XSAVE_POINTER (Lisp_Object obj, int n)$/ | ||
| 4282 | XSAVE_VALUE c-src/emacs/src/lisp.h /^XSAVE_VALUE (Lisp_Object a)$/ | ||
| 4283 | XSETBOOL_VECTOR c-src/emacs/src/lisp.h /^#define XSETBOOL_VECTOR(a, b) (XSETPSEUDOVECTOR (a/ | ||
| 4284 | XSETBUFFER c-src/emacs/src/lisp.h /^#define XSETBUFFER(a, b) (XSETPSEUDOVECTOR (a, b, / | ||
| 4285 | XSETCDR c-src/emacs/src/lisp.h /^XSETCDR (Lisp_Object c, Lisp_Object n)$/ | ||
| 4286 | XSETCHAR_TABLE c-src/emacs/src/lisp.h /^#define XSETCHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a,/ | ||
| 4287 | XSETCOMPILED c-src/emacs/src/lisp.h /^#define XSETCOMPILED(a, b) (XSETPSEUDOVECTOR (a, b/ | ||
| 4288 | XSETCONS c-src/emacs/src/lisp.h /^#define XSETCONS(a, b) ((a) = make_lisp_ptr (b, Li/ | ||
| 4289 | XSETFASTINT c-src/emacs/src/lisp.h /^#define XSETFASTINT(a, b) ((a) = make_natnum (b))$/ | ||
| 4290 | XSETFLOAT c-src/emacs/src/lisp.h /^#define XSETFLOAT(a, b) ((a) = make_lisp_ptr (b, L/ | ||
| 4291 | XSET_HASH_TABLE c-src/emacs/src/lisp.h /^#define XSET_HASH_TABLE(VAR, PTR) \\$/ | ||
| 4292 | XSETINT c-src/emacs/src/lisp.h /^#define XSETINT(a, b) ((a) = make_number (b))$/ | ||
| 4293 | XSETMISC c-src/emacs/src/lisp.h /^#define XSETMISC(a, b) ((a) = make_lisp_ptr (b, Li/ | ||
| 4294 | XSETPROCESS c-src/emacs/src/lisp.h /^#define XSETPROCESS(a, b) (XSETPSEUDOVECTOR (a, b,/ | ||
| 4295 | XSETPSEUDOVECTOR c-src/emacs/src/lisp.h /^#define XSETPSEUDOVECTOR(a, b, code) \\$/ | ||
| 4296 | XSETPVECTYPE c-src/emacs/src/lisp.h /^#define XSETPVECTYPE(v, code) \\$/ | ||
| 4297 | XSETPVECTYPESIZE c-src/emacs/src/lisp.h /^#define XSETPVECTYPESIZE(v, code, lispsize, restsi/ | ||
| 4298 | XSETSTRING c-src/emacs/src/lisp.h /^#define XSETSTRING(a, b) ((a) = make_lisp_ptr (b, / | ||
| 4299 | XSETSUB_CHAR_TABLE c-src/emacs/src/lisp.h /^#define XSETSUB_CHAR_TABLE(a, b) (XSETPSEUDOVECTOR/ | ||
| 4300 | XSETSUBR c-src/emacs/src/lisp.h /^#define XSETSUBR(a, b) (XSETPSEUDOVECTOR (a, b, PV/ | ||
| 4301 | XSETSYMBOL c-src/emacs/src/lisp.h /^#define XSETSYMBOL(a, b) ((a) = make_lisp_symbol (/ | ||
| 4302 | XSETTERMINAL c-src/emacs/src/lisp.h /^#define XSETTERMINAL(a, b) (XSETPSEUDOVECTOR (a, b/ | ||
| 4303 | XSETTYPED_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define XSETTYPED_PSEUDOVECTOR(a, b, size, code) / | ||
| 4304 | XSETVECTOR c-src/emacs/src/lisp.h /^#define XSETVECTOR(a, b) ((a) = make_lisp_ptr (b, / | ||
| 4305 | XSETWINDOW_CONFIGURATION c-src/emacs/src/lisp.h /^#define XSETWINDOW_CONFIGURATION(a, b) \\$/ | ||
| 4306 | XSETWINDOW c-src/emacs/src/lisp.h /^#define XSETWINDOW(a, b) (XSETPSEUDOVECTOR (a, b, / | ||
| 4307 | XSTRING c-src/emacs/src/lisp.h /^XSTRING (Lisp_Object a)$/ | ||
| 4308 | XSUB_CHAR_TABLE c-src/emacs/src/lisp.h /^XSUB_CHAR_TABLE (Lisp_Object a)$/ | ||
| 4309 | XSUBR c-src/emacs/src/lisp.h /^XSUBR (Lisp_Object a)$/ | ||
| 4310 | XSYMBOL c-src/emacs/src/lisp.h /^# define XSYMBOL(a) lisp_h_XSYMBOL (a)$/ | ||
| 4311 | XSYMBOL c-src/emacs/src/lisp.h /^XSYMBOL (Lisp_Object a)$/ | ||
| 4312 | XTERMINAL c-src/emacs/src/lisp.h /^XTERMINAL (Lisp_Object a)$/ | ||
| 4313 | x tex-src/texinfo.tex /^\\refx{#1-snt}{} [\\printednodename], page\\tie\\refx{/ | ||
| 4314 | XTYPE c-src/emacs/src/lisp.h /^# define XTYPE(a) lisp_h_XTYPE (a)$/ | ||
| 4315 | XTYPE c-src/emacs/src/lisp.h /^XTYPE (Lisp_Object a)$/ | ||
| 4316 | XUNTAG c-src/emacs/src/lisp.h /^# define XUNTAG(a, type) lisp_h_XUNTAG (a, type)$/ | ||
| 4317 | XUNTAG c-src/emacs/src/lisp.h /^XUNTAG (Lisp_Object a, int type)$/ | ||
| 4318 | XWINDOW c-src/emacs/src/lisp.h /^XWINDOW (Lisp_Object a)$/ | ||
| 4319 | XX cp-src/x.cc 1 | ||
| 4320 | xx make-src/Makefile /^xx="this line is here because of a fontlock bug$/ | ||
| 4321 | xyz ruby-src/test1.ru /^ alias_method :xyz,$/ | ||
| 4322 | Xyzzy ruby-src/test1.ru 13 | ||
| 4323 | YACC c-src/etags.c 2199 | ||
| 4324 | Yacc_entries c-src/etags.c /^Yacc_entries (FILE *inf)$/ | ||
| 4325 | Yacc_help c-src/etags.c 693 | ||
| 4326 | Yacc_suffixes c-src/etags.c 691 | ||
| 4327 | \Yappendixletterandtype tex-src/texinfo.tex /^\\def\\Yappendixletterandtype{%$/ | ||
| 4328 | y cp-src/clheir.hpp 49 | ||
| 4329 | y cp-src/clheir.hpp 58 | ||
| 4330 | y cp-src/conway.hpp 7 | ||
| 4331 | Y c-src/h.h 100 | ||
| 4332 | YELLOW cp-src/screen.hpp 26 | ||
| 4333 | /yen ps-src/rfc1245.ps /^\/yen \/.notdef \/.notdef \/.notdef \/.notdef \/.notdef / | ||
| 4334 | y-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{%$/ | ||
| 4339 | YSRC make-src/Makefile /^YSRC=parse.y parse.c atest.y cccp.c cccp.y$/ | ||
| 4340 | \Ytitle tex-src/texinfo.tex /^\\def\\Ytitle{\\thischapter}$/ | ||
| 4341 | YYABORT /usr/share/bison/bison.simple 153 | ||
| 4342 | YYABORT /usr/share/bison/bison.simple 154 | ||
| 4343 | YYACCEPT /usr/share/bison/bison.simple 152 | ||
| 4344 | YYACCEPT /usr/share/bison/bison.simple 153 | ||
| 4345 | yyalloc /usr/share/bison/bison.simple 83 | ||
| 4346 | yyalloc /usr/share/bison/bison.simple 84 | ||
| 4347 | YYBACKUP /usr/share/bison/bison.simple /^#define YYBACKUP(Token, Value) \\$/ | ||
| 4348 | YYBISON y-src/cccp.c 4 | ||
| 4349 | YYBISON y-src/parse.c 4 | ||
| 4350 | yyclearin /usr/share/bison/bison.simple 149 | ||
| 4351 | yyclearin /usr/share/bison/bison.simple 150 | ||
| 4352 | yydebug /usr/share/bison/bison.simple 237 | ||
| 4353 | yydebug /usr/share/bison/bison.simple 238 | ||
| 4354 | YY_DECL_NON_LSP_VARIABLES /usr/share/bison/bison.simple 374 | ||
| 4355 | YY_DECL_VARIABLES /usr/share/bison/bison.simple 385 | ||
| 4356 | YY_DECL_VARIABLES /usr/share/bison/bison.simple 391 | ||
| 4357 | YYDPRINTF /usr/share/bison/bison.simple /^# define YYDPRINTF(Args) \\$/ | ||
| 4358 | YYDPRINTF /usr/share/bison/bison.simple /^# define YYDPRINTF(Args)$/ | ||
| 4359 | YYEMPTY /usr/share/bison/bison.simple 150 | ||
| 4360 | YYEMPTY /usr/share/bison/bison.simple 151 | ||
| 4361 | YYEOF /usr/share/bison/bison.simple 151 | ||
| 4362 | YYEOF /usr/share/bison/bison.simple 152 | ||
| 4363 | YYERRCODE /usr/share/bison/bison.simple 178 | ||
| 4364 | YYERRCODE /usr/share/bison/bison.simple 179 | ||
| 4365 | yyerrhandle /usr/share/bison/bison.simple 848 | ||
| 4366 | yyerrlab1 /usr/share/bison/bison.simple 823 | ||
| 4367 | yyerrok /usr/share/bison/bison.simple 148 | ||
| 4368 | yyerrok /usr/share/bison/bison.simple 149 | ||
| 4369 | YYERROR /usr/share/bison/bison.simple 154 | ||
| 4370 | YYERROR /usr/share/bison/bison.simple 155 | ||
| 4371 | yyerror y-src/cccp.y /^yyerror (s)$/ | ||
| 4372 | yyerrstatus /usr/share/bison/bison.simple 846 | ||
| 4373 | YYFAIL /usr/share/bison/bison.simple 158 | ||
| 4374 | YYFAIL /usr/share/bison/bison.simple 159 | ||
| 4375 | YYFPRINTF /usr/share/bison/bison.simple 225 | ||
| 4376 | YYFPRINTF /usr/share/bison/bison.simple 226 | ||
| 4377 | YYINITDEPTH /usr/share/bison/bison.simple 244 | ||
| 4378 | YYINITDEPTH /usr/share/bison/bison.simple 245 | ||
| 4379 | YYLEX /usr/share/bison/bison.simple 200 | ||
| 4380 | YYLEX /usr/share/bison/bison.simple 201 | ||
| 4381 | YYLEX /usr/share/bison/bison.simple 202 | ||
| 4382 | YYLEX /usr/share/bison/bison.simple 203 | ||
| 4383 | YYLEX /usr/share/bison/bison.simple 206 | ||
| 4384 | YYLEX /usr/share/bison/bison.simple 207 | ||
| 4385 | YYLEX /usr/share/bison/bison.simple 208 | ||
| 4386 | YYLEX /usr/share/bison/bison.simple 209 | ||
| 4387 | YYLEX /usr/share/bison/bison.simple 212 | ||
| 4388 | YYLEX /usr/share/bison/bison.simple 213 | ||
| 4389 | yylex y-src/cccp.y /^yylex ()$/ | ||
| 4390 | YYLLOC_DEFAULT /usr/share/bison/bison.simple /^# define YYLLOC_DEFAULT(Current, Rhs, N) \\$/ | ||
| 4391 | yylsp /usr/share/bison/bison.simple 748 | ||
| 4392 | yylsp /usr/share/bison/bison.simple 921 | ||
| 4393 | yyls /usr/share/bison/bison.simple 88 | ||
| 4394 | yyls /usr/share/bison/bison.simple 89 | ||
| 4395 | YYMAXDEPTH /usr/share/bison/bison.simple 255 | ||
| 4396 | YYMAXDEPTH /usr/share/bison/bison.simple 256 | ||
| 4397 | YYMAXDEPTH /usr/share/bison/bison.simple 259 | ||
| 4398 | YYMAXDEPTH /usr/share/bison/bison.simple 260 | ||
| 4399 | yymemcpy /usr/share/bison/bison.simple 264 | ||
| 4400 | yymemcpy /usr/share/bison/bison.simple 265 | ||
| 4401 | yymemcpy /usr/share/bison/bison.simple /^yymemcpy (char *yyto, const char *yyfrom, YYSIZE_T/ | ||
| 4402 | yynewstate /usr/share/bison/bison.simple 763 | ||
| 4403 | yynewstate /usr/share/bison/bison.simple 925 | ||
| 4404 | yyn /usr/share/bison/bison.simple 755 | ||
| 4405 | yyn /usr/share/bison/bison.simple 861 | ||
| 4406 | yyn /usr/share/bison/bison.simple 895 | ||
| 4407 | yyn /usr/share/bison/bison.simple 903 | ||
| 4408 | YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 351 | ||
| 4409 | YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 354 | ||
| 4410 | YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 358 | ||
| 4411 | YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 352 | ||
| 4412 | YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 355 | ||
| 4413 | YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 359 | ||
| 4414 | yyparse /usr/share/bison/bison.simple /^yyparse (YYPARSE_PARAM_ARG)$/ | ||
| 4415 | YYPOPSTACK /usr/share/bison/bison.simple 445 | ||
| 4416 | YYPOPSTACK /usr/share/bison/bison.simple 447 | ||
| 4417 | YYRECOVERING /usr/share/bison/bison.simple /^#define YYRECOVERING() (!!yyerrstatus)$/ | ||
| 4418 | yyresult /usr/share/bison/bison.simple 932 | ||
| 4419 | yyresult /usr/share/bison/bison.simple 939 | ||
| 4420 | yyresult /usr/share/bison/bison.simple 947 | ||
| 4421 | yyreturn /usr/share/bison/bison.simple 933 | ||
| 4422 | yyreturn /usr/share/bison/bison.simple 940 | ||
| 4423 | YYSIZE_T /usr/share/bison/bison.simple 128 | ||
| 4424 | YYSIZE_T /usr/share/bison/bison.simple 129 | ||
| 4425 | YYSIZE_T /usr/share/bison/bison.simple 131 | ||
| 4426 | YYSIZE_T /usr/share/bison/bison.simple 132 | ||
| 4427 | YYSIZE_T /usr/share/bison/bison.simple 136 | ||
| 4428 | YYSIZE_T /usr/share/bison/bison.simple 137 | ||
| 4429 | YYSIZE_T /usr/share/bison/bison.simple 140 | ||
| 4430 | YYSIZE_T /usr/share/bison/bison.simple 141 | ||
| 4431 | YYSIZE_T /usr/share/bison/bison.simple 145 | ||
| 4432 | YYSIZE_T /usr/share/bison/bison.simple 146 | ||
| 4433 | YYSIZE_T /usr/share/bison/bison.simple 51 | ||
| 4434 | YYSIZE_T /usr/share/bison/bison.simple 52 | ||
| 4435 | YYSIZE_T /usr/share/bison/bison.simple 56 | ||
| 4436 | YYSIZE_T /usr/share/bison/bison.simple 57 | ||
| 4437 | YYSIZE_T /usr/share/bison/bison.simple 71 | ||
| 4438 | YYSIZE_T /usr/share/bison/bison.simple 72 | ||
| 4439 | YYSIZE_T /usr/share/bison/bison.simple 75 | ||
| 4440 | YYSIZE_T /usr/share/bison/bison.simple 76 | ||
| 4441 | yyss /usr/share/bison/bison.simple 85 | ||
| 4442 | yyss /usr/share/bison/bison.simple 86 | ||
| 4443 | YYSTACK_ALLOC /usr/share/bison/bison.simple 50 | ||
| 4444 | YYSTACK_ALLOC /usr/share/bison/bison.simple 51 | ||
| 4445 | YYSTACK_ALLOC /usr/share/bison/bison.simple 55 | ||
| 4446 | YYSTACK_ALLOC /usr/share/bison/bison.simple 56 | ||
| 4447 | YYSTACK_ALLOC /usr/share/bison/bison.simple 59 | ||
| 4448 | YYSTACK_ALLOC /usr/share/bison/bison.simple 60 | ||
| 4449 | YYSTACK_ALLOC /usr/share/bison/bison.simple 78 | ||
| 4450 | YYSTACK_ALLOC /usr/share/bison/bison.simple 79 | ||
| 4451 | YYSTACK_BYTES /usr/share/bison/bison.simple /^# define YYSTACK_BYTES(N) \\$/ | ||
| 4452 | YYSTACK_FREE /usr/share/bison/bison.simple 79 | ||
| 4453 | YYSTACK_FREE /usr/share/bison/bison.simple 80 | ||
| 4454 | YYSTACK_FREE /usr/share/bison/bison.simple /^# define YYSTACK_FREE(Ptr) do { \/* empty *\/; } wh/ | ||
| 4455 | YYSTACK_GAP_MAX /usr/share/bison/bison.simple 93 | ||
| 4456 | YYSTACK_GAP_MAX /usr/share/bison/bison.simple 94 | ||
| 4457 | YYSTACK_RELOCATE /usr/share/bison/bison.simple 548 | ||
| 4458 | YYSTACK_RELOCATE /usr/share/bison/bison.simple /^# define YYSTACK_RELOCATE(Type, Stack) \\$/ | ||
| 4459 | yystate /usr/share/bison/bison.simple 757 | ||
| 4460 | yystate /usr/share/bison/bison.simple 761 | ||
| 4461 | yystate /usr/share/bison/bison.simple 875 | ||
| 4462 | yystate /usr/share/bison/bison.simple 924 | ||
| 4463 | YYSTD /usr/share/bison/bison.simple /^# define YYSTD(x) std::x$/ | ||
| 4464 | YYSTD /usr/share/bison/bison.simple /^# define YYSTD(x) x$/ | ||
| 4465 | yystpcpy /usr/share/bison/bison.simple 316 | ||
| 4466 | yystpcpy /usr/share/bison/bison.simple 317 | ||
| 4467 | yystpcpy /usr/share/bison/bison.simple /^yystpcpy (char *yydest, const char *yysrc)$/ | ||
| 4468 | yystrlen /usr/share/bison/bison.simple 293 | ||
| 4469 | yystrlen /usr/share/bison/bison.simple 294 | ||
| 4470 | yystrlen /usr/share/bison/bison.simple /^yystrlen (const char *yystr)$/ | ||
| 4471 | YYSTYPE y-src/parse.y 72 | ||
| 4472 | YYSTYPE y-src/parse.y 73 | ||
| 4473 | YYTERROR /usr/share/bison/bison.simple 177 | ||
| 4474 | YYTERROR /usr/share/bison/bison.simple 178 | ||
| 4475 | yyvsp /usr/share/bison/bison.simple 746 | ||
| 4476 | yyvsp /usr/share/bison/bison.simple 919 | ||
| 4477 | yyvs /usr/share/bison/bison.simple 86 | ||
| 4478 | yyvs /usr/share/bison/bison.simple 87 | ||
| 4479 | z c.c 144 | ||
| 4480 | z c.c 164 | ||
| 4481 | z cp-src/clheir.hpp 49 | ||
| 4482 | z cp-src/clheir.hpp 58 | ||
| 4483 | Z 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 | ||
| 35 | 2const forth-src/test-forth.fth /^3 4 2constant 2const$/ | ||
| 36 | 2val forth-src/test-forth.fth /^2const 2value 2val$/ | ||
| 37 | 2var forth-src/test-forth.fth /^2variable 2var$/ | ||
| 38 | a0 c-src/emacs/src/lisp.h /^ Lisp_Object (*a0) (void);$/ | ||
| 39 | a1 c-src/emacs/src/lisp.h /^ Lisp_Object (*a1) (Lisp_Object);$/ | ||
| 40 | a2 c-src/emacs/src/lisp.h /^ Lisp_Object (*a2) (Lisp_Object, Lisp_Object)/ | ||
| 41 | a3 c-src/emacs/src/lisp.h /^ Lisp_Object (*a3) (Lisp_Object, Lisp_Object,/ | ||
| 42 | a4 c-src/emacs/src/lisp.h /^ Lisp_Object (*a4) (Lisp_Object, Lisp_Object,/ | ||
| 43 | a5 c-src/emacs/src/lisp.h /^ Lisp_Object (*a5) (Lisp_Object, Lisp_Object,/ | ||
| 44 | a6 c-src/emacs/src/lisp.h /^ Lisp_Object (*a6) (Lisp_Object, Lisp_Object,/ | ||
| 45 | a7 c-src/emacs/src/lisp.h /^ Lisp_Object (*a7) (Lisp_Object, Lisp_Object,/ | ||
| 46 | a8 c-src/emacs/src/lisp.h /^ Lisp_Object (*a8) (Lisp_Object, Lisp_Object,/ | ||
| 47 | aaaaaa c-src/h.h 111 | ||
| 48 | aaa c.c 249 | ||
| 49 | aaa c.c 269 | ||
| 50 | aa c.c 269 | ||
| 51 | aa c.c 279 | ||
| 52 | abbrev_all_caps c-src/abbrev.c 58 | ||
| 53 | abbrev-expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/ | ||
| 54 | abbrevs_changed c-src/abbrev.c 56 | ||
| 55 | abbrev-symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/ | ||
| 56 | abc c-src/h.h 33 | ||
| 57 | abc c-src/h.h 37 | ||
| 58 | ABC ruby-src/test1.ru 11 | ||
| 59 | Abort_Handler_Pointer/t ada-src/2ataspri.ads /^ type Abort_Handler_Pointer is access procedure / | ||
| 60 | abort-recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("abort-recursive-edit", Fabort_recursive_ed/ | ||
| 61 | Abort_Task/p ada-src/2ataspri.adb /^ procedure Abort_Task (T : TCB_Ptr) is$/ | ||
| 62 | Abort_Task/p ada-src/2ataspri.ads /^ procedure Abort_Task (T : TCB_Ptr);$/ | ||
| 63 | Abort_Wrapper/p ada-src/2ataspri.adb /^ procedure Abort_Wrapper$/ | ||
| 64 | \aboveenvbreak tex-src/texinfo.tex /^\\def\\aboveenvbreak{{\\advance\\aboveenvskipamount by/ | ||
| 65 | abs/f ada-src/etags-test-for.ada /^ function "abs" (Right : Complex) return Real'/ | ||
| 66 | absolute_dirname c-src/etags.c /^absolute_dirname (char *file, char *dir)$/ | ||
| 67 | absolute_filename c-src/etags.c /^absolute_filename (char *file, char *dir)$/ | ||
| 68 | abt cp-src/c.C 55 | ||
| 69 | a c.c 152 | ||
| 70 | A c.c 162 | ||
| 71 | a c.c 180 | ||
| 72 | a c.c /^a ()$/ | ||
| 73 | a c.c /^a()$/ | ||
| 74 | accent_key_syms c-src/emacs/src/keyboard.c 4625 | ||
| 75 | access_keymap_keyremap c-src/emacs/src/keyboard.c /^access_keymap_keyremap (Lisp_Object map, Lisp_Obje/ | ||
| 76 | acc_pred_info merc-src/accumulator.m /^:- pred acc_pred_info(list(mer_type)::in, list(pro/ | ||
| 77 | acc_proc_info merc-src/accumulator.m /^:- pred acc_proc_info(list(prog_var)::in, prog_var/ | ||
| 78 | accu_assoc merc-src/accumulator.m /^:- pred accu_assoc(module_info::in, vartypes::in, / | ||
| 79 | accu_assoc merc-src/accumulator.m /^:- type accu_assoc$/ | ||
| 80 | accu_base merc-src/accumulator.m /^:- type accu_base$/ | ||
| 81 | accu_before merc-src/accumulator.m /^:- pred accu_before(module_info::in, vartypes::in,/ | ||
| 82 | accu_case merc-src/accumulator.m /^:- type accu_case$/ | ||
| 83 | accu_construct_assoc merc-src/accumulator.m /^:- pred accu_construct_assoc(module_info::in, vart/ | ||
| 84 | accu_construct merc-src/accumulator.m /^:- pred accu_construct(module_info::in, vartypes::/ | ||
| 85 | accu_create_goal merc-src/accumulator.m /^:- pred accu_create_goal(accu_goal_id::in, list(pr/ | ||
| 86 | accu_divide_base_case merc-src/accumulator.m /^:- pred accu_divide_base_case(module_info::in, var/ | ||
| 87 | accu_goal_id merc-src/accumulator.m /^:- type accu_goal_id$/ | ||
| 88 | accu_goal_list merc-src/accumulator.m /^:- func accu_goal_list(list(accu_goal_id), accu_go/ | ||
| 89 | accu_goal_store merc-src/accumulator.m /^:- type accu_goal_store == goal_store(accu_goal_id/ | ||
| 90 | accu_has_heuristic merc-src/accumulator.m /^:- pred accu_has_heuristic(module_name::in, string/ | ||
| 91 | accu_heuristic merc-src/accumulator.m /^:- pred accu_heuristic(module_name::in, string::in/ | ||
| 92 | accu_is_associative merc-src/accumulator.m /^:- pred accu_is_associative(module_info::in, pred_/ | ||
| 93 | accu_is_update merc-src/accumulator.m /^:- pred accu_is_update(module_info::in, pred_id::i/ | ||
| 94 | acc_unification merc-src/accumulator.m /^:- pred acc_unification(pair(prog_var)::in, hlds_g/ | ||
| 95 | accu_process_assoc_set merc-src/accumulator.m /^:- pred accu_process_assoc_set(module_info::in, ac/ | ||
| 96 | accu_process_update_set merc-src/accumulator.m /^:- pred accu_process_update_set(module_info::in, a/ | ||
| 97 | accu_related merc-src/accumulator.m /^:- pred accu_related(module_info::in, vartypes::in/ | ||
| 98 | accu_rename merc-src/accumulator.m /^:- func accu_rename(list(accu_goal_id), accu_subst/ | ||
| 99 | accu_sets_init merc-src/accumulator.m /^:- pred accu_sets_init(accu_sets::out) is det.$/ | ||
| 100 | accu_sets merc-src/accumulator.m /^:- type accu_sets$/ | ||
| 101 | accu_stage1_2 merc-src/accumulator.m /^:- pred accu_stage1_2(module_info::in, vartypes::i/ | ||
| 102 | accu_stage1 merc-src/accumulator.m /^:- pred accu_stage1(module_info::in, vartypes::in,/ | ||
| 103 | accu_stage2 merc-src/accumulator.m /^:- pred accu_stage2(module_info::in, proc_info::in/ | ||
| 104 | accu_stage3 merc-src/accumulator.m /^:- pred accu_stage3(accu_goal_id::in, list(prog_va/ | ||
| 105 | accu_standardize merc-src/accumulator.m /^:- pred accu_standardize(hlds_goal::in, hlds_goal:/ | ||
| 106 | accu_store merc-src/accumulator.m /^:- pred accu_store(accu_case::in, hlds_goal::in,$/ | ||
| 107 | accu_subst merc-src/accumulator.m /^:- type accu_subst == map(prog_var, prog_var).$/ | ||
| 108 | accu_substs_init merc-src/accumulator.m /^:- pred accu_substs_init(list(prog_var)::in, prog_/ | ||
| 109 | accu_substs merc-src/accumulator.m /^:- type accu_substs$/ | ||
| 110 | accu_top_level merc-src/accumulator.m /^:- pred accu_top_level(top_level::in, hlds_goal::i/ | ||
| 111 | accu_transform_proc merc-src/accumulator.m /^:- pred accu_transform_proc(pred_proc_id::in, pred/ | ||
| 112 | accu_update merc-src/accumulator.m /^:- pred accu_update(module_info::in, vartypes::in,/ | ||
| 113 | accu_warning merc-src/accumulator.m /^:- type accu_warning$/ | ||
| 114 | acc_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/ | ||
| 116 | A cp-src/c.C 117 | ||
| 117 | a cp-src/c.C 132 | ||
| 118 | A cp-src/c.C 39 | ||
| 119 | A cp-src/c.C 56 | ||
| 120 | A cp-src/c.C 57 | ||
| 121 | A cp-src/c.C 73 | ||
| 122 | ~A cp-src/c.C /^A::~A() {}$/ | ||
| 123 | A cp-src/c.C /^void A::A() {}$/ | ||
| 124 | A cp-src/fail.C 23 | ||
| 125 | A cp-src/fail.C 7 | ||
| 126 | a c-src/h.h 103 | ||
| 127 | a c-src/h.h 40 | ||
| 128 | action prol-src/natded.prolog /^action(KeyVals):-$/ | ||
| 129 | \activedoublequote tex-src/texinfo.tex /^\\def\\activedoublequote{{\\tt \\char '042}}$/ | ||
| 130 | active_maps c-src/emacs/src/keyboard.c /^active_maps (Lisp_Object first_event)$/ | ||
| 131 | \activeparens tex-src/texinfo.tex /^\\def\\activeparens{%$/ | ||
| 132 | actout prol-src/natded.prolog /^actout('Text',Trees):-$/ | ||
| 133 | act prol-src/natded.prolog /^act(OutForm,OutSyn,Ws):-$/ | ||
| 134 | Ada_funcs c-src/etags.c /^Ada_funcs (FILE *inf)$/ | ||
| 135 | Ada_getit c-src/etags.c /^Ada_getit (FILE *inf, const char *name_qualifier)$/ | ||
| 136 | Ada_help c-src/etags.c 475 | ||
| 137 | ADASRC make-src/Makefile /^ADASRC=etags-test-for.ada 2ataspri.adb 2ataspri.ad/ | ||
| 138 | Ada_suffixes c-src/etags.c 473 | ||
| 139 | add_active prol-src/natded.prolog /^add_active([],Cat,Goal):-$/ | ||
| 140 | addArchs objc-src/PackInsp.m /^-(void)addArchs:(const char *)string$/ | ||
| 141 | add_command_key c-src/emacs/src/keyboard.c /^add_command_key (Lisp_Object key)$/ | ||
| 142 | add_edge prol-src/natded.prolog /^add_edge(Left,Right,Cat):-$/ | ||
| 143 | add_node c-src/etags.c /^add_node (node *np, node **cur_node_p)$/ | ||
| 144 | addnoise html-src/algrthms.html /^Adding Noise to the$/ | ||
| 145 | AddNullToNmStr pas-src/common.pas /^function AddNullToNmStr; (*($/ | ||
| 146 | addPOReader php-src/lce_functions.php /^ function addPOReader($d_name, &$por)$/ | ||
| 147 | add_regex c-src/etags.c /^add_regex (char *regexp_pattern, language *lang)$/ | ||
| 148 | ADDRESS c-src/emacs/src/gmalloc.c /^#define ADDRESS(B) ((void *) (((B) - 1) * BLOCKSIZ/ | ||
| 149 | Address_To_Call_State/f ada-src/2ataspri.adb /^ function Address_To_Call_State is new$/ | ||
| 150 | Address_To_TCB_Ptr/f ada-src/2ataspri.ads /^ function Address_To_TCB_Ptr is new$/ | ||
| 151 | address y-src/cccp.y 113 | ||
| 152 | add_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$/ | ||
| 154 | adjust_point_for_property c-src/emacs/src/keyboard.c /^adjust_point_for_property (ptrdiff_t last_pt, bool/ | ||
| 155 | Advanced usage tex-src/gzip.texi /^@node Advanced usage, Environment, Invoking gzip, / | ||
| 156 | a-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$/ | ||
| 159 | a-forth-value? forth-src/test-forth.fth /^55 value a-forth-value?$/ | ||
| 160 | a-forth-word forth-src/test-forth.fth /^: a-forth-word ( a b c -- )$/ | ||
| 161 | a-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/ | ||
| 164 | agent cp-src/clheir.hpp 75 | ||
| 165 | algorithms html-src/algrthms.html /^Description$/ | ||
| 166 | alias c-src/emacs/src/lisp.h 688 | ||
| 167 | alignas c-src/emacs/src/lisp.h /^# define alignas(alignment) \/* empty *\/$/ | ||
| 168 | align c-src/emacs/src/gmalloc.c /^align (size_t size)$/ | ||
| 169 | aligned_alloc c-src/emacs/src/gmalloc.c 1718 | ||
| 170 | aligned_alloc c-src/emacs/src/gmalloc.c 71 | ||
| 171 | aligned_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 | ||
| 174 | Aligned_Cons c-src/emacs/src/lisp.h 4670 | ||
| 175 | aligned c-src/emacs/src/gmalloc.c 199 | ||
| 176 | Aligned_String c-src/emacs/src/lisp.h 4676 | ||
| 177 | alignlist c-src/emacs/src/gmalloc.c 196 | ||
| 178 | ALIGNOF_STRUCT_LISP_VECTOR c-src/emacs/src/lisp.h 1378 | ||
| 179 | alive cp-src/conway.hpp 7 | ||
| 180 | all_kboards c-src/emacs/src/keyboard.c 86 | ||
| 181 | ALLOCATED_BEFORE_DUMPING c-src/emacs/src/gmalloc.c /^#define ALLOCATED_BEFORE_DUMPING(P) \\$/ | ||
| 182 | allocated c-src/emacs/src/regex.h 344 | ||
| 183 | allocate_kboard c-src/emacs/src/keyboard.c /^allocate_kboard (Lisp_Object type)$/ | ||
| 184 | ALLOCATE_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define ALLOCATE_PSEUDOVECTOR(type, field, tag) / | ||
| 185 | ALLOCATE_ZEROED_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define ALLOCATE_ZEROED_PSEUDOVECTOR(type, field, / | ||
| 186 | \alphaenumerate tex-src/texinfo.tex /^\\def\\alphaenumerate{\\enumerate{a}}$/ | ||
| 187 | aMANY c-src/emacs/src/lisp.h /^ Lisp_Object (*aMANY) (ptrdiff_t, Lisp_Object/ | ||
| 188 | analyze_regex c-src/etags.c /^analyze_regex (char *regex_arg)$/ | ||
| 189 | andkeyvalseq prol-src/natded.prolog /^andkeyvalseq(KeyVals) --> ['&'], keyvalseq(KeyVals/ | ||
| 190 | AND y-src/cccp.c 11 | ||
| 191 | an_extern_linkage c-src/h.h 44 | ||
| 192 | an_extern_linkage c-src/h.h 56 | ||
| 193 | an_extern_linkage_ptr c-src/h.h 43 | ||
| 194 | animals cp-src/c.C 126 | ||
| 195 | animals cp-src/c.C 130 | ||
| 196 | animals c-src/h.h 81 | ||
| 197 | (another-forth-word) forth-src/test-forth.fth /^: (another-forth-word) ( -- )$/ | ||
| 198 | ANSIC c-src/h.h 84 | ||
| 199 | ANSIC c-src/h.h 85 | ||
| 200 | any_kboard_state c-src/emacs/src/keyboard.c /^any_kboard_state ()$/ | ||
| 201 | appDidInit objcpp-src/SimpleCalc.M /^- appDidInit:sender$/ | ||
| 202 | \appendixletter tex-src/texinfo.tex /^\\def\\appendixletter{\\char\\the\\appendixno}$/ | ||
| 203 | appendix_name perl-src/htlmify-cystic 13 | ||
| 204 | \appendixnoderef tex-src/texinfo.tex /^\\def\\appendixnoderef{\\ifx\\lastnode\\relax\\else$/ | ||
| 205 | appendix 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}$/ | ||
| 215 | appendix_toc perl-src/htlmify-cystic 16 | ||
| 216 | \appendixzzz tex-src/texinfo.tex /^\\def\\appendixzzz #1{\\seccheck{appendix}%$/ | ||
| 217 | append_list prol-src/natded.prolog /^append_list([],[]).$/ | ||
| 218 | append prol-src/natded.prolog /^append([],Xs,Xs).$/ | ||
| 219 | append_string pas-src/common.pas /^procedure append_string;(*($/ | ||
| 220 | AppendTextString pas-src/common.pas /^function AppendTextString;(*($/ | ||
| 221 | appendToDisplay objcpp-src/SimpleCalc.M /^- appendToDisplay:(const char *)theDigit$/ | ||
| 222 | append_tool_bar_item c-src/emacs/src/keyboard.c /^append_tool_bar_item (void)$/ | ||
| 223 | apply_modifiers c-src/emacs/src/keyboard.c /^apply_modifiers (int modifiers, Lisp_Object base)$/ | ||
| 224 | apply_modifiers_uncached c-src/emacs/src/keyboard.c /^apply_modifiers_uncached (int modifiers, char *bas/ | ||
| 225 | /A ps-src/rfc1245.ps /^\/A { $/ | ||
| 226 | aref_addr c-src/emacs/src/lisp.h /^aref_addr (Lisp_Object array, ptrdiff_t idx)$/ | ||
| 227 | AREF c-src/emacs/src/lisp.h /^AREF (Lisp_Object array, ptrdiff_t idx)$/ | ||
| 228 | arg c-src/emacs/src/lisp.h 2961 | ||
| 229 | arg c-src/emacs/src/lisp.h 2966 | ||
| 230 | arg c-src/emacs/src/lisp.h 2971 | ||
| 231 | arg c-src/h.h 13 | ||
| 232 | arglist y-src/cccp.y 41 | ||
| 233 | argno y-src/cccp.y 45 | ||
| 234 | args c-src/emacs/src/lisp.h 2986 | ||
| 235 | args c-src/h.h 30 | ||
| 236 | argsindent tex-src/texinfo.tex /^\\dimen1=\\hsize \\advance \\dimen1 by -\\defargsindent/ | ||
| 237 | argsindent tex-src/texinfo.tex /^\\newskip\\defargsindent \\defargsindent=50pt$/ | ||
| 238 | argsindent tex-src/texinfo.tex /^\\parshape 2 0in \\dimen0 \\defargsindent \\dimen1 / | ||
| 239 | ARGS make-src/Makefile /^ARGS=- < srclist$/ | ||
| 240 | arg_type c-src/etags.c 250 | ||
| 241 | argument c-src/etags.c 253 | ||
| 242 | argvals prol-src/natded.prolog /^argvals([]) --> [].$/ | ||
| 243 | Arith_Comparison c-src/emacs/src/lisp.h 3497 | ||
| 244 | ARITH_EQUAL c-src/emacs/src/lisp.h 3498 | ||
| 245 | ARITH_GRTR c-src/emacs/src/lisp.h 3501 | ||
| 246 | ARITH_GRTR_OR_EQUAL c-src/emacs/src/lisp.h 3503 | ||
| 247 | ARITH_LESS c-src/emacs/src/lisp.h 3500 | ||
| 248 | ARITH_LESS_OR_EQUAL c-src/emacs/src/lisp.h 3502 | ||
| 249 | ARITH_NOTEQUAL c-src/emacs/src/lisp.h 3499 | ||
| 250 | array c.c 190 | ||
| 251 | ARRAYELTS c-src/emacs/src/lisp.h /^#define ARRAYELTS(arr) (sizeof (arr) \/ sizeof (arr/ | ||
| 252 | ARRAY_MARK_FLAG c-src/emacs/src/lisp.h 768 | ||
| 253 | ARRAYP c-src/emacs/src/lisp.h /^ARRAYP (Lisp_Object x)$/ | ||
| 254 | A ruby-src/test1.ru /^class A$/ | ||
| 255 | a ruby-src/test1.ru /^ def a()$/ | ||
| 256 | A ruby-src/test1.ru /^module A$/ | ||
| 257 | ASCII_CHAR_P c-src/emacs/src/lisp.h /^#define ASCII_CHAR_P(c) UNSIGNED_CMP (c, <, 0x80)$/ | ||
| 258 | ascii c-src/emacs/src/lisp.h 1598 | ||
| 259 | ASET 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}$/ | ||
| 261 | ASIZE c-src/emacs/src/lisp.h /^ASIZE (Lisp_Object array)$/ | ||
| 262 | Asm_help c-src/etags.c 504 | ||
| 263 | Asm_labels c-src/etags.c /^Asm_labels (FILE *inf)$/ | ||
| 264 | Asm_suffixes c-src/etags.c 493 | ||
| 265 | asort cp-src/functions.cpp /^void asort(int *a, int num){$/ | ||
| 266 | ASRC make-src/Makefile /^ASRC=empty.zz empty.zz.gz$/ | ||
| 267 | assemby-code-word forth-src/test-forth.fth /^code assemby-code-word ( dunno what it does )$/ | ||
| 268 | assert c-src/etags.c 135 | ||
| 269 | assert c-src/etags.c /^# define assert(x) ((void) 0)$/ | ||
| 270 | assign_neighbor cp-src/clheir.hpp /^ void assign_neighbor(int direction, location */ | ||
| 271 | associativity_assertion merc-src/accumulator.m /^:- pred associativity_assertion(module_info::in, l/ | ||
| 272 | assoc_list merc-src/accumulator.m /^:- import_module assoc_list.$/ | ||
| 273 | AST_Array::AST_Array cp-src/c.C /^AST_Array::AST_Array(UTL_ScopedName *n, unsigned l/ | ||
| 274 | AST_ConcreteType::AST_ConcreteType cp-src/c.C /^AST_ConcreteType::AST_ConcreteType(AST_Decl::NodeT/ | ||
| 275 | AST_Root cp-src/c.C 92 | ||
| 276 | AT cp-src/c.C 52 | ||
| 277 | at_end c-src/etags.c 249 | ||
| 278 | at_filename c-src/etags.c 247 | ||
| 279 | /atilde ps-src/rfc1245.ps /^\/atilde \/aring \/ccedilla \/eacute \/egrave \/ecircumf/ | ||
| 280 | at_language c-src/etags.c 245 | ||
| 281 | at_least_one_member prol-src/natded.prolog /^at_least_one_member(X,[X|_]):-!.$/ | ||
| 282 | atom prol-src/natded.prolog /^atom(X) --> [X], {atomic(X)}.$/ | ||
| 283 | atomval prol-src/natded.prolog /^atomval(X) --> atom(X).$/ | ||
| 284 | at_regexp c-src/etags.c 246 | ||
| 285 | at_stdin c-src/etags.c 248 | ||
| 286 | AU cp-src/c.C 53 | ||
| 287 | aultparindent\hang\textindent tex-src/texinfo.tex /^\\footstrut\\parindent=\\defaultparindent\\hang\\textin/ | ||
| 288 | aultparindent tex-src/texinfo.tex /^\\newdimen\\defaultparindent \\defaultparindent = 15p/ | ||
| 289 | aultparindent tex-src/texinfo.tex /^\\parindent = \\defaultparindent$/ | ||
| 290 | aUNEVALLED 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 / | ||
| 294 | AUTO_CONS c-src/emacs/src/lisp.h /^#define AUTO_CONS(name, a, b) Lisp_Object name = A/ | ||
| 295 | AUTO_CONS_EXPR c-src/emacs/src/lisp.h /^#define AUTO_CONS_EXPR(a, b) \\$/ | ||
| 296 | auto_help c-src/etags.c 699 | ||
| 297 | AUTO_LIST1 c-src/emacs/src/lisp.h /^#define AUTO_LIST1(name, a) \\$/ | ||
| 298 | AUTO_LIST2 c-src/emacs/src/lisp.h /^#define AUTO_LIST2(name, a, b) \\$/ | ||
| 299 | AUTO_LIST3 c-src/emacs/src/lisp.h /^#define AUTO_LIST3(name, a, b, c) \\$/ | ||
| 300 | AUTO_LIST4 c-src/emacs/src/lisp.h /^#define AUTO_LIST4(name, a, b, c, d) \\$/ | ||
| 301 | AUTOLOADP c-src/emacs/src/lisp.h /^AUTOLOADP (Lisp_Object x)$/ | ||
| 302 | AUTO_STRING c-src/emacs/src/lisp.h /^#define AUTO_STRING(name, str) \\$/ | ||
| 303 | AVAIL_ALLOCA c-src/emacs/src/lisp.h /^#define AVAIL_ALLOCA(size) (sa_avail -= (size), al/ | ||
| 304 | backslash=0 tex-src/texinfo.tex /^\\let\\indexbackslash=0 %overridden during \\printin/ | ||
| 305 | \balancecolumns tex-src/texinfo.tex /^\\def\\balancecolumns{%$/ | ||
| 306 | bar1 ruby-src/test1.ru /^ attr_reader(:foo1, :bar1, # comment$/ | ||
| 307 | bar c.c 143 | ||
| 308 | bar cp-src/x.cc /^XX::bar()$/ | ||
| 309 | bar c-src/c.c /^void bar() {while(0) {}}$/ | ||
| 310 | bar c-src/h.h 19 | ||
| 311 | Bar lua-src/test.lua /^function Square.something:Bar ()$/ | ||
| 312 | Bar perl-src/kai-test.pl /^package Bar;$/ | ||
| 313 | Barrier_Function_Pointer/t ada-src/etags-test-for.ada /^ type Barrier_Function_Pointer is access$/ | ||
| 314 | bar= ruby-src/test1.ru /^ attr_writer :bar,$/ | ||
| 315 | _bar? ruby-src/test1.ru /^ def self._bar?(abc)$/ | ||
| 316 | base_case_ids merc-src/accumulator.m /^:- func base_case_ids(accu_goal_store) = list(accu/ | ||
| 317 | base_case_ids_set merc-src/accumulator.m /^:- func base_case_ids_set(accu_goal_store) = set(a/ | ||
| 318 | base cp-src/c.C /^double base (void) const { return rng_base; }$/ | ||
| 319 | base cp-src/Range.h /^ double base (void) const { return rng_base; }$/ | ||
| 320 | base c-src/emacs/src/lisp.h 2188 | ||
| 321 | bas_syn prol-src/natded.prolog /^bas_syn(n(_)).$/ | ||
| 322 | baz= ruby-src/test1.ru /^ :baz,$/ | ||
| 323 | bbbbbb c-src/h.h 113 | ||
| 324 | bbb c.c 251 | ||
| 325 | bb c.c 275 | ||
| 326 | b c.c 180 | ||
| 327 | b c.c 259 | ||
| 328 | b c.c 260 | ||
| 329 | b c.c 262 | ||
| 330 | b c.c /^b ()$/ | ||
| 331 | B cp-src/c.C 122 | ||
| 332 | b cp-src/c.C 132 | ||
| 333 | B cp-src/c.C 54 | ||
| 334 | B cp-src/c.C 56 | ||
| 335 | B cp-src/c.C 74 | ||
| 336 | ~B cp-src/c.C /^ ~B() {};$/ | ||
| 337 | B cp-src/c.C /^void B::B() {}$/ | ||
| 338 | B cp-src/fail.C 24 | ||
| 339 | B cp-src/fail.C 8 | ||
| 340 | b c-src/h.h 103 | ||
| 341 | b c-src/h.h 104 | ||
| 342 | b c-src/h.h 41 | ||
| 343 | been_warned c-src/etags.c 222 | ||
| 344 | before_command_echo_length c-src/emacs/src/keyboard.c 130 | ||
| 345 | before_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{%$/ | ||
| 356 | begtoken c-src/etags.c /^#define begtoken(c) (_btk[CHAR (c)]) \/* c can star/ | ||
| 357 | behaviour_info erl-src/gs_dialog.erl /^behaviour_info(callbacks) ->$/ | ||
| 358 | BE_Node cp-src/c.C 77 | ||
| 359 | BE_Node cp-src/c.C /^void BE_Node::BE_Node() {}$/ | ||
| 360 | bf=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 }$/ | ||
| 364 | Bidule/b ada-src/etags-test-for.ada /^ protected body Bidule is$/ | ||
| 365 | Bidule/b ada-src/waroquiers.ada /^ protected body Bidule is$/ | ||
| 366 | Bidule/t ada-src/etags-test-for.ada /^ protected Bidule is$/ | ||
| 367 | Bidule/t ada-src/waroquiers.ada /^ protected Bidule is$/ | ||
| 368 | bind_polling_period c-src/emacs/src/keyboard.c /^bind_polling_period (int n)$/ | ||
| 369 | bind 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 { $/ | ||
| 374 | BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 125 | ||
| 375 | BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 129 | ||
| 376 | BITS_PER_CHAR c-src/emacs/src/lisp.h 136 | ||
| 377 | BITS_PER_EMACS_INT c-src/emacs/src/lisp.h 139 | ||
| 378 | BITS_PER_LONG c-src/emacs/src/lisp.h 138 | ||
| 379 | BITS_PER_SHORT c-src/emacs/src/lisp.h 137 | ||
| 380 | bits_word c-src/emacs/src/lisp.h 123 | ||
| 381 | bits_word c-src/emacs/src/lisp.h 127 | ||
| 382 | BITS_WORD_MAX c-src/emacs/src/lisp.h 124 | ||
| 383 | BITS_WORD_MAX c-src/emacs/src/lisp.h 128 | ||
| 384 | bla c.c /^int bla ()$/ | ||
| 385 | BLACK cp-src/screen.hpp 12 | ||
| 386 | blah tex-src/testenv.tex /^\\section{blah}$/ | ||
| 387 | bletch el-src/TAGTEST.EL /^(foo::defmumble bletch beuarghh)$/ | ||
| 388 | BLOCK c-src/emacs/src/gmalloc.c /^#define BLOCK(A) (((char *) (A) - _heapbase) \/ BLO/ | ||
| 389 | BLOCKIFY c-src/emacs/src/gmalloc.c /^#define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) \// | ||
| 390 | BLOCKLOG c-src/emacs/src/gmalloc.c 125 | ||
| 391 | BLOCKSIZE c-src/emacs/src/gmalloc.c 126 | ||
| 392 | /bl ps-src/rfc1245.ps /^\/bl { $/ | ||
| 393 | BLUE cp-src/screen.hpp 13 | ||
| 394 | blv c-src/emacs/src/lisp.h 689 | ||
| 395 | blv_found c-src/emacs/src/lisp.h /^blv_found (struct Lisp_Buffer_Local_Value *blv)$/ | ||
| 396 | bodyindent tex-src/texinfo.tex /^\\advance\\dimen2 by -\\defbodyindent$/ | ||
| 397 | bodyindent tex-src/texinfo.tex /^\\advance\\dimen3 by -\\defbodyindent$/ | ||
| 398 | bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by -\\defbodyindent$/ | ||
| 399 | bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by \\defbodyindent \\advance \\righ/ | ||
| 400 | bodyindent tex-src/texinfo.tex /^\\exdentamount=\\defbodyindent$/ | ||
| 401 | bodyindent tex-src/texinfo.tex /^\\newskip\\defbodyindent \\defbodyindent=.4in$/ | ||
| 402 | Body_Required/f ada-src/etags-test-for.ada /^ function Body_Required$/ | ||
| 403 | Boo::Boo cp-src/c.C /^Boo::Boo(Boo) :$/ | ||
| 404 | Boo cp-src/c.C 129 | ||
| 405 | Boo cp-src/c.C /^ Boo(int _i, int _a, int _b) : i(_i), a(_a), b(/ | ||
| 406 | bool c.c 222 | ||
| 407 | bool_header_size c-src/emacs/src/lisp.h 1472 | ||
| 408 | bool merc-src/accumulator.m /^:- import_module bool.$/ | ||
| 409 | boolvar c-src/emacs/src/lisp.h 2287 | ||
| 410 | bool_vector_bitref c-src/emacs/src/lisp.h /^bool_vector_bitref (Lisp_Object a, EMACS_INT i)$/ | ||
| 411 | BOOL_VECTOR_BITS_PER_CHAR c-src/emacs/src/lisp.h 114 | ||
| 412 | BOOL_VECTOR_BITS_PER_CHAR c-src/emacs/src/lisp.h 115 | ||
| 413 | bool_vector_bytes c-src/emacs/src/lisp.h /^bool_vector_bytes (EMACS_INT size)$/ | ||
| 414 | bool_vector_data c-src/emacs/src/lisp.h /^bool_vector_data (Lisp_Object a)$/ | ||
| 415 | BOOL_VECTOR_P c-src/emacs/src/lisp.h /^BOOL_VECTOR_P (Lisp_Object a)$/ | ||
| 416 | bool_vector_ref c-src/emacs/src/lisp.h /^bool_vector_ref (Lisp_Object a, EMACS_INT i)$/ | ||
| 417 | bool_vector_set c-src/emacs/src/lisp.h /^bool_vector_set (Lisp_Object a, EMACS_INT i, bool / | ||
| 418 | bool_vector_size c-src/emacs/src/lisp.h /^bool_vector_size (Lisp_Object a)$/ | ||
| 419 | bool_vector_uchar_data c-src/emacs/src/lisp.h /^bool_vector_uchar_data (Lisp_Object a)$/ | ||
| 420 | bool_vector_words c-src/emacs/src/lisp.h /^bool_vector_words (EMACS_INT size)$/ | ||
| 421 | /B ps-src/rfc1245.ps /^\/B { $/ | ||
| 422 | bracelev 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/ | ||
| 426 | BROWN cp-src/screen.hpp 18 | ||
| 427 | B ruby-src/test1.ru /^ class B$/ | ||
| 428 | b ruby-src/test1.ru /^ def b()$/ | ||
| 429 | bsp_DevId c-src/h.h 25 | ||
| 430 | bt 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}}$/ | ||
| 434 | btowc c-src/emacs/src/regex.h /^# define btowc(c) c$/ | ||
| 435 | buffer c-src/emacs/src/lisp.h 2000 | ||
| 436 | buffer c-src/emacs/src/regex.h 341 | ||
| 437 | buffer c-src/etags.c 238 | ||
| 438 | buffer c-src/h.h 119 | ||
| 439 | BUFFER_OBJFWDP c-src/emacs/src/lisp.h /^BUFFER_OBJFWDP (union Lisp_Fwd *a)$/ | ||
| 440 | BUFFERP c-src/emacs/src/lisp.h /^BUFFERP (Lisp_Object a)$/ | ||
| 441 | BUFFERSIZE objc-src/Subprocess.h 43 | ||
| 442 | buildact prol-src/natded.prolog /^buildact([SynIn],Right,RightPlus1):-$/ | ||
| 443 | build prol-src/natded.prolog /^build([],Left,Left).$/ | ||
| 444 | build_pure_c_string c-src/emacs/src/lisp.h /^build_pure_c_string (const char *str)$/ | ||
| 445 | build_string c-src/emacs/src/lisp.h /^build_string (const char *str)$/ | ||
| 446 | builtin_lisp_symbol c-src/emacs/src/lisp.h /^builtin_lisp_symbol (int index)$/ | ||
| 447 | \bullet tex-src/texinfo.tex /^\\def\\bullet{$\\ptexbullet$}$/ | ||
| 448 | burst c-src/h.h 28 | ||
| 449 | busy c-src/emacs/src/gmalloc.c 158 | ||
| 450 | ButtonBar pyt-src/server.py /^def ButtonBar(frame, legend, ref, alternatives, co/ | ||
| 451 | button_down_location c-src/emacs/src/keyboard.c 5210 | ||
| 452 | button_down_time c-src/emacs/src/keyboard.c 5218 | ||
| 453 | \bye tex-src/texinfo.tex /^\\outer\\def\\bye{\\pagealignmacro\\tracingstats=1\\ptex/ | ||
| 454 | bytecode_dest c-src/emacs/src/lisp.h 3037 | ||
| 455 | bytecode_top c-src/emacs/src/lisp.h 3036 | ||
| 456 | BYTE_MARK_STACK c-src/emacs/src/lisp.h 3181 | ||
| 457 | bytepos c-src/emacs/src/lisp.h 2016 | ||
| 458 | bytes_free c-src/emacs/src/gmalloc.c 314 | ||
| 459 | _bytes_free c-src/emacs/src/gmalloc.c 376 | ||
| 460 | byte_stack c-src/emacs/src/lisp.h 3049 | ||
| 461 | bytes_total c-src/emacs/src/gmalloc.c 310 | ||
| 462 | bytes_used c-src/emacs/src/gmalloc.c 312 | ||
| 463 | _bytes_used c-src/emacs/src/gmalloc.c 374 | ||
| 464 | caccacacca c.c /^caccacacca (a,b,c,d,e,f,g)$/ | ||
| 465 | cacheLRUEntry_s c.c 172 | ||
| 466 | cacheLRUEntry_t c.c 177 | ||
| 467 | calculate_goal_info merc-src/accumulator.m /^:- pred calculate_goal_info(hlds_goal_expr::in, hl/ | ||
| 468 | CALLMANY c-src/emacs/src/lisp.h /^#define CALLMANY(f, array) (f) (ARRAYELTS (array),/ | ||
| 469 | CALLN c-src/emacs/src/lisp.h /^#define CALLN(f, ...) CALLMANY (f, ((Lisp_Object [/ | ||
| 470 | calloc c-src/emacs/src/gmalloc.c 1717 | ||
| 471 | calloc c-src/emacs/src/gmalloc.c 66 | ||
| 472 | calloc c-src/emacs/src/gmalloc.c 70 | ||
| 473 | calloc c-src/emacs/src/gmalloc.c /^calloc (size_t nmemb, size_t size)$/ | ||
| 474 | can_be_null c-src/emacs/src/regex.h 370 | ||
| 475 | cancel_echoing c-src/emacs/src/keyboard.c /^cancel_echoing (void)$/ | ||
| 476 | canonicalize_filename c-src/etags.c /^canonicalize_filename (register char *fn)$/ | ||
| 477 | \capsenumerate tex-src/texinfo.tex /^\\def\\capsenumerate{\\enumerate{A}}$/ | ||
| 478 | CAR c-src/emacs/src/lisp.h /^CAR (Lisp_Object c)$/ | ||
| 479 | CAR_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$/ | ||
| 483 | case_Lisp_Int c-src/emacs/src/lisp.h 438 | ||
| 484 | cat_atoms prol-src/natded.prolog /^cat_atoms(A1,A2,A3):-$/ | ||
| 485 | CATCHER c-src/emacs/src/lisp.h 3021 | ||
| 486 | cat cp-src/c.C 126 | ||
| 487 | cat cp-src/c.C 130 | ||
| 488 | cat c-src/h.h 81 | ||
| 489 | cat prol-src/natded.prolog /^cat(A, Alpha@Beta, Ass3, Qs3, tree(fe,A:Alpha@Beta/ | ||
| 490 | C_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}}$/ | ||
| 493 | c c.c 180 | ||
| 494 | cccccccccc c-src/h.h 115 | ||
| 495 | C cp-src/fail.C 25 | ||
| 496 | C cp-src/fail.C 9 | ||
| 497 | C cp-src/fail.C /^ C(int i) {x = i;}$/ | ||
| 498 | c c-src/h.h 106 | ||
| 499 | c c-src/h.h /^#define c() d$/ | ||
| 500 | %cdiff make-src/Makefile /^%cdiff: CTAGS% CTAGS ${infiles}$/ | ||
| 501 | cdr c-src/emacs/src/lisp.h 1159 | ||
| 502 | CDR c-src/emacs/src/lisp.h /^CDR (Lisp_Object c)$/ | ||
| 503 | CDR_SAFE c-src/emacs/src/lisp.h /^CDR_SAFE (Lisp_Object c)$/ | ||
| 504 | cell 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$/ | ||
| 507 | C_entries c-src/etags.c /^C_entries (int c_ext, FILE *inf)$/ | ||
| 508 | C_EXT c-src/etags.c 2193 | ||
| 509 | c_ext c-src/etags.c 2271 | ||
| 510 | CFLAGS make-src/Makefile /^CFLAGS=${WARNINGS} -ansi -g3 # -pg -O$/ | ||
| 511 | /cfs ps-src/rfc1245.ps /^\/cfs { $/ | ||
| 512 | cgrep html-src/software.html /^cgrep$/ | ||
| 513 | chain c-src/emacs/src/lisp.h 1162 | ||
| 514 | chain c-src/emacs/src/lisp.h 2206 | ||
| 515 | chain c-src/emacs/src/lisp.h 2396 | ||
| 516 | chain_subst_2 merc-src/accumulator.m /^:- pred chain_subst_2(list(A)::in, map(A, B)::in, / | ||
| 517 | chain_subst merc-src/accumulator.m /^:- func chain_subst(accu_subst, accu_subst) = accu/ | ||
| 518 | ChangeFileType 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}%$/ | ||
| 535 | CHARACTERBITS c-src/emacs/src/lisp.h 2457 | ||
| 536 | CHAR_ALT c-src/emacs/src/lisp.h 2445 | ||
| 537 | CHAR_BIT c-src/emacs/src/lisp.h 2957 | ||
| 538 | CHAR_BIT c-src/emacs/src/lisp.h 2959 | ||
| 539 | CHAR_BIT c-src/emacs/src/lisp.h 2964 | ||
| 540 | CHAR_BIT c-src/emacs/src/lisp.h 2969 | ||
| 541 | CHAR_BIT c-src/emacs/src/lisp.h 2974 | ||
| 542 | CHAR_BIT c-src/emacs/src/lisp.h 2978 | ||
| 543 | CHAR_BIT c-src/emacs/src/lisp.h 2983 | ||
| 544 | char_bits c-src/emacs/src/lisp.h 2443 | ||
| 545 | CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 593 | ||
| 546 | CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 597 | ||
| 547 | CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 605 | ||
| 548 | CHAR c-src/etags.c /^#define CHAR(x) ((unsigned int)(x) & (CHARS - 1))/ | ||
| 549 | CHAR_CTL c-src/emacs/src/lisp.h 2449 | ||
| 550 | CHAR_HYPER c-src/emacs/src/lisp.h 2447 | ||
| 551 | CHAR_META c-src/emacs/src/lisp.h 2450 | ||
| 552 | CHAR_MODIFIER_MASK c-src/emacs/src/lisp.h 2452 | ||
| 553 | charpos c-src/emacs/src/lisp.h 2011 | ||
| 554 | CHARS c-src/etags.c 157 | ||
| 555 | charset_unibyte c-src/emacs/src/regex.h 410 | ||
| 556 | CHAR_SHIFT c-src/emacs/src/lisp.h 2448 | ||
| 557 | CHAR_SUPER c-src/emacs/src/lisp.h 2446 | ||
| 558 | CHAR_TABLE_EXTRA_SLOTS c-src/emacs/src/lisp.h /^CHAR_TABLE_EXTRA_SLOTS (struct Lisp_Char_Table *ct/ | ||
| 559 | CHAR_TABLE_P c-src/emacs/src/lisp.h /^CHAR_TABLE_P (Lisp_Object a)$/ | ||
| 560 | CHAR_TABLE_REF_ASCII c-src/emacs/src/lisp.h /^CHAR_TABLE_REF_ASCII (Lisp_Object ct, ptrdiff_t id/ | ||
| 561 | CHAR_TABLE_REF c-src/emacs/src/lisp.h /^CHAR_TABLE_REF (Lisp_Object ct, int idx)$/ | ||
| 562 | CHAR_TABLE_SET c-src/emacs/src/lisp.h /^CHAR_TABLE_SET (Lisp_Object ct, int idx, Lisp_Obje/ | ||
| 563 | char_table_specials c-src/emacs/src/lisp.h 1692 | ||
| 564 | CHAR_TABLE_STANDARD_SLOTS c-src/emacs/src/lisp.h 1697 | ||
| 565 | CHARTAB_SIZE_BITS_0 c-src/emacs/src/lisp.h 1567 | ||
| 566 | CHARTAB_SIZE_BITS_1 c-src/emacs/src/lisp.h 1568 | ||
| 567 | CHARTAB_SIZE_BITS_2 c-src/emacs/src/lisp.h 1569 | ||
| 568 | CHARTAB_SIZE_BITS_3 c-src/emacs/src/lisp.h 1570 | ||
| 569 | CHARTAB_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}$/ | ||
| 572 | chartonmstr pas-src/common.pas /^function chartonmstr; (*($/ | ||
| 573 | CHAR_TYPE_SIZE y-src/cccp.y 87 | ||
| 574 | CHAR y-src/cccp.c 7 | ||
| 575 | CHECK_ARRAY c-src/emacs/src/lisp.h /^CHECK_ARRAY (Lisp_Object x, Lisp_Object predicate)/ | ||
| 576 | CHECK_BOOL_VECTOR c-src/emacs/src/lisp.h /^CHECK_BOOL_VECTOR (Lisp_Object x)$/ | ||
| 577 | CHECK_BUFFER c-src/emacs/src/lisp.h /^CHECK_BUFFER (Lisp_Object x)$/ | ||
| 578 | CHECK_CONS c-src/emacs/src/lisp.h /^CHECK_CONS (Lisp_Object x)$/ | ||
| 579 | check_cons_list c-src/emacs/src/lisp.h /^# define check_cons_list() lisp_h_check_cons_list/ | ||
| 580 | checker make-src/Makefile /^checker:$/ | ||
| 581 | CHECKFLAGS make-src/Makefile /^CHECKFLAGS=-DDEBUG -Wno-unused-function$/ | ||
| 582 | checkhdr c-src/emacs/src/gmalloc.c /^checkhdr (const struct hdr *hdr)$/ | ||
| 583 | checkiso html-src/software.html /^checkiso$/ | ||
| 584 | CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 571 | ||
| 585 | CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 572 | ||
| 586 | CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 579 | ||
| 587 | CHECK_LIST_CONS c-src/emacs/src/lisp.h /^# define CHECK_LIST_CONS(x, y) lisp_h_CHECK_LIST_C/ | ||
| 588 | CHECK_LIST c-src/emacs/src/lisp.h /^CHECK_LIST (Lisp_Object x)$/ | ||
| 589 | CHECK_NATNUM c-src/emacs/src/lisp.h /^CHECK_NATNUM (Lisp_Object x)$/ | ||
| 590 | CHECK_NUMBER_CAR c-src/emacs/src/lisp.h /^CHECK_NUMBER_CAR (Lisp_Object x)$/ | ||
| 591 | CHECK_NUMBER_CDR c-src/emacs/src/lisp.h /^CHECK_NUMBER_CDR (Lisp_Object x)$/ | ||
| 592 | CHECK_NUMBER_COERCE_MARKER c-src/emacs/src/lisp.h /^#define CHECK_NUMBER_COERCE_MARKER(x) \\$/ | ||
| 593 | CHECK_NUMBER c-src/emacs/src/lisp.h /^# define CHECK_NUMBER(x) lisp_h_CHECK_NUMBER (x)$/ | ||
| 594 | CHECK_NUMBER_OR_FLOAT_COERCE_MARKER c-src/emacs/src/lisp.h /^#define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(x) / | ||
| 595 | CHECK_NUMBER_OR_FLOAT c-src/emacs/src/lisp.h /^CHECK_NUMBER_OR_FLOAT (Lisp_Object x)$/ | ||
| 596 | CHECKOBJS make-src/Makefile /^CHECKOBJS=chkmalloc.o chkxm.o$/ | ||
| 597 | CHECK_PROCESS c-src/emacs/src/lisp.h /^CHECK_PROCESS (Lisp_Object x)$/ | ||
| 598 | checkQuotation php-src/lce_functions.php /^ function checkQuotation($str)$/ | ||
| 599 | CHECK_RANGED_INTEGER c-src/emacs/src/lisp.h /^#define CHECK_RANGED_INTEGER(x, lo, hi) \\$/ | ||
| 600 | CHECK_STRING_CAR c-src/emacs/src/lisp.h /^CHECK_STRING_CAR (Lisp_Object x)$/ | ||
| 601 | CHECK_SYMBOL c-src/emacs/src/lisp.h /^# define CHECK_SYMBOL(x) lisp_h_CHECK_SYMBOL (x)$/ | ||
| 602 | CHECK_TYPE c-src/emacs/src/lisp.h /^# define CHECK_TYPE(ok, predicate, x) lisp_h_CHECK/ | ||
| 603 | CHECK_TYPE_RANGED_INTEGER c-src/emacs/src/lisp.h /^#define CHECK_TYPE_RANGED_INTEGER(type, x) \\$/ | ||
| 604 | CHECK_VECTOR c-src/emacs/src/lisp.h /^CHECK_VECTOR (Lisp_Object x)$/ | ||
| 605 | CHECK_VECTOR_OR_STRING c-src/emacs/src/lisp.h /^CHECK_VECTOR_OR_STRING (Lisp_Object x)$/ | ||
| 606 | CHECK_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{%$/ | ||
| 609 | childDidExit objc-src/Subprocess.m /^- childDidExit$/ | ||
| 610 | chunks_free c-src/emacs/src/gmalloc.c 313 | ||
| 611 | _chunks_free c-src/emacs/src/gmalloc.c 375 | ||
| 612 | chunks_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}$/ | ||
| 616 | Circle.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}}$/ | ||
| 619 | C_JAVA c-src/etags.c 2197 | ||
| 620 | cjava c-src/etags.c 2936 | ||
| 621 | Cjava_entries c-src/etags.c /^Cjava_entries (FILE *inf)$/ | ||
| 622 | Cjava_help c-src/etags.c 551 | ||
| 623 | Cjava_suffixes c-src/etags.c 549 | ||
| 624 | CK_ABS_C y-src/parse.y /^#define CK_ABS_C(x) if((x)<MIN_COL || (x)>MAX_COL)/ | ||
| 625 | CK_ABS_R y-src/parse.y /^#define CK_ABS_R(x) if((x)<MIN_ROW || (x)>MAX_ROW)/ | ||
| 626 | CK_REL_C y-src/parse.y /^#define CK_REL_C(x) if( ((x)>0 && MAX_COL-(x)<cu/ | ||
| 627 | CK_REL_R y-src/parse.y /^#define CK_REL_R(x) if( ((x)>0 && MAX_ROW-(x)<cu/ | ||
| 628 | ClassExample ruby-src/test.rb /^ class ClassExample$/ | ||
| 629 | classifyLine php-src/lce_functions.php /^ function classifyLine($line)$/ | ||
| 630 | class_method ruby-src/test.rb /^ def ClassExample.class_method$/ | ||
| 631 | clean make-src/Makefile /^clean:$/ | ||
| 632 | clear-abbrev-table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, / | ||
| 633 | clearAllKey objcpp-src/SimpleCalc.M /^- clearAllKey:sender$/ | ||
| 634 | clear cp-src/conway.hpp /^ void clear(void) { alive = 0; }$/ | ||
| 635 | clear_event c-src/emacs/src/keyboard.c /^clear_event (struct input_event *event)$/ | ||
| 636 | clear_input_pending c-src/emacs/src/keyboard.c /^clear_input_pending (void)$/ | ||
| 637 | clearKey objcpp-src/SimpleCalc.M /^- clearKey:sender$/ | ||
| 638 | clear_neighbors cp-src/clheir.cpp /^void discrete_location::clear_neighbors(void)$/ | ||
| 639 | Clear/p ada-src/2ataspri.adb /^ procedure Clear (Cell : in out TAS_Cell) is$/ | ||
| 640 | Clear/p ada-src/2ataspri.ads /^ procedure Clear (Cell : in out TAS_Cell)/ | ||
| 641 | clear_screen cp-src/screen.cpp /^void clear_screen(void)$/ | ||
| 642 | \clear tex-src/texinfo.tex /^\\def\\clear{\\parsearg\\clearxxx}$/ | ||
| 643 | clear-this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/ | ||
| 644 | clear_waiting_for_input c-src/emacs/src/keyboard.c /^clear_waiting_for_input (void)$/ | ||
| 645 | \clearxxx tex-src/texinfo.tex /^\\def\\clearxxx #1{$/ | ||
| 646 | cmd_error c-src/emacs/src/keyboard.c /^cmd_error (Lisp_Object data)$/ | ||
| 647 | cmd_error_internal c-src/emacs/src/keyboard.c /^cmd_error_internal (Lisp_Object data, const char */ | ||
| 648 | cmpfn c-src/emacs/src/lisp.h /^ bool (*cmpfn) (struct hash_table_test *t, Lisp_O/ | ||
| 649 | cmt prol-src/natded.prolog /^cmt:-$/ | ||
| 650 | CMultiChannelCSC19_3D cp-src/c.C 2 | ||
| 651 | cname c-src/etags.c 2519 | ||
| 652 | CNL c-src/etags.c /^#define CNL() \\$/ | ||
| 653 | CNL_SAVE_DEFINEDEF c-src/etags.c /^#define CNL_SAVE_DEFINEDEF() \\$/ | ||
| 654 | cno c-src/etags.c 224 | ||
| 655 | COBOLFLAGS make-src/Makefile /^COBOLFLAGS=--language=none --regex='\/.......[a-zA-/ | ||
| 656 | Cobol_help c-src/etags.c 558 | ||
| 657 | Cobol_paragraphs c-src/etags.c /^Cobol_paragraphs (FILE *inf)$/ | ||
| 658 | Cobol_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}}$/ | ||
| 661 | colori cp-src/c.C 40 | ||
| 662 | COLORS cp-src/screen.hpp 11 | ||
| 663 | __COLORS cp-src/screen.hpp 9 | ||
| 664 | /colorsetup ps-src/rfc1245.ps /^\/colorsetup {$/ | ||
| 665 | commaargvals prol-src/natded.prolog /^commaargvals(Args) -->$/ | ||
| 666 | command c-src/etags.c 187 | ||
| 667 | command-error-default-function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/ | ||
| 668 | command_loop_1 c-src/emacs/src/keyboard.c /^command_loop_1 (void)$/ | ||
| 669 | command_loop_2 c-src/emacs/src/keyboard.c /^command_loop_2 (Lisp_Object ignore)$/ | ||
| 670 | command_loop c-src/emacs/src/keyboard.c /^command_loop (void)$/ | ||
| 671 | command_loop_level c-src/emacs/src/keyboard.c 195 | ||
| 672 | CommentAD php-src/lce_functions.php 70 | ||
| 673 | CommentAD php-src/lce_functions.php /^ function CommentAD($/ | ||
| 674 | comment 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 { $/ | ||
| 679 | commutativity_assertion merc-src/accumulator.m /^:- pred commutativity_assertion(module_info::in,li/ | ||
| 680 | COMPILED_ARGLIST c-src/emacs/src/lisp.h 2431 | ||
| 681 | COMPILED_BYTECODE c-src/emacs/src/lisp.h 2432 | ||
| 682 | COMPILED_CONSTANTS c-src/emacs/src/lisp.h 2433 | ||
| 683 | COMPILED_DOC_STRING c-src/emacs/src/lisp.h 2435 | ||
| 684 | COMPILED_INTERACTIVE c-src/emacs/src/lisp.h 2436 | ||
| 685 | COMPILEDP c-src/emacs/src/lisp.h /^COMPILEDP (Lisp_Object a)$/ | ||
| 686 | COMPILED_STACK_DEPTH c-src/emacs/src/lisp.h 2434 | ||
| 687 | compile_empty prol-src/natded.prolog /^compile_empty:-$/ | ||
| 688 | compile_lex prol-src/natded.prolog /^compile_lex(File):-$/ | ||
| 689 | complete prol-src/natded.prolog /^complete(Cat):-$/ | ||
| 690 | complete-tag el-src/emacs/lisp/progmodes/etags.el /^(defun complete-tag ()$/ | ||
| 691 | compressor c-src/etags.c 188 | ||
| 692 | compressors c-src/etags.c 457 | ||
| 693 | compute_next_state cp-src/clheir.hpp /^ virtual void compute_next_state(void) { }$/ | ||
| 694 | compute_next_state cp-src/conway.hpp /^ void compute_next_state(void)$/ | ||
| 695 | conalgorithm html-src/algrthms.html /^Convolutionally$/ | ||
| 696 | concat c-src/etags.c /^concat (const char *s1, const char *s2, const char/ | ||
| 697 | concatenatenamestrings pas-src/common.pas /^function concatenatenamestrings; (*($/ | ||
| 698 | ConcatT pas-src/common.pas /^function ConcatT;(*($/ | ||
| 699 | Concept Index tex-src/gzip.texi /^@node Concept Index, , Problems, Top$/ | ||
| 700 | CONDITION_CASE c-src/emacs/src/lisp.h 3021 | ||
| 701 | Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is$/ | ||
| 702 | Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is private;$/ | ||
| 703 | Cond_Signal/p ada-src/2ataspri.adb /^ procedure Cond_Signal (Cond : in out Condition_/ | ||
| 704 | Cond_Signal/p ada-src/2ataspri.ads /^ procedure Cond_Signal (Cond : in out Condition_/ | ||
| 705 | Cond_Timed_Wait/p ada-src/2ataspri.adb /^ procedure Cond_Timed_Wait$/ | ||
| 706 | Cond_Timed_Wait/p ada-src/2ataspri.ads /^ procedure Cond_Timed_Wait$/ | ||
| 707 | Cond_Wait/p ada-src/2ataspri.adb /^ procedure Cond_Wait (Cond : in out Condition_Va/ | ||
| 708 | Cond_Wait/p ada-src/2ataspri.ads /^ procedure Cond_Wait (Cond : in out Condition_Va/ | ||
| 709 | Configure pyt-src/server.py /^class Configure(Frame, ControlEdit):$/ | ||
| 710 | ConfirmQuit pyt-src/server.py /^def ConfirmQuit(frame, context):$/ | ||
| 711 | consider_token c-src/etags.c /^consider_token (char *str, int len, int c, int *c_/ | ||
| 712 | CONSP c-src/emacs/src/lisp.h /^# define CONSP(x) lisp_h_CONSP (x)$/ | ||
| 713 | constant_args c-src/h.h 27 | ||
| 714 | constant c-src/emacs/src/lisp.h 668 | ||
| 715 | constant c-src/h.h 29 | ||
| 716 | Constant ruby-src/test1.ru 42 | ||
| 717 | constant y-src/cccp.y 112 | ||
| 718 | CONS_TO_INTEGER c-src/emacs/src/lisp.h /^#define CONS_TO_INTEGER(cons, type, var) \\$/ | ||
| 719 | constype c-src/emacs/src/lisp.h 3739 | ||
| 720 | CONSTYPE_HEAP c-src/emacs/src/lisp.h 3739 | ||
| 721 | CONSTYPE_PURE c-src/emacs/src/lisp.h 3739 | ||
| 722 | consult_lex prol-src/natded.prolog /^consult_lex:-$/ | ||
| 723 | contents c-src/emacs/src/lisp.h 1372 | ||
| 724 | contents c-src/emacs/src/lisp.h 1600 | ||
| 725 | contents c-src/emacs/src/lisp.h 1624 | ||
| 726 | \contents tex-src/texinfo.tex /^\\outer\\def\\contents{%$/ | ||
| 727 | ControlEdit pyt-src/server.py /^class ControlEdit(Frame):$/ | ||
| 728 | Controls pyt-src/server.py /^class Controls:$/ | ||
| 729 | CONVERT_CHARSTRING_TO_VALUE pas-src/common.pas /^procedure CONVERT_CHARSTRING_TO_VALUE;(*($/ | ||
| 730 | Copying 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}$/ | ||
| 733 | CopyTextString pas-src/common.pas /^function CopyTextString;(*($/ | ||
| 734 | count c-src/emacs/src/lisp.h 1863 | ||
| 735 | counter cp-src/c.C 33 | ||
| 736 | counter cp-src/c.C 36 | ||
| 737 | count_layers lua-src/allegro.lua /^local function count_layers (layer)$/ | ||
| 738 | count_words c-src/tab.c /^static int count_words(char *str, char delim)$/ | ||
| 739 | cow cp-src/c.C 127 | ||
| 740 | cow cp-src/c.C 131 | ||
| 741 | C_PLAIN c-src/etags.c 2194 | ||
| 742 | C_PLPL c-src/etags.c 2195 | ||
| 743 | cplpl c-src/etags.c 2935 | ||
| 744 | Cplusplus_entries c-src/etags.c /^Cplusplus_entries (FILE *inf)$/ | ||
| 745 | Cplusplus_help c-src/etags.c 540 | ||
| 746 | Cplusplus_suffixes c-src/etags.c 535 | ||
| 747 | CPPFLAGS make-src/Makefile /^CPPFLAGS=${CHECKFLAGS} -DSTDC_HEADERS -DHAVE_GETCW/ | ||
| 748 | CPSRC make-src/Makefile /^CPSRC=c.C abstract.C abstract.H cfront.H burton.cp/ | ||
| 749 | /C ps-src/rfc1245.ps /^\/C { $/ | ||
| 750 | create_acc_call merc-src/accumulator.m /^:- func create_acc_call(hlds_goal::in(goal_plain_c/ | ||
| 751 | create_acc_goal merc-src/accumulator.m /^:- pred create_acc_goal(hlds_goal::in, accu_substs/ | ||
| 752 | create-bar forth-src/test-forth.fth /^: create-bar foo ;$/ | ||
| 753 | Create_LL_Task/p ada-src/2ataspri.adb /^ procedure Create_LL_Task$/ | ||
| 754 | Create_LL_Task/p ada-src/2ataspri.ads /^ procedure Create_LL_Task$/ | ||
| 755 | create_new_base_goals merc-src/accumulator.m /^:- func create_new_base_goals(set(accu_goal_id), a/ | ||
| 756 | create_new_orig_recursive_goals merc-src/accumulator.m /^:- func create_new_orig_recursive_goals(set(accu_g/ | ||
| 757 | create_new_recursive_goals merc-src/accumulator.m /^:- func create_new_recursive_goals(set(accu_goal_i/ | ||
| 758 | create_new_var merc-src/accumulator.m /^:- pred create_new_var(prog_var::in, string::in, p/ | ||
| 759 | create_orig_goal merc-src/accumulator.m /^:- pred create_orig_goal(hlds_goal::in, accu_subst/ | ||
| 760 | createPOEntries php-src/lce_functions.php /^ function createPOEntries()$/ | ||
| 761 | createWidgets pyt-src/server.py /^ def createWidgets(self):$/ | ||
| 762 | createWidgets 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/ | ||
| 765 | cscInitTime cp-src/c.C 7 | ||
| 766 | cscSegmentationTime cp-src/c.C 8 | ||
| 767 | CSRC make-src/Makefile /^CSRC=abbrev.c ..\/etags\/h.h .\/\/c.c torture.c getopt/ | ||
| 768 | C_stab_entry c-src/etags.c 2271 | ||
| 769 | cstack c-src/etags.c 2523 | ||
| 770 | C_STAR c-src/etags.c 2196 | ||
| 771 | Cstar_entries c-src/etags.c /^Cstar_entries (FILE *inf)$/ | ||
| 772 | Cstar_suffixes c-src/etags.c 562 | ||
| 773 | C_symtype c-src/etags.c /^C_symtype (char *str, int len, int c_ext)$/ | ||
| 774 | CTAGS13 CTAGS14 CTAGS15 make-src/Makefile /^CTAGS13 CTAGS14 CTAGS15: ctags% ${infiles}$/ | ||
| 775 | CTAGS c-src/etags.c 146 | ||
| 776 | CTAGS c-src/etags.c 147 | ||
| 777 | CTAGS c-src/etags.c 149 | ||
| 778 | CTAGS make-src/Makefile /^CTAGS: ctags ${infiles}$/ | ||
| 779 | CTAGS% make-src/Makefile /^CTAGS%: ctags% ${infiles}$/ | ||
| 780 | ctags 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}}$/ | ||
| 784 | Cube.data.getFoo lua-src/test.lua /^function Cube.data.getFoo ()$/ | ||
| 785 | curlb c-src/etags.c 2929 | ||
| 786 | curlinepos c-src/etags.c 2931 | ||
| 787 | current-idle-time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/ | ||
| 788 | current-input-mode c-src/emacs/src/keyboard.c /^DEFUN ("current-input-mode", Fcurrent_input_mode, / | ||
| 789 | current_kboard c-src/emacs/src/keyboard.c 85 | ||
| 790 | current_lb_is_new c-src/etags.c 2926 | ||
| 791 | curry-test scm-src/test.scm /^(define (((((curry-test a) b) c) d) e)$/ | ||
| 792 | cursor_position cp-src/screen.cpp /^void cursor_position(void)$/ | ||
| 793 | cursor_x cp-src/screen.cpp 15 | ||
| 794 | cursor_y cp-src/screen.cpp 15 | ||
| 795 | CYAN cp-src/screen.hpp 15 | ||
| 796 | DAEMON_RUNNING c-src/emacs/src/lisp.h 4258 | ||
| 797 | DAEMON_RUNNING c-src/emacs/src/lisp.h 4262 | ||
| 798 | DARKGRAY cp-src/screen.hpp 20 | ||
| 799 | data c-src/emacs/src/lisp.h 1395 | ||
| 800 | data c-src/emacs/src/lisp.h 2129 | ||
| 801 | data c-src/emacs/src/lisp.h 2395 | ||
| 802 | d c.c 180 | ||
| 803 | D cp-src/fail.C 41 | ||
| 804 | D cp-src/fail.C /^ D() : ::A::T2::T(97), x(1066) {}$/ | ||
| 805 | d c-src/emacs/src/lisp.h 4673 | ||
| 806 | d c-src/emacs/src/lisp.h 4679 | ||
| 807 | ddefineseen c-src/etags.c 2462 | ||
| 808 | DEAFUN c.c /^DEAFUN ("expand-file-name", Fexpand_file_name, Sex/ | ||
| 809 | debian-bug html-src/software.html /^debian-bug.el$/ | ||
| 810 | Debug cp-src/functions.cpp /^void Debug ( int lineno, int level, char* func , c/ | ||
| 811 | DEBUG c-src/etags.c 84 | ||
| 812 | DEBUG c-src/etags.c 85 | ||
| 813 | DEBUG c-src/etags.c 87 | ||
| 814 | DEBUG objc-src/PackInsp.m 37 | ||
| 815 | debug_on_exit c-src/emacs/src/lisp.h 2984 | ||
| 816 | decimalKey objcpp-src/SimpleCalc.M /^- decimalKey:sender$/ | ||
| 817 | declared_special c-src/emacs/src/lisp.h 676 | ||
| 818 | DECLARE_GDB_SYM c-src/emacs/src/lisp.h /^#define DECLARE_GDB_SYM(type, id) type const id EX/ | ||
| 819 | decode_timer c-src/emacs/src/keyboard.c /^decode_timer (Lisp_Object timer, struct timespec */ | ||
| 820 | defalt c-src/emacs/src/lisp.h 1585 | ||
| 821 | default_C_entries c-src/etags.c /^default_C_entries (FILE *inf)$/ | ||
| 822 | default_C_help c-src/etags.c 515 | ||
| 823 | default_C_help c-src/etags.c 523 | ||
| 824 | default_C_suffixes c-src/etags.c 512 | ||
| 825 | DEFAULT_HASH_SIZE c-src/emacs/src/lisp.h 1940 | ||
| 826 | __default_morecore c-src/emacs/src/gmalloc.c /^__default_morecore (ptrdiff_t increment)$/ | ||
| 827 | DEFAULT_REHASH_SIZE c-src/emacs/src/lisp.h 1950 | ||
| 828 | DEFAULT_REHASH_THRESHOLD c-src/emacs/src/lisp.h 1946 | ||
| 829 | default-tags-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar default-tags-table-function nil$/ | ||
| 830 | defcell c-src/emacs/src/lisp.h 2351 | ||
| 831 | \defcodeindex tex-src/texinfo.tex /^\\def\\defcodeindex{\\parsearg\\newcodeindex}$/ | ||
| 832 | def c-src/h.h 35 | ||
| 833 | def 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}$/ | ||
| 841 | define-abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/ | ||
| 842 | define-abbrev-table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/ | ||
| 843 | definedef c-src/etags.c 2464 | ||
| 844 | defined_GC_CHECK_STRING_BYTES c-src/emacs/src/lisp.h 4663 | ||
| 845 | defined_GC_CHECK_STRING_BYTES c-src/emacs/src/lisp.h 4665 | ||
| 846 | DEFINE_GDB_SYMBOL_BEGIN c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_BEGIN(type, id) DECLARE/ | ||
| 847 | DEFINE_GDB_SYMBOL_BEGIN c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_BEGIN(type, id) extern / | ||
| 848 | DEFINE_GDB_SYMBOL_END c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_END(id) = id;$/ | ||
| 849 | DEFINE_GDB_SYMBOL_END c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_END(val) ;$/ | ||
| 850 | define-global-abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/ | ||
| 851 | DEFINE_LISP_SYMBOL c-src/emacs/src/lisp.h /^#define DEFINE_LISP_SYMBOL(name) \\$/ | ||
| 852 | define-mode-abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, / | ||
| 853 | DEFINE_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/ | ||
| 874 | Def_ 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/ | ||
| 878 | DEFSYM c-src/emacs/src/lisp.h /^#define DEFSYM(sym, name) \/* empty *\/$/ | ||
| 879 | DEFSYM 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/ | ||
| 899 | DEFUN_ARGS_0 c-src/emacs/src/lisp.h 714 | ||
| 900 | DEFUN_ARGS_1 c-src/emacs/src/lisp.h 715 | ||
| 901 | DEFUN_ARGS_2 c-src/emacs/src/lisp.h 716 | ||
| 902 | DEFUN_ARGS_3 c-src/emacs/src/lisp.h 717 | ||
| 903 | DEFUN_ARGS_4 c-src/emacs/src/lisp.h 718 | ||
| 904 | DEFUN_ARGS_5 c-src/emacs/src/lisp.h 719 | ||
| 905 | DEFUN_ARGS_6 c-src/emacs/src/lisp.h 721 | ||
| 906 | DEFUN_ARGS_7 c-src/emacs/src/lisp.h 723 | ||
| 907 | DEFUN_ARGS_8 c-src/emacs/src/lisp.h 725 | ||
| 908 | DEFUN_ARGS_MANY c-src/emacs/src/lisp.h 712 | ||
| 909 | \defunargs tex-src/texinfo.tex /^\\def\\defunargs #1{\\functionparens \\sl$/ | ||
| 910 | DEFUN_ARGS_UNEVALLED c-src/emacs/src/lisp.h 713 | ||
| 911 | DEFUN c-src/emacs/src/lisp.h /^#define DEFUN(lname, fnname, sname, minargs, maxar/ | ||
| 912 | defun_func1 c.c /^defun_func1()$/ | ||
| 913 | DEFUN_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%$/ | ||
| 918 | DEFVAR_BOOL c-src/emacs/src/lisp.h /^#define DEFVAR_BOOL(lname, vname, doc) \\$/ | ||
| 919 | DEFVAR_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/ | ||
| 921 | DEFVAR_INT c-src/emacs/src/lisp.h /^#define DEFVAR_INT(lname, vname, doc) \\$/ | ||
| 922 | DEFVAR_KBOARD c-src/emacs/src/lisp.h /^#define DEFVAR_KBOARD(lname, vname, doc) \\$/ | ||
| 923 | DEFVAR_LISP c-src/emacs/src/lisp.h /^#define DEFVAR_LISP(lname, vname, doc) \\$/ | ||
| 924 | DEFVAR_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/ | ||
| 932 | delegate objc-src/Subprocess.m /^- delegate$/ | ||
| 933 | deleteItem pyt-src/server.py /^ def deleteItem(self):$/ | ||
| 934 | delete_kboard c-src/emacs/src/keyboard.c /^delete_kboard (KBOARD *kb)$/ | ||
| 935 | deliver_input_available_signal c-src/emacs/src/keyboard.c /^deliver_input_available_signal (int sig)$/ | ||
| 936 | deliver_interrupt_signal c-src/emacs/src/keyboard.c /^deliver_interrupt_signal (int sig)$/ | ||
| 937 | deliver_user_signal c-src/emacs/src/keyboard.c /^deliver_user_signal (int sig)$/ | ||
| 938 | depth c-src/emacs/src/lisp.h 1618 | ||
| 939 | derived_analyses prol-src/natded.prolog /^derived_analyses([],[]).$/ | ||
| 940 | describe_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 {$/ | ||
| 943 | detect_input_pending c-src/emacs/src/keyboard.c /^detect_input_pending (void)$/ | ||
| 944 | detect_input_pending_ignore_squeezables c-src/emacs/src/keyboard.c /^detect_input_pending_ignore_squeezables (void)$/ | ||
| 945 | detect_input_pending_run_timers c-src/emacs/src/keyboard.c /^detect_input_pending_run_timers (bool do_display)$/ | ||
| 946 | DEVICE_LAST c-src/h.h 24 | ||
| 947 | DEVICE_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 [$/ | ||
| 951 | dialog_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 \// | ||
| 953 | dignorerest 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/ | ||
| 956 | discard-input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/ | ||
| 957 | discard_mouse_events c-src/emacs/src/keyboard.c /^discard_mouse_events (void)$/ | ||
| 958 | discrete_location cp-src/clheir.hpp 56 | ||
| 959 | discrete_location cp-src/clheir.hpp /^ discrete_location(int xi, int yi, int zi):$/ | ||
| 960 | display cp-src/conway.cpp /^void display(void)$/ | ||
| 961 | \display tex-src/texinfo.tex /^\\def\\display{\\begingroup\\inENV %This group ends at/ | ||
| 962 | DisposeANameList pas-src/common.pas /^procedure DisposeANameList( $/ | ||
| 963 | DisposeNameList pas-src/common.pas /^procedure DisposeNameList;$/ | ||
| 964 | disposetextstring 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}$/ | ||
| 967 | dnone 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/ | ||
| 970 | doc 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/ | ||
| 973 | dog cp-src/c.C 126 | ||
| 974 | dog cp-src/c.C 130 | ||
| 975 | dog 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}}$/ | ||
| 985 | DOS_NT c-src/etags.c 117 | ||
| 986 | DOS_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{%$/ | ||
| 990 | dotfill tex-src/texinfo.tex /^\\noindent\\hskip\\secondaryindent\\hbox{#1}\\indexdotf/ | ||
| 991 | dotfill 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}$/ | ||
| 995 | double_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$/ | ||
| 999 | drag_n_drop_syms c-src/emacs/src/keyboard.c 4629 | ||
| 1000 | dribble c-src/emacs/src/keyboard.c 236 | ||
| 1001 | dsharpseen c-src/etags.c 2461 | ||
| 1002 | dummies tex-src/texinfo.tex /^{\\indexdummies % Must do this here, since \\bf, etc/ | ||
| 1003 | dummy1 cp-src/burton.cpp /^::dummy::dummy test::dummy1(void)$/ | ||
| 1004 | dummy2 cp-src/burton.cpp /^::dummy::dummy test::dummy2(::CORBA::Long dummy)$/ | ||
| 1005 | dummy3 cp-src/burton.cpp /^::dummy::dummy test::dummy3(char* name, ::CORBA::L/ | ||
| 1006 | dummydots tex-src/texinfo.tex /^\\let\\dots=\\indexdummydots$/ | ||
| 1007 | dummyfont tex-src/texinfo.tex /^\\let\\b=\\indexdummyfont$/ | ||
| 1008 | dummyfont tex-src/texinfo.tex /^\\let\\code=\\indexdummyfont$/ | ||
| 1009 | dummyfont tex-src/texinfo.tex /^\\let\\emph=\\indexdummyfont$/ | ||
| 1010 | dummyfont tex-src/texinfo.tex /^\\let\\file=\\indexdummyfont$/ | ||
| 1011 | dummyfont tex-src/texinfo.tex /^\\let\\i=\\indexdummyfont$/ | ||
| 1012 | dummyfont tex-src/texinfo.tex /^\\let\\kbd=\\indexdummyfont$/ | ||
| 1013 | dummyfont tex-src/texinfo.tex /^\\let\\key=\\indexdummyfont$/ | ||
| 1014 | dummyfont tex-src/texinfo.tex /^\\let\\r=\\indexdummyfont$/ | ||
| 1015 | dummyfont tex-src/texinfo.tex /^\\let\\samp=\\indexdummyfont$/ | ||
| 1016 | dummyfont tex-src/texinfo.tex /^\\let\\sc=\\indexdummyfont$/ | ||
| 1017 | dummyfont tex-src/texinfo.tex /^\\let\\strong=\\indexdummyfont$/ | ||
| 1018 | dummyfont tex-src/texinfo.tex /^\\let\\tclose=\\indexdummyfont$/ | ||
| 1019 | dummyfont tex-src/texinfo.tex /^\\let\\t=\\indexdummyfont$/ | ||
| 1020 | dummyfont tex-src/texinfo.tex /^\\let\\var=\\indexdummyfont$/ | ||
| 1021 | dummyfont tex-src/texinfo.tex /^\\let\\w=\\indexdummyfont$/ | ||
| 1022 | dummytex tex-src/texinfo.tex /^\\let\\TeX=\\indexdummytex$/ | ||
| 1023 | DUMPED c-src/emacs/src/gmalloc.c 80 | ||
| 1024 | dump pyt-src/server.py /^ def dump(self, folded):$/ | ||
| 1025 | eabs c-src/emacs/src/lisp.h /^#define eabs(x) ((x) < 0 ? -(x) : (x))$/ | ||
| 1026 | \Ealphaenumerate tex-src/texinfo.tex /^\\def\\Ealphaenumerate{\\Eenumerate}$/ | ||
| 1027 | eassert c-src/emacs/src/lisp.h /^# define eassert(cond) \\$/ | ||
| 1028 | eassert c-src/emacs/src/lisp.h /^# define eassert(cond) ((void) (false && (cond))) / | ||
| 1029 | eassume c-src/emacs/src/lisp.h /^# define eassume(cond) \\$/ | ||
| 1030 | eassume c-src/emacs/src/lisp.h /^# define eassume(cond) assume (cond)$/ | ||
| 1031 | eax c-src/sysdep.h 31 | ||
| 1032 | eax c-src/sysdep.h 33 | ||
| 1033 | \Ecapsenumerate tex-src/texinfo.tex /^\\def\\Ecapsenumerate{\\Eenumerate}$/ | ||
| 1034 | \Ecartouche tex-src/texinfo.tex /^\\def\\Ecartouche{%$/ | ||
| 1035 | echo_add_key c-src/emacs/src/keyboard.c /^echo_add_key (Lisp_Object c)$/ | ||
| 1036 | echo_char c-src/emacs/src/keyboard.c /^echo_char (Lisp_Object c)$/ | ||
| 1037 | echo_dash c-src/emacs/src/keyboard.c /^echo_dash (void)$/ | ||
| 1038 | echoing c-src/emacs/src/keyboard.c 154 | ||
| 1039 | echo_kboard c-src/emacs/src/keyboard.c 166 | ||
| 1040 | echo_keystrokes_p c-src/emacs/src/keyboard.c /^echo_keystrokes_p (void)$/ | ||
| 1041 | echo_length c-src/emacs/src/keyboard.c /^echo_length (void)$/ | ||
| 1042 | echo_message_buffer c-src/emacs/src/keyboard.c 171 | ||
| 1043 | echo_now c-src/emacs/src/keyboard.c /^echo_now (void)$/ | ||
| 1044 | echo_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}%$/ | ||
| 1048 | editItem pyt-src/server.py /^ def editItem(self):$/ | ||
| 1049 | editsite pyt-src/server.py /^ def editsite(self, site):$/ | ||
| 1050 | edituser 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}%$/ | ||
| 1056 | egetenv 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{}$/ | ||
| 1061 | ELEM_I c-src/h.h 3 | ||
| 1062 | \Elisp tex-src/texinfo.tex /^\\def\\Elisp{\\endgroup\\afterenvbreak}%$/ | ||
| 1063 | ELSRC make-src/Makefile /^ELSRC=TAGTEST.EL emacs\/lisp\/progmodes\/etags.el$/ | ||
| 1064 | emacs_abort c-src/emacs/src/lisp.h /^extern _Noreturn void emacs_abort (void) NO_INLINE/ | ||
| 1065 | EMACS_INT c-src/emacs/src/lisp.h 103 | ||
| 1066 | EMACS_INT c-src/emacs/src/lisp.h 91 | ||
| 1067 | EMACS_INT c-src/emacs/src/lisp.h 96 | ||
| 1068 | EMACS_INT_MAX c-src/emacs/src/lisp.h 105 | ||
| 1069 | EMACS_INT_MAX c-src/emacs/src/lisp.h 93 | ||
| 1070 | EMACS_INT_MAX c-src/emacs/src/lisp.h 98 | ||
| 1071 | EMACS_LISP_H c-src/emacs/src/lisp.h 22 | ||
| 1072 | EMACS_NAME c-src/etags.c 786 | ||
| 1073 | EMACS_UINT c-src/emacs/src/lisp.h 104 | ||
| 1074 | EMACS_UINT c-src/emacs/src/lisp.h 92 | ||
| 1075 | EMACS_UINT c-src/emacs/src/lisp.h 97 | ||
| 1076 | \emph tex-src/texinfo.tex /^\\def\\emph##1{\\realbackslash emph {##1}}$/ | ||
| 1077 | EmptyNmStr pas-src/common.pas /^function EmptyNmStr(* : NameString*);$/ | ||
| 1078 | /ENDBITMAP ps-src/rfc1245.ps /^\/ENDBITMAP {$/ | ||
| 1079 | end c-src/emacs/src/keyboard.c 8753 | ||
| 1080 | end c-src/emacs/src/lisp.h 2039 | ||
| 1081 | end 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}$/ | ||
| 1085 | endtoken c-src/etags.c /^#define endtoken(c) (_etk[CHAR (c)]) \/* c ends tok/ | ||
| 1086 | \endxxx tex-src/texinfo.tex /^\\def\\endxxx #1{%$/ | ||
| 1087 | enter_critical_section c-src/h.h 116 | ||
| 1088 | ENTRY c-src/sysdep.h /^#define ENTRY(name) \\$/ | ||
| 1089 | entry perl-src/htlmify-cystic 218 | ||
| 1090 | entry perl-src/htlmify-cystic 234 | ||
| 1091 | entry perl-src/htlmify-cystic 245 | ||
| 1092 | entry perl-src/htlmify-cystic 252 | ||
| 1093 | entry perl-src/htlmify-cystic 268 | ||
| 1094 | entry perl-src/htlmify-cystic 276 | ||
| 1095 | entry perl-src/htlmify-cystic 281 | ||
| 1096 | entry perl-src/htlmify-cystic 296 | ||
| 1097 | \entry tex-src/texinfo.tex /^\\def\\entry #1#2{\\begingroup$/ | ||
| 1098 | ENUM_BF c-src/emacs/src/lisp.h /^#define ENUM_BF(TYPE) enum TYPE$/ | ||
| 1099 | ENUM_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{%$/ | ||
| 1104 | Environment tex-src/gzip.texi /^@node Environment, Tapes, Advanced usage, Top$/ | ||
| 1105 | /E ps-src/rfc1245.ps /^\/E {lineto} bind def$/ | ||
| 1106 | EQ c-src/emacs/src/lisp.h /^# define EQ(x, y) lisp_h_EQ (x, y)$/ | ||
| 1107 | equalsKey objcpp-src/SimpleCalc.M /^- equalsKey:sender$/ | ||
| 1108 | EQUAL 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}%$/ | ||
| 1112 | erlang_atom c-src/etags.c /^erlang_atom (char *s)$/ | ||
| 1113 | erlang_attribute c-src/etags.c /^erlang_attribute (char *s)$/ | ||
| 1114 | erlang_func c-src/etags.c /^erlang_func (char *s, char *last)$/ | ||
| 1115 | Erlang_functions c-src/etags.c /^Erlang_functions (FILE *inf)$/ | ||
| 1116 | Erlang_help c-src/etags.c 567 | ||
| 1117 | Erlang_suffixes c-src/etags.c 565 | ||
| 1118 | ERLSRC make-src/Makefile /^ERLSRC=gs_dialog.erl lines.erl lists.erl$/ | ||
| 1119 | error c-src/emacs/src/lisp.h /^extern _Noreturn void error (const char *, ...) AT/ | ||
| 1120 | error c-src/etags.c /^error (const char *format, ...)$/ | ||
| 1121 | error c-src/etags.c /^static void error (const char *, ...) ATTRIBUTE_FO/ | ||
| 1122 | \errorE tex-src/texinfo.tex /^\\def\\errorE#1{$/ | ||
| 1123 | Error_Information/t ada-src/2ataspri.ads /^ type Error_Information is new Interfaces.C.POSI/ | ||
| 1124 | error_signaled c-src/etags.c 264 | ||
| 1125 | \error tex-src/texinfo.tex /^\\def\\error{\\leavevmode\\lower.7ex\\copy\\errorbox}$/ | ||
| 1126 | ERROR y-src/cccp.c 9 | ||
| 1127 | error y-src/cccp.y /^error (msg)$/ | ||
| 1128 | ERROR y-src/parse.y 304 | ||
| 1129 | ErrStrToNmStr 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}%$/ | ||
| 1134 | ETAGS12 make-src/Makefile /^ETAGS12: etags12 ${infiles}$/ | ||
| 1135 | ETAGS13 ETAGS14 ETAGS15 make-src/Makefile /^ETAGS13 ETAGS14 ETAGS15: etags% ${infiles}$/ | ||
| 1136 | etags.1.man make-src/Makefile /^etags.1.man: etags.1$/ | ||
| 1137 | etags el-src/emacs/lisp/progmodes/etags.el /^(defgroup etags nil "Tags tables."$/ | ||
| 1138 | etags-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-file-of-tag (&optional relative) ; Do/ | ||
| 1139 | etags_getcwd c-src/etags.c /^etags_getcwd (void)$/ | ||
| 1140 | etags-goto-tag-location el-src/emacs/lisp/progmodes/etags.el /^(defun etags-goto-tag-location (tag-info)$/ | ||
| 1141 | etags html-src/software.html /^Etags$/ | ||
| 1142 | etags-list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun etags-list-tags (file) ; Doc string?$/ | ||
| 1143 | etags make-src/Makefile /^etags: etags.c ${OBJS}$/ | ||
| 1144 | ETAGS make-src/Makefile /^ETAGS: FRC etags ${infiles}$/ | ||
| 1145 | ETAGS% make-src/Makefile /^ETAGS%: FRC etags% ${infiles}$/ | ||
| 1146 | etags-recognize-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-recognize-tags-table ()$/ | ||
| 1147 | etags-snarf-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-snarf-tag (&optional use-explicit) ; / | ||
| 1148 | etags-tags-apropos-additional el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-apropos-additional (regexp)$/ | ||
| 1149 | etags-tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-apropos (string) ; Doc string?$/ | ||
| 1150 | etags-tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-completion-table () ; Doc string/ | ||
| 1151 | etags-tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-included-tables () ; Doc string?/ | ||
| 1152 | etags-tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-table-files () ; Doc string?$/ | ||
| 1153 | etags-verify-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-verify-tags-table ()$/ | ||
| 1154 | etags--xref-find-definitions el-src/emacs/lisp/progmodes/etags.el /^(defun etags--xref-find-definitions (pattern &opti/ | ||
| 1155 | etags-xref-find-definitions-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar etags-xref-find-definitions-tag-order '(ta/ | ||
| 1156 | etags-xref-find el-src/emacs/lisp/progmodes/etags.el /^(defun etags-xref-find (action id)$/ | ||
| 1157 | etags--xref-limit el-src/emacs/lisp/progmodes/etags.el /^(defconst etags--xref-limit 1000)$/ | ||
| 1158 | \Etitlepage tex-src/texinfo.tex /^\\def\\Etitlepage{%$/ | ||
| 1159 | eval_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}$/ | ||
| 1162 | event-convert-list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, / | ||
| 1163 | event_head c-src/emacs/src/keyboard.c 11021 | ||
| 1164 | event-symbol-parse-modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/ | ||
| 1165 | event_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/ | ||
| 1171 | exact 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/ | ||
| 1175 | execute cp-src/c.C /^ void execute(CPluginCSCState& p, int w, in/ | ||
| 1176 | EXFUN c-src/emacs/src/lisp.h /^#define EXFUN(fnname, maxargs) \\$/ | ||
| 1177 | exit_critical_to_previous c-src/h.h 117 | ||
| 1178 | exit c-src/exit.c /^DEFUN(exit, (status), int status)$/ | ||
| 1179 | exit c-src/exit.strange_suffix /^DEFUN(exit, (status), int status)$/ | ||
| 1180 | Exit_LL_Task/p ada-src/2ataspri.adb /^ procedure Exit_LL_Task is$/ | ||
| 1181 | Exit_LL_Task/p ada-src/2ataspri.ads /^ procedure Exit_LL_Task;$/ | ||
| 1182 | exit-recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/ | ||
| 1183 | exp1 y-src/cccp.y 148 | ||
| 1184 | expand-abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/ | ||
| 1185 | expandmng prol-src/natded.prolog /^expandmng(var(V),var(V)).$/ | ||
| 1186 | expandmng_tree prol-src/natded.prolog /^expandmng_tree(tree(Rule,Syn:Sem,Trees),$/ | ||
| 1187 | expandmng_trees prol-src/natded.prolog /^expandmng_trees([],[]).$/ | ||
| 1188 | expandsyn 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}$/ | ||
| 1191 | explicitly-quoted-pending-delete-mode el-src/TAGTEST.EL /^(defalias (quote explicitly-quoted-pending-delete-/ | ||
| 1192 | exp_list y-src/parse.y 263 | ||
| 1193 | expression_value y-src/cccp.y 68 | ||
| 1194 | exp y-src/atest.y 2 | ||
| 1195 | exp y-src/cccp.y 156 | ||
| 1196 | exp y-src/cccp.y 185 | ||
| 1197 | exp y-src/parse.y 95 | ||
| 1198 | EXTAGS make-src/Makefile /^EXTAGS: extags ${infiles} Makefile$/ | ||
| 1199 | EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 3497 | ||
| 1200 | EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 4372 | ||
| 1201 | ExtractCommentInfo pas-src/common.pas /^procedure ExtractCommentInfo; (*($/ | ||
| 1202 | extras c-src/emacs/src/lisp.h 1603 | ||
| 1203 | extvar c-src/h.h 109 | ||
| 1204 | f1 c.c /^ f1 () { \/* Do something. *\/; }$/ | ||
| 1205 | f1 perl-src/kai-test.pl /^sub f1 {$/ | ||
| 1206 | f2 c.c /^void f2 () { \/* Do something. *\/; }$/ | ||
| 1207 | f2 perl-src/kai-test.pl /^sub main::f2 {$/ | ||
| 1208 | f3 perl-src/kai-test.pl /^sub f3 {$/ | ||
| 1209 | f4 perl-src/kai-test.pl /^sub Bar::f4 {$/ | ||
| 1210 | f5 perl-src/kai-test.pl /^sub f5 {$/ | ||
| 1211 | f6 perl-src/kai-test.pl /^sub f6 {$/ | ||
| 1212 | f7 perl-src/kai-test.pl /^sub f7 {$/ | ||
| 1213 | Fabbrev_expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/ | ||
| 1214 | Fabbrev_symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/ | ||
| 1215 | Fabort_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/ | ||
| 1217 | Fails_t c-src/h.h 5 | ||
| 1218 | /fakecolorsetup ps-src/rfc1245.ps /^\/fakecolorsetup {$/ | ||
| 1219 | FASTCFLAGS make-src/Makefile /^FASTCFLAGS=-O3 -finline-functions -ffast-math -fun/ | ||
| 1220 | FASTCFLAGSWARN make-src/Makefile /^FASTCFLAGSWARN=${WARNINGS} -Werror ${FASTCFLAGS}$/ | ||
| 1221 | fastctags make-src/Makefile /^fastctags:$/ | ||
| 1222 | fastetags make-src/Makefile /^fastetags:$/ | ||
| 1223 | fastmap_accurate c-src/emacs/src/regex.h 383 | ||
| 1224 | fastmap c-src/emacs/src/regex.h 355 | ||
| 1225 | fast_string_match_ignore_case c-src/emacs/src/lisp.h /^fast_string_match_ignore_case (Lisp_Object regexp,/ | ||
| 1226 | fatala c.c /^void fatala () __attribute__ ((noreturn));$/ | ||
| 1227 | fatal c-src/etags.c /^fatal (const char *s1, const char *s2)$/ | ||
| 1228 | f c.c 145 | ||
| 1229 | f c.c 156 | ||
| 1230 | f c.c 168 | ||
| 1231 | f c.c /^int f$/ | ||
| 1232 | Fclear_abbrev_table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, / | ||
| 1233 | Fclear_this_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/ | ||
| 1234 | Fcommand_error_default_function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/ | ||
| 1235 | fconst forth-src/test-forth.fth /^3.1415e fconstant fconst$/ | ||
| 1236 | f cp-src/c.C /^A<float,B<int> > A<B<float>,int>::f(A<int>* x) {}$/ | ||
| 1237 | f cp-src/c.C /^A<int>* f() {}$/ | ||
| 1238 | f cp-src/c.C /^class B<int> { void f() {} };$/ | ||
| 1239 | f cp-src/c.C /^int A<int>::f(A<int>* x) {}$/ | ||
| 1240 | f cp-src/c.C /^int f(A<int> x) {}$/ | ||
| 1241 | f cp-src/c.C /^ int f(){return 0;}; \/\/ first comment$/ | ||
| 1242 | f cp-src/c.C /^ void f() {}$/ | ||
| 1243 | f cp-src/fail.C /^int A::B::f() { return 2; }$/ | ||
| 1244 | f cp-src/fail.C /^ int f() { return 5; }$/ | ||
| 1245 | f c-src/c.c /^T f(){if(x){}$/ | ||
| 1246 | f c-src/h.h 89 | ||
| 1247 | Fcurrent_idle_time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/ | ||
| 1248 | Fcurrent_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("current-input-mode", Fcurrent_input_mode, / | ||
| 1249 | Fdefine_abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/ | ||
| 1250 | Fdefine_abbrev_table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/ | ||
| 1251 | Fdefine_global_abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/ | ||
| 1252 | Fdefine_mode_abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, / | ||
| 1253 | fdefunkey c-src/etags.c 2409 | ||
| 1254 | fdefunname c-src/etags.c 2410 | ||
| 1255 | fdesc c-src/etags.c 201 | ||
| 1256 | fdesc c-src/etags.c 212 | ||
| 1257 | fdHandler objc-src/Subprocess.m /^- fdHandler:(int)theFd$/ | ||
| 1258 | fdHandler objc-src/Subprocess.m /^fdHandler (int theFd, id self)$/ | ||
| 1259 | Fdiscard_input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/ | ||
| 1260 | fdp c-src/etags.c 217 | ||
| 1261 | Fevent_convert_list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, / | ||
| 1262 | Fevent_symbol_parse_modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/ | ||
| 1263 | Fexit_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/ | ||
| 1264 | Fexpand_abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/ | ||
| 1265 | ff cp-src/c.C /^ int ff(){return 1;};$/ | ||
| 1266 | F_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$/ | ||
| 1269 | field_of_play cp-src/conway.cpp 18 | ||
| 1270 | fignore c-src/etags.c 2416 | ||
| 1271 | file_end perl-src/htlmify-cystic /^sub file_end ()$/ | ||
| 1272 | file_index perl-src/htlmify-cystic 33 | ||
| 1273 | fileJoin php-src/lce_functions.php /^ function fileJoin()$/ | ||
| 1274 | filename_is_absolute c-src/etags.c /^filename_is_absolute (char *fn)$/ | ||
| 1275 | filenames c-src/etags.c 196 | ||
| 1276 | file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun file-of-tag (&optional relative)$/ | ||
| 1277 | file-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}}$/ | ||
| 1280 | file_tocs perl-src/htlmify-cystic 30 | ||
| 1281 | /fillprocs ps-src/rfc1245.ps /^\/fillprocs 32 array def$/ | ||
| 1282 | FILTER make-src/Makefile /^FILTER=grep -v '\\.[Cchefy][lor]*,[1-9][0-9]*' || t/ | ||
| 1283 | FINAL_FREE_BLOCKS c-src/emacs/src/gmalloc.c 135 | ||
| 1284 | Finalize_Cond/p ada-src/2ataspri.adb /^ procedure Finalize_Cond (Cond : in out Conditio/ | ||
| 1285 | Finalize_Cond/p ada-src/2ataspri.ads /^ procedure Finalize_Cond (Cond : in out Conditio/ | ||
| 1286 | Finalize_Lock/p ada-src/2ataspri.adb /^ procedure Finalize_Lock (L : in out Lock) is$/ | ||
| 1287 | Finalize_Lock/p ada-src/2ataspri.ads /^ procedure Finalize_Lock (L : in out Lock);$/ | ||
| 1288 | FINALIZERP c-src/emacs/src/lisp.h /^FINALIZERP (Lisp_Object x)$/ | ||
| 1289 | Finalize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Finalize_TAS_Cell (Cell : in out TAS_/ | ||
| 1290 | Finalize_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}$/ | ||
| 1292 | findcats prol-src/natded.prolog /^findcats([],Left,Left).$/ | ||
| 1293 | find_entries c-src/etags.c /^find_entries (FILE *inf)$/ | ||
| 1294 | \findex tex-src/texinfo.tex /^\\def\\findex {\\fnindex}$/ | ||
| 1295 | find-tag-default-function el-src/emacs/lisp/progmodes/etags.el /^(defcustom find-tag-default-function nil$/ | ||
| 1296 | find-tag el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag (tagname &optional next-p regexp-p/ | ||
| 1297 | find-tag-history el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-history nil) ; Doc string?$/ | ||
| 1298 | find-tag-hook el-src/emacs/lisp/progmodes/etags.el /^(defcustom find-tag-hook nil$/ | ||
| 1299 | find-tag-in-order el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-in-order (pattern$/ | ||
| 1300 | find-tag-interactive el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-interactive (prompt &optional no-d/ | ||
| 1301 | find-tag-marker-ring el-src/emacs/lisp/progmodes/etags.el /^(defvaralias 'find-tag-marker-ring 'xref--marker-r/ | ||
| 1302 | find-tag-marker-ring-length el-src/emacs/lisp/progmodes/etags.el /^(define-obsolete-variable-alias 'find-tag-marker-r/ | ||
| 1303 | find-tag-next-line-after-failure-p el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-next-line-after-failure-p nil$/ | ||
| 1304 | find-tag-noselect el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-noselect (tagname &optional next-p/ | ||
| 1305 | find-tag-other-frame el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-other-frame (tagname &optional nex/ | ||
| 1306 | find-tag-other-window el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-other-window (tagname &optional ne/ | ||
| 1307 | find-tag-regexp el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-regexp (regexp &optional next-p ot/ | ||
| 1308 | find-tag-regexp-next-line-after-failure-p el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-regexp-next-line-after-failure-p / | ||
| 1309 | find-tag-regexp-search-function el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-regexp-search-function nil$/ | ||
| 1310 | find-tag-regexp-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-regexp-tag-order nil$/ | ||
| 1311 | find-tag-search-function el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-search-function nil$/ | ||
| 1312 | find-tag-tag el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-tag (string)$/ | ||
| 1313 | find-tag-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-tag-order nil$/ | ||
| 1314 | find_user_signal_name c-src/emacs/src/keyboard.c /^find_user_signal_name (int sig)$/ | ||
| 1315 | finish_appendices perl-src/htlmify-cystic /^sub finish_appendices ()$/ | ||
| 1316 | finish_sections perl-src/htlmify-cystic /^sub finish_sections ()$/ | ||
| 1317 | finish_subsections perl-src/htlmify-cystic /^sub finish_subsections ()$/ | ||
| 1318 | finish_subsubsections perl-src/htlmify-cystic /^sub finish_subsubsections ()$/ | ||
| 1319 | \finishtitlepage tex-src/texinfo.tex /^\\def\\finishtitlepage{%$/ | ||
| 1320 | finlist c-src/etags.c 2414 | ||
| 1321 | Finput_pending_p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/ | ||
| 1322 | Finsert_abbrev_table_description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/ | ||
| 1323 | First100Chars pas-src/common.pas /^procedure First100Chars; (*($/ | ||
| 1324 | first c-src/emacs/src/gmalloc.c 151 | ||
| 1325 | fitchtreelist prol-src/natded.prolog /^fitchtreelist([]).$/ | ||
| 1326 | FIXNUM_BITS c-src/emacs/src/lisp.h 252 | ||
| 1327 | FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^#define FIXNUM_OVERFLOW_P(i) \\$/ | ||
| 1328 | FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (EQ, bool, (Lisp_Object x, Lisp_O/ | ||
| 1329 | fixup_locale c-src/emacs/src/lisp.h /^INLINE void fixup_locale (void) {}$/ | ||
| 1330 | flag2str pyt-src/server.py /^def flag2str(value, string):$/ | ||
| 1331 | flag c-src/getopt.h 83 | ||
| 1332 | flistseen c-src/etags.c 2415 | ||
| 1333 | FLOATP c-src/emacs/src/lisp.h /^# define FLOATP(x) lisp_h_FLOATP (x)$/ | ||
| 1334 | FLOAT_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{%$/ | ||
| 1339 | Fmake_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 $/ | ||
| 1351 | fn c-src/exit.c /^ void EXFUN((*fn[1]), (NOARGS));$/ | ||
| 1352 | fn c-src/exit.strange_suffix /^ void EXFUN((*fn[1]), (NOARGS));$/ | ||
| 1353 | fnin y-src/parse.y 68 | ||
| 1354 | \fnitemindex tex-src/texinfo.tex /^\\def\\fnitemindex #1{\\doind {fn}{\\code{#1}}}%$/ | ||
| 1355 | focus_set pyt-src/server.py /^ def focus_set(self):$/ | ||
| 1356 | follow_key c-src/emacs/src/keyboard.c /^follow_key (Lisp_Object keymap, Lisp_Object key)$/ | ||
| 1357 | fonts\rm tex-src/texinfo.tex /^ \\indexfonts\\rm \\tolerance=9500 \\advance\\baseline/ | ||
| 1358 | fonts tex-src/texinfo.tex /^\\obeyspaces \\obeylines \\ninett \\indexfonts \\rawbac/ | ||
| 1359 | foo1 ruby-src/test1.ru /^ attr_reader(:foo1, :bar1, # comment$/ | ||
| 1360 | foo2 ruby-src/test1.ru /^ alias_method ( :foo2, #cmmt$/ | ||
| 1361 | foobar2_ c-src/h.h 16 | ||
| 1362 | foobar2 c-src/h.h 20 | ||
| 1363 | foobar c.c /^extern void foobar (void) __attribute__ ((section / | ||
| 1364 | foobar c-src/c.c /^int foobar() {;}$/ | ||
| 1365 | foo==bar el-src/TAGTEST.EL /^(defun foo==bar () (message "hi")) ; Bug#5624$/ | ||
| 1366 | Foo::Bar perl-src/kai-test.pl /^package Foo::Bar;$/ | ||
| 1367 | foo c.c 150 | ||
| 1368 | foo c.c 166 | ||
| 1369 | foo c.c 167 | ||
| 1370 | foo c.c 178 | ||
| 1371 | foo c.c 189 | ||
| 1372 | foo cp-src/c.C 68 | ||
| 1373 | foo cp-src/c.C 79 | ||
| 1374 | foo cp-src/c.C /^ foo() {$/ | ||
| 1375 | foo cp-src/x.cc /^XX::foo()$/ | ||
| 1376 | foo c-src/h.h 18 | ||
| 1377 | (foo) forth-src/test-forth.fth /^: (foo) 1 ;$/ | ||
| 1378 | foo forth-src/test-forth.fth /^: foo (foo) ;$/ | ||
| 1379 | foo f-src/entry.for /^ character*(*) function foo()$/ | ||
| 1380 | foo f-src/entry.strange /^ character*(*) function foo()$/ | ||
| 1381 | foo f-src/entry.strange_suffix /^ character*(*) function foo()$/ | ||
| 1382 | Foo perl-src/kai-test.pl /^package Foo;$/ | ||
| 1383 | foo php-src/ptest.php /^foo()$/ | ||
| 1384 | foo ruby-src/test1.ru /^ attr_reader :foo$/ | ||
| 1385 | foo! ruby-src/test1.ru /^ def foo!$/ | ||
| 1386 | Fopen_dribble_file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/ | ||
| 1387 | foperator c-src/etags.c 2411 | ||
| 1388 | force_auto_save_soon c-src/emacs/src/keyboard.c /^force_auto_save_soon (void)$/ | ||
| 1389 | force_explicit_name c-src/etags.c 265 | ||
| 1390 | force_quit_count c-src/emacs/src/keyboard.c 10387 | ||
| 1391 | FOR_EACH_ALIST_VALUE c-src/emacs/src/lisp.h /^#define FOR_EACH_ALIST_VALUE(head_var, list_var, v/ | ||
| 1392 | FOR_EACH_TAIL c-src/emacs/src/lisp.h /^#define FOR_EACH_TAIL(hare, list, tortoise, n) \\$/ | ||
| 1393 | foreign_export merc-src/accumulator.m /^:- pragma foreign_export("C", unravel_univ(in, out/ | ||
| 1394 | formatSize 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 / | ||
| 1396 | Forth_help c-src/etags.c 573 | ||
| 1397 | FORTHSRC make-src/Makefile /^FORTHSRC=test-forth.fth$/ | ||
| 1398 | Forth_suffixes c-src/etags.c 571 | ||
| 1399 | Forth_words c-src/etags.c /^Forth_words (FILE *inf)$/ | ||
| 1400 | Fortran_functions c-src/etags.c /^Fortran_functions (FILE *inf)$/ | ||
| 1401 | Fortran_help c-src/etags.c 579 | ||
| 1402 | Fortran_suffixes c-src/etags.c 577 | ||
| 1403 | found c-src/emacs/src/lisp.h 2344 | ||
| 1404 | Fposn_at_point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/ | ||
| 1405 | Fposn_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 { $/ | ||
| 1407 | fracas html-src/software.html /^Fracas$/ | ||
| 1408 | /fraction ps-src/rfc1245.ps /^\/fraction \/currency \/guilsinglleft \/guilsinglright/ | ||
| 1409 | frag 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 $/ | ||
| 1412 | frame_local c-src/emacs/src/lisp.h 2341 | ||
| 1413 | FRAMEP c-src/emacs/src/lisp.h /^FRAMEP (Lisp_Object a)$/ | ||
| 1414 | FRC make-src/Makefile /^FRC:;$/ | ||
| 1415 | Fread_key_sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/ | ||
| 1416 | Fread_key_sequence_vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/ | ||
| 1417 | Frecent_keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, / | ||
| 1418 | Frecursion_depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/ | ||
| 1419 | Frecursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/ | ||
| 1420 | free c-src/emacs/src/gmalloc.c 166 | ||
| 1421 | free c-src/emacs/src/gmalloc.c 1719 | ||
| 1422 | free c-src/emacs/src/gmalloc.c 67 | ||
| 1423 | free c-src/emacs/src/gmalloc.c 72 | ||
| 1424 | _free c-src/emacs/src/gmalloc.c /^_free (void *ptr)$/ | ||
| 1425 | free c-src/emacs/src/gmalloc.c /^free (void *ptr)$/ | ||
| 1426 | free_fdesc c-src/etags.c /^free_fdesc (register fdesc *fdp)$/ | ||
| 1427 | FREEFLOOD c-src/emacs/src/gmalloc.c 1858 | ||
| 1428 | free_for prol-src/natded.prolog /^free_for(var(_),_,_).$/ | ||
| 1429 | freehook 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)$/ | ||
| 1432 | free_regexps c-src/etags.c /^free_regexps (void)$/ | ||
| 1433 | free_tree c-src/etags.c /^free_tree (register node *np)$/ | ||
| 1434 | free_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/ | ||
| 1437 | Freset_this_command_lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/ | ||
| 1438 | fresh_vars prol-src/natded.prolog /^fresh_vars(var(V),var(V)).$/ | ||
| 1439 | Fset_input_interrupt_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/ | ||
| 1440 | Fset_input_meta_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/ | ||
| 1441 | Fset_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/ | ||
| 1442 | Fset_output_flow_control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/ | ||
| 1443 | Fset_quit_char c-src/emacs/src/keyboard.c /^DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_/ | ||
| 1444 | FSRC make-src/Makefile /^FSRC=entry.for entry.strange_suffix entry.strange$/ | ||
| 1445 | fstartlist c-src/etags.c 2413 | ||
| 1446 | Fsuspend_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/ | ||
| 1448 | F_takeprec c-src/etags.c /^F_takeprec (void)$/ | ||
| 1449 | Fthis_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/ | ||
| 1450 | Fthis_command_keys_vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/ | ||
| 1451 | Fthis_single_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/ | ||
| 1452 | Fthis_single_command_raw_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-raw-keys", Fthis_singl/ | ||
| 1453 | Ftop_level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, / | ||
| 1454 | Ftrack_mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/ | ||
| 1455 | FUN0 y-src/parse.y /^yylex FUN0()$/ | ||
| 1456 | FUN1 y-src/parse.y /^str_to_col FUN1(char **,str)$/ | ||
| 1457 | FUN1 y-src/parse.y /^yyerror FUN1(char *, s)$/ | ||
| 1458 | FUN2 y-src/parse.y /^make_list FUN2(YYSTYPE, car, YYSTYPE, cdr)$/ | ||
| 1459 | FUN2 y-src/parse.y /^parse_cell_or_range FUN2(char **,ptr, struct rng */ | ||
| 1460 | func1 c.c /^int func1$/ | ||
| 1461 | func2 c.c /^int func2 (a,b$/ | ||
| 1462 | funcboo c.c /^bool funcboo ()$/ | ||
| 1463 | func c-src/emacs/src/lisp.h /^ void (*func) (int);$/ | ||
| 1464 | func c-src/emacs/src/lisp.h /^ void (*func) (Lisp_Object);$/ | ||
| 1465 | func c-src/emacs/src/lisp.h /^ void (*func) (void *);$/ | ||
| 1466 | func c-src/emacs/src/lisp.h /^ void (*func) (void);$/ | ||
| 1467 | func_key_syms c-src/emacs/src/keyboard.c 4626 | ||
| 1468 | funcpointer c-src/emacs/src/lisp.h 2126 | ||
| 1469 | funcptr c-src/h.h /^ fu int (*funcptr) (void *ptr);$/ | ||
| 1470 | function c-src/emacs/src/lisp.h 1685 | ||
| 1471 | function c-src/emacs/src/lisp.h 2197 | ||
| 1472 | function c-src/emacs/src/lisp.h 2985 | ||
| 1473 | function c-src/emacs/src/lisp.h 694 | ||
| 1474 | function c-src/etags.c 194 | ||
| 1475 | FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 4766 | ||
| 1476 | FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5061 | ||
| 1477 | FUNCTIONP c-src/emacs/src/lisp.h /^FUNCTIONP (Lisp_Object obj)$/ | ||
| 1478 | functionp c-src/emacs/src/lisp.h /^functionp (Lisp_Object object)$/ | ||
| 1479 | Funexpand_abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/ | ||
| 1480 | fval forth-src/test-forth.fth /^fconst fvalue fval$/ | ||
| 1481 | fvar forth-src/test-forth.fth /^fvariable fvar$/ | ||
| 1482 | fvdef c-src/etags.c 2418 | ||
| 1483 | fvextern c-src/etags.c 2420 | ||
| 1484 | fvnameseen c-src/etags.c 2412 | ||
| 1485 | fvnone c-src/etags.c 2408 | ||
| 1486 | fwd c-src/emacs/src/lisp.h 2346 | ||
| 1487 | fwd c-src/emacs/src/lisp.h 690 | ||
| 1488 | Fx_get_selection_internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/ | ||
| 1489 | Fx_get_selection_internal c.c /^ Fx_get_selection_internal, Sx_get_selection/ | ||
| 1490 | Fy_get_selection_internal c.c /^ Fy_get_selection_internal, Sy_get_selection_/ | ||
| 1491 | galileo html-src/software.html /^GaliLEO$/ | ||
| 1492 | GatherControls pyt-src/server.py /^ def GatherControls(self):$/ | ||
| 1493 | gather pyt-src/server.py /^ def gather(self):$/ | ||
| 1494 | GCALIGNED c-src/emacs/src/lisp.h 288 | ||
| 1495 | GCALIGNED c-src/emacs/src/lisp.h 290 | ||
| 1496 | GCALIGNMENT c-src/emacs/src/lisp.h 243 | ||
| 1497 | gc_aset c-src/emacs/src/lisp.h /^gc_aset (Lisp_Object array, ptrdiff_t idx, Lisp_Ob/ | ||
| 1498 | GC_MAKE_GCPROS_NOOPS c-src/emacs/src/lisp.h 3172 | ||
| 1499 | gcmarkbit c-src/emacs/src/lisp.h 1974 | ||
| 1500 | gcmarkbit c-src/emacs/src/lisp.h 1981 | ||
| 1501 | gcmarkbit c-src/emacs/src/lisp.h 2035 | ||
| 1502 | gcmarkbit c-src/emacs/src/lisp.h 2113 | ||
| 1503 | gcmarkbit c-src/emacs/src/lisp.h 2204 | ||
| 1504 | gcmarkbit c-src/emacs/src/lisp.h 656 | ||
| 1505 | GC_MARK_STACK_CHECK_GCPROS c-src/emacs/src/lisp.h 3173 | ||
| 1506 | GC_MARK_STACK c-src/emacs/src/lisp.h 3177 | ||
| 1507 | GCPRO1 c-src/emacs/src/lisp.h /^#define GCPRO1(a) \\$/ | ||
| 1508 | GCPRO1 c-src/emacs/src/lisp.h /^#define GCPRO1(varname) ((void) gcpro1)$/ | ||
| 1509 | GCPRO2 c-src/emacs/src/lisp.h /^#define GCPRO2(a, b) \\$/ | ||
| 1510 | GCPRO2 c-src/emacs/src/lisp.h /^#define GCPRO2(varname1, varname2) ((void) gcpro2,/ | ||
| 1511 | GCPRO3 c-src/emacs/src/lisp.h /^#define GCPRO3(a, b, c) \\$/ | ||
| 1512 | GCPRO3 c-src/emacs/src/lisp.h /^#define GCPRO3(varname1, varname2, varname3) \\$/ | ||
| 1513 | GCPRO4 c-src/emacs/src/lisp.h /^#define GCPRO4(a, b, c, d) \\$/ | ||
| 1514 | GCPRO4 c-src/emacs/src/lisp.h /^#define GCPRO4(varname1, varname2, varname3, varna/ | ||
| 1515 | GCPRO5 c-src/emacs/src/lisp.h /^#define GCPRO5(a, b, c, d, e) \\$/ | ||
| 1516 | GCPRO5 c-src/emacs/src/lisp.h /^#define GCPRO5(varname1, varname2, varname3, varna/ | ||
| 1517 | GCPRO6 c-src/emacs/src/lisp.h /^#define GCPRO6(a, b, c, d, e, f) \\$/ | ||
| 1518 | GCPRO6 c-src/emacs/src/lisp.h /^#define GCPRO6(varname1, varname2, varname3, varna/ | ||
| 1519 | GCPRO7 c-src/emacs/src/lisp.h /^#define GCPRO7(a, b, c, d, e, f, g) \\$/ | ||
| 1520 | GCPRO7 c-src/emacs/src/lisp.h /^#define GCPRO7(a, b, c, d, e, f, g) (GCPRO6 (a, b,/ | ||
| 1521 | gcpro c-src/emacs/src/lisp.h 3042 | ||
| 1522 | gcpro c-src/emacs/src/lisp.h 3132 | ||
| 1523 | g cp-src/c.C /^ int g(){return 2;};$/ | ||
| 1524 | GCTYPEBITS c-src/emacs/src/lisp.h 67 | ||
| 1525 | GCTYPEBITS c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (int, GCTYPEBITS)$/ | ||
| 1526 | GC_USE_GCPROS_AS_BEFORE c-src/emacs/src/lisp.h 3171 | ||
| 1527 | GC_USE_GCPROS_CHECK_ZOMBIES c-src/emacs/src/lisp.h 3174 | ||
| 1528 | genalgorithm html-src/algrthms.html /^Generating the Data<\/font><\/i><\/b>$/ | ||
| 1529 | generate_warning merc-src/accumulator.m /^:- pred generate_warning(module_info::in, prog_var/ | ||
| 1530 | generate_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)$/ | ||
| 1532 | generic_object cp-src/clheir.cpp /^generic_object::generic_object(void)$/ | ||
| 1533 | generic_object cp-src/clheir.hpp 13 | ||
| 1534 | GENERIC_PTR y-src/cccp.y 56 | ||
| 1535 | GENERIC_PTR y-src/cccp.y 58 | ||
| 1536 | gen_help_event c-src/emacs/src/keyboard.c /^gen_help_event (Lisp_Object help, Lisp_Object fram/ | ||
| 1537 | GEQ y-src/cccp.c 15 | ||
| 1538 | getArchs objc-src/PackInsp.m /^-(void)getArchs$/ | ||
| 1539 | getcjmp c-src/emacs/src/keyboard.c 147 | ||
| 1540 | get_compressor_from_suffix c-src/etags.c /^get_compressor_from_suffix (char *file, char **ext/ | ||
| 1541 | get_contiguous_space c-src/emacs/src/gmalloc.c /^get_contiguous_space (ptrdiff_t size, void *positi/ | ||
| 1542 | get_current_dir_name c-src/emacs/src/gmalloc.c 33 | ||
| 1543 | getDomainNames php-src/lce_functions.php /^ function getDomainNames()$/ | ||
| 1544 | getFoo lua-src/test.lua /^function Cube.data.getFoo ()$/ | ||
| 1545 | get_input_pending c-src/emacs/src/keyboard.c /^get_input_pending (int flags)$/ | ||
| 1546 | get_language_from_filename c-src/etags.c /^get_language_from_filename (char *file, int case_s/ | ||
| 1547 | get_language_from_interpreter c-src/etags.c /^get_language_from_interpreter (char *interpreter)$/ | ||
| 1548 | get_language_from_langname c-src/etags.c /^get_language_from_langname (const char *name)$/ | ||
| 1549 | GetLayerByName lua-src/allegro.lua /^function GetLayerByName (name)$/ | ||
| 1550 | get_layer_by_name lua-src/allegro.lua /^local function get_layer_by_name (sprite, layer, n/ | ||
| 1551 | GetNameList pas-src/common.pas /^function GetNameList; (* : BinNodePointer;*)$/ | ||
| 1552 | GetNewNameListNode pas-src/common.pas /^function GetNewNameListNode;(*($/ | ||
| 1553 | getopt1.o make-src/Makefile /^getopt1.o: emacs\/lib-src\/getopt1.c$/ | ||
| 1554 | _GETOPT_H c-src/getopt.h 19 | ||
| 1555 | GETOPTOBJS make-src/Makefile /^GETOPTOBJS= #getopt.o getopt1.o$/ | ||
| 1556 | getopt.o make-src/Makefile /^getopt.o: emacs\/lib-src\/getopt.c$/ | ||
| 1557 | getopt perl-src/yagrip.pl /^sub getopt {$/ | ||
| 1558 | Get_Own_Priority/f ada-src/2ataspri.adb /^ function Get_Own_Priority return System.Any_Pri/ | ||
| 1559 | Get_Own_Priority/f ada-src/2ataspri.ads /^ function Get_Own_Priority return System.Any_Pri/ | ||
| 1560 | getPath objc-src/PackInsp.m /^-(const char *)getPath:(char *)buf forType:(const / | ||
| 1561 | getPOReader php-src/lce_functions.php /^ function &getPOReader($domain)$/ | ||
| 1562 | getPos lua-src/test.lua /^function Circle.getPos ()$/ | ||
| 1563 | getPos lua-src/test.lua /^function Rectangle.getPos ()$/ | ||
| 1564 | Get_Priority/f ada-src/2ataspri.adb /^ function Get_Priority (T : TCB_Ptr) return Syst/ | ||
| 1565 | Get_Priority/f ada-src/2ataspri.ads /^ function Get_Priority (T : TCB_Ptr) return Syst/ | ||
| 1566 | getptys objc-src/Subprocess.m /^getptys (int *master, int *slave)$/ | ||
| 1567 | get_tag c-src/etags.c /^get_tag (register char *bp, char **namepp)$/ | ||
| 1568 | getTextDomains php-src/lce_functions.php /^ function getTextDomains($lines)$/ | ||
| 1569 | gettext php-src/lce_functions.php /^ function gettext($msgid)$/ | ||
| 1570 | GetTextRef pas-src/common.pas /^function GetTextRef;(*($/ | ||
| 1571 | GetUniqueLayerName lua-src/allegro.lua /^function GetUniqueLayerName ()$/ | ||
| 1572 | get_word c-src/tab.c /^static char *get_word(char **str, char delim)$/ | ||
| 1573 | GE y-src/parse.c 8 | ||
| 1574 | ggg c-src/h.h 10 | ||
| 1575 | ghi1 c-src/h.h 36 | ||
| 1576 | ghi2 c-src/h.h 39 | ||
| 1577 | giallo cp-src/c.C 40 | ||
| 1578 | glider 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 { $/ | ||
| 1581 | gnu html-src/software.html /^Free software that I wrote for the GNU project or / | ||
| 1582 | _GNU_SOURCE c-src/etags.c 94 | ||
| 1583 | gobble_input c-src/emacs/src/keyboard.c /^gobble_input (void)$/ | ||
| 1584 | goto-tag-location-function el-src/emacs/lisp/progmodes/etags.el /^(defvar goto-tag-location-function nil$/ | ||
| 1585 | goto_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 {$/ | ||
| 1589 | GREEN cp-src/screen.hpp 14 | ||
| 1590 | \group tex-src/texinfo.tex /^\\def\\group{\\begingroup$/ | ||
| 1591 | GROW_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 / | ||
| 1595 | handle_async_input c-src/emacs/src/keyboard.c /^handle_async_input (void)$/ | ||
| 1596 | handle_input_available_signal c-src/emacs/src/keyboard.c /^handle_input_available_signal (int sig)$/ | ||
| 1597 | handle_interrupt c-src/emacs/src/keyboard.c /^handle_interrupt (bool in_signal_handler)$/ | ||
| 1598 | handle_interrupt_signal c-src/emacs/src/keyboard.c /^handle_interrupt_signal (int sig)$/ | ||
| 1599 | handleList pyt-src/server.py /^ def handleList(self, event):$/ | ||
| 1600 | handleNew pyt-src/server.py /^ def handleNew(self, event):$/ | ||
| 1601 | handler c-src/emacs/src/lisp.h 3023 | ||
| 1602 | handlertype c-src/emacs/src/lisp.h 3021 | ||
| 1603 | handle_user_signal c-src/emacs/src/keyboard.c /^handle_user_signal (int sig)$/ | ||
| 1604 | has_arg c-src/getopt.h 82 | ||
| 1605 | hash c-src/emacs/src/lisp.h 1843 | ||
| 1606 | hash c-src/etags.c /^hash (const char *str, int len)$/ | ||
| 1607 | hashfn c-src/emacs/src/lisp.h /^ EMACS_UINT (*hashfn) (struct hash_table_test *t,/ | ||
| 1608 | HASH_HASH c-src/emacs/src/lisp.h /^HASH_HASH (struct Lisp_Hash_Table *h, ptrdiff_t id/ | ||
| 1609 | HASH_INDEX c-src/emacs/src/lisp.h /^HASH_INDEX (struct Lisp_Hash_Table *h, ptrdiff_t i/ | ||
| 1610 | HASH_KEY c-src/emacs/src/lisp.h /^HASH_KEY (struct Lisp_Hash_Table *h, ptrdiff_t idx/ | ||
| 1611 | HASH_NEXT c-src/emacs/src/lisp.h /^HASH_NEXT (struct Lisp_Hash_Table *h, ptrdiff_t id/ | ||
| 1612 | HASH_TABLE_P c-src/emacs/src/lisp.h /^HASH_TABLE_P (Lisp_Object a)$/ | ||
| 1613 | HASH_TABLE_SIZE c-src/emacs/src/lisp.h /^HASH_TABLE_SIZE (struct Lisp_Hash_Table *h)$/ | ||
| 1614 | hash_table_test c-src/emacs/src/lisp.h 1805 | ||
| 1615 | HASH_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}$/ | ||
| 1618 | HAVE_NTGUI c-src/etags.c 116 | ||
| 1619 | hdr c-src/emacs/src/gmalloc.c 1860 | ||
| 1620 | header c-src/emacs/src/lisp.h 1371 | ||
| 1621 | header c-src/emacs/src/lisp.h 1388 | ||
| 1622 | header c-src/emacs/src/lisp.h 1581 | ||
| 1623 | header c-src/emacs/src/lisp.h 1610 | ||
| 1624 | header c-src/emacs/src/lisp.h 1672 | ||
| 1625 | header c-src/emacs/src/lisp.h 1826 | ||
| 1626 | header_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}$/ | ||
| 1639 | head_table c-src/emacs/src/keyboard.c 11027 | ||
| 1640 | _heapbase c-src/emacs/src/gmalloc.c 355 | ||
| 1641 | HEAP 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 | ||
| 1645 | heapsize c-src/emacs/src/gmalloc.c 361 | ||
| 1646 | hello scm-src/test.scm /^(define hello "Hello, Emacs!")$/ | ||
| 1647 | hello scm-src/test.scm /^(set! hello "Hello, world!")$/ | ||
| 1648 | hello-world scm-src/test.scm /^(define (hello-world)$/ | ||
| 1649 | help_char_p c-src/emacs/src/keyboard.c /^help_char_p (Lisp_Object c)$/ | ||
| 1650 | help c-src/etags.c 193 | ||
| 1651 | help_form_saved_window_configs c-src/emacs/src/keyboard.c 2156 | ||
| 1652 | helpPanel objcpp-src/SimpleCalc.M /^- helpPanel:sender$/ | ||
| 1653 | helpwin pyt-src/server.py /^def helpwin(helpdict):$/ | ||
| 1654 | hide_cursor cp-src/screen.cpp /^void hide_cursor(void)$/ | ||
| 1655 | hlds 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 { $/ | ||
| 1659 | HTML_help c-src/etags.c 584 | ||
| 1660 | HTML_labels c-src/etags.c /^HTML_labels (FILE *inf)$/ | ||
| 1661 | HTMLSRC make-src/Makefile /^HTMLSRC=softwarelibero.html index.shtml algrthms.h/ | ||
| 1662 | HTML_suffixes c-src/etags.c 582 | ||
| 1663 | htmltreelist prol-src/natded.prolog /^htmltreelist([]).$/ | ||
| 1664 | /hx ps-src/rfc1245.ps /^\/hx { $/ | ||
| 1665 | hybrid_aligned_alloc c-src/emacs/src/gmalloc.c /^hybrid_aligned_alloc (size_t alignment, size_t siz/ | ||
| 1666 | hybrid_calloc c-src/emacs/src/gmalloc.c /^hybrid_calloc (size_t nmemb, size_t size)$/ | ||
| 1667 | hybrid_free c-src/emacs/src/gmalloc.c /^hybrid_free (void *ptr)$/ | ||
| 1668 | hybrid_get_current_dir_name c-src/emacs/src/gmalloc.c /^hybrid_get_current_dir_name (void)$/ | ||
| 1669 | hybrid_malloc c-src/emacs/src/gmalloc.c /^hybrid_malloc (size_t size)$/ | ||
| 1670 | hybrid_realloc c-src/emacs/src/gmalloc.c /^hybrid_realloc (void *ptr, size_t size)$/ | ||
| 1671 | hypothetical_mem prol-src/natded.prolog /^hypothetical_mem(fi(N),Ass,_):-$/ | ||
| 1672 | /iacute ps-src/rfc1245.ps /^\/iacute \/igrave \/icircumflex \/idieresis \/ntilde \/o/ | ||
| 1673 | ialpage tex-src/texinfo.tex /^ \\availdimen@=\\pageheight \\advance\\availdimen@ by/ | ||
| 1674 | ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\pa/ | ||
| 1675 | ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\parti/ | ||
| 1676 | ialpage tex-src/texinfo.tex /^\\newbox\\partialpage$/ | ||
| 1677 | ialpage= tex-src/texinfo.tex /^ \\output={\\global\\setbox\\partialpage=$/ | ||
| 1678 | i c.c 169 | ||
| 1679 | /Icircumflex ps-src/rfc1245.ps /^\/Icircumflex \/Idieresis \/Igrave \/Oacute \/Ocircumfl/ | ||
| 1680 | i cp-src/c.C 132 | ||
| 1681 | /ic ps-src/rfc1245.ps /^\/ic [ $/ | ||
| 1682 | i c-src/c.c 2 | ||
| 1683 | i c-src/emacs/src/lisp.h 4673 | ||
| 1684 | i c-src/emacs/src/lisp.h 4679 | ||
| 1685 | i c-src/emacs/src/lisp.h 567 | ||
| 1686 | identify_goal_type merc-src/accumulator.m /^:- pred identify_goal_type(pred_id::in, proc_id::i/ | ||
| 1687 | identify_out_and_out_prime merc-src/accumulator.m /^:- pred identify_out_and_out_prime(module_info::in/ | ||
| 1688 | identify_recursive_calls merc-src/accumulator.m /^:- pred identify_recursive_calls(pred_id::in, proc/ | ||
| 1689 | idx c-src/emacs/src/lisp.h 3150 | ||
| 1690 | IEEE_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/ | ||
| 1703 | ignore_case c-src/etags.c 266 | ||
| 1704 | ignore_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$/ | ||
| 1709 | ill=\relax tex-src/texinfo.tex /^\\let\\refill=\\relax$/ | ||
| 1710 | IMAGEP c-src/emacs/src/lisp.h /^IMAGEP (Lisp_Object x)$/ | ||
| 1711 | immediate_quit c-src/emacs/src/keyboard.c 174 | ||
| 1712 | impatto html-src/softwarelibero.html /^Impatto pratico del software libero$/ | ||
| 1713 | implementation merc-src/accumulator.m /^:- implementation.$/ | ||
| 1714 | inattribute c-src/etags.c 2400 | ||
| 1715 | inc 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}$/ | ||
| 1720 | index 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/ | ||
| 1730 | infabsdir c-src/etags.c 206 | ||
| 1731 | infabsname c-src/etags.c 205 | ||
| 1732 | infiles make-src/Makefile /^infiles = $(filter-out ${NONSRCS},${SRCS}) srclist/ | ||
| 1733 | infname 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}$/ | ||
| 1739 | info c-src/emacs/src/gmalloc.c 157 | ||
| 1740 | infoPanel 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}$/ | ||
| 1751 | inita c.c /^static void inita () {}$/ | ||
| 1752 | initb c.c /^static void initb () {}$/ | ||
| 1753 | init_control c.c 239 | ||
| 1754 | init c-src/etags.c /^init (void)$/ | ||
| 1755 | Initialize_Cond/p ada-src/2ataspri.adb /^ procedure Initialize_Cond (Cond : in out Condit/ | ||
| 1756 | Initialize_Cond/p ada-src/2ataspri.ads /^ procedure Initialize_Cond (Cond : in out Condit/ | ||
| 1757 | initialize_goal_store merc-src/accumulator.m /^:- func initialize_goal_store(list(hlds_goal), ins/ | ||
| 1758 | Initialize_LL_Tasks/p ada-src/2ataspri.adb /^ procedure Initialize_LL_Tasks (T : TCB_Ptr) is$/ | ||
| 1759 | Initialize_LL_Tasks/p ada-src/2ataspri.ads /^ procedure Initialize_LL_Tasks (T : TCB_Ptr);$/ | ||
| 1760 | Initialize_Lock/p ada-src/2ataspri.adb /^ procedure Initialize_Lock$/ | ||
| 1761 | Initialize_Lock/p ada-src/2ataspri.ads /^ procedure Initialize_Lock (Prio : System.Any_Pr/ | ||
| 1762 | initialize-new-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun initialize-new-tags-table ()$/ | ||
| 1763 | initialize_random_junk y-src/cccp.y /^initialize_random_junk ()$/ | ||
| 1764 | InitializeStringPackage pas-src/common.pas /^procedure InitializeStringPackage;$/ | ||
| 1765 | Initialize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Initialize_TAS_Cell (Cell : out TAS_C/ | ||
| 1766 | Initialize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Initialize_TAS_Cell (Cell : out TA/ | ||
| 1767 | initial_kboard c-src/emacs/src/keyboard.c 84 | ||
| 1768 | \initial tex-src/texinfo.tex /^\\def\\initial #1{%$/ | ||
| 1769 | init_kboard c-src/emacs/src/keyboard.c /^init_kboard (KBOARD *kb, Lisp_Object type)$/ | ||
| 1770 | init_keyboard c-src/emacs/src/keyboard.c /^init_keyboard (void)$/ | ||
| 1771 | InitNameList pas-src/common.pas /^procedure InitNameList;$/ | ||
| 1772 | InitNameStringPool pas-src/common.pas /^procedure InitNameStringPool;$/ | ||
| 1773 | init objcpp-src/SimpleCalc.M /^- init$/ | ||
| 1774 | init objc-src/Subprocess.m /^ andStdErr:(BOOL)wantsStdErr$/ | ||
| 1775 | init 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/ | ||
| 1782 | init_registry cp-src/clheir.cpp /^void init_registry(void)$/ | ||
| 1783 | init_tool_bar_items c-src/emacs/src/keyboard.c /^init_tool_bar_items (Lisp_Object reuse)$/ | ||
| 1784 | Inner1/b ada-src/etags-test-for.ada /^ package body Inner1 is$/ | ||
| 1785 | Inner1/b ada-src/waroquiers.ada /^ package body Inner1 is$/ | ||
| 1786 | Inner1/s ada-src/etags-test-for.ada /^ package Inner1 is$/ | ||
| 1787 | Inner1/s ada-src/waroquiers.ada /^ package Inner1 is$/ | ||
| 1788 | Inner2/b ada-src/etags-test-for.ada /^ package body Inner2 is$/ | ||
| 1789 | Inner2/b ada-src/waroquiers.ada /^ package body Inner2 is$/ | ||
| 1790 | Inner2/s ada-src/etags-test-for.ada /^ package Inner2 is$/ | ||
| 1791 | Inner2/s ada-src/waroquiers.ada /^ package Inner2 is$/ | ||
| 1792 | input_available_clear_time c-src/emacs/src/keyboard.c 324 | ||
| 1793 | INPUT_EVENT_POS_MAX c-src/emacs/src/keyboard.c 3698 | ||
| 1794 | INPUT_EVENT_POS_MIN c-src/emacs/src/keyboard.c 3701 | ||
| 1795 | input_pending c-src/emacs/src/keyboard.c 239 | ||
| 1796 | input-pending-p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/ | ||
| 1797 | input_polling_used c-src/emacs/src/keyboard.c /^input_polling_used (void)$/ | ||
| 1798 | input_was_pending c-src/emacs/src/keyboard.c 287 | ||
| 1799 | insert-abbrev-table-description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/ | ||
| 1800 | insertion_type c-src/emacs/src/lisp.h 1989 | ||
| 1801 | insertname pas-src/common.pas /^function insertname;(*($/ | ||
| 1802 | INSERT_TREE_NODE pas-src/common.pas /^procedure INSERT_TREE_NODE;(*( $/ | ||
| 1803 | Install_Abort_Handler/p ada-src/2ataspri.adb /^ procedure Install_Abort_Handler (Handler : Abor/ | ||
| 1804 | Install_Abort_Handler/p ada-src/2ataspri.ads /^ procedure Install_Abort_Handler (Handler : Abor/ | ||
| 1805 | Install_Error_Handler/p ada-src/2ataspri.adb /^ procedure Install_Error_Handler (Handler : Syst/ | ||
| 1806 | Install_Error_Handler/p ada-src/2ataspri.ads /^ procedure Install_Error_Handler (Handler : Syst/ | ||
| 1807 | instance_method_equals= ruby-src/test.rb /^ def instance_method_equals=$/ | ||
| 1808 | instance_method_exclamation! ruby-src/test.rb /^ def instance_method_exclamation!$/ | ||
| 1809 | instance_method_question? ruby-src/test.rb /^ def instance_method_question?$/ | ||
| 1810 | instance_method ruby-src/test.rb /^ def instance_method$/ | ||
| 1811 | INSTANTIATE_MDIAGARRAY_FRIENDS cp-src/MDiagArray2.h /^#define INSTANTIATE_MDIAGARRAY_FRIENDS(T) \\$/ | ||
| 1812 | instruct c-src/etags.c 2527 | ||
| 1813 | instr y-src/parse.y 81 | ||
| 1814 | INT_BIT c-src/emacs/src/gmalloc.c 124 | ||
| 1815 | INT c-src/h.h 32 | ||
| 1816 | integer c-src/emacs/src/lisp.h 2127 | ||
| 1817 | integer_overflow y-src/cccp.y /^integer_overflow ()$/ | ||
| 1818 | INTEGERP c-src/emacs/src/lisp.h /^# define INTEGERP(x) lisp_h_INTEGERP (x)$/ | ||
| 1819 | INTEGER_TO_CONS c-src/emacs/src/lisp.h /^#define INTEGER_TO_CONS(i) \\$/ | ||
| 1820 | integertonmstr pas-src/common.pas /^function integertonmstr; (* (TheInteger : integer)/ | ||
| 1821 | integer y-src/cccp.y 112 | ||
| 1822 | intensity1 f-src/entry.for /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/ | ||
| 1823 | intensity1 f-src/entry.strange /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/ | ||
| 1824 | intensity1 f-src/entry.strange_suffix /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/ | ||
| 1825 | interface_locate c-src/c.c /^interface_locate(void)$/ | ||
| 1826 | interface 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} \\/ | ||
| 1833 | internal_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/ | ||
| 1835 | intern c-src/emacs/src/lisp.h /^intern (const char *str)$/ | ||
| 1836 | intern_c_string c-src/emacs/src/lisp.h /^intern_c_string (const char *str)$/ | ||
| 1837 | interned c-src/emacs/src/lisp.h 672 | ||
| 1838 | interpreters c-src/etags.c 197 | ||
| 1839 | interrupt_input_blocked c-src/emacs/src/keyboard.c 76 | ||
| 1840 | interrupt_input_blocked c-src/emacs/src/lisp.h 3048 | ||
| 1841 | interrupt_input c-src/emacs/src/keyboard.c 328 | ||
| 1842 | interrupts_deferred c-src/emacs/src/keyboard.c 331 | ||
| 1843 | INTERVAL c-src/emacs/src/lisp.h 1149 | ||
| 1844 | INTMASK c-src/emacs/src/lisp.h 437 | ||
| 1845 | int merc-src/accumulator.m /^:- import_module int.$/ | ||
| 1846 | intNumber go-src/test1.go 13 | ||
| 1847 | intoken c-src/etags.c /^#define intoken(c) (_itk[CHAR (c)]) \/* c can be in/ | ||
| 1848 | intspec c-src/emacs/src/lisp.h 1688 | ||
| 1849 | INTTYPEBITS c-src/emacs/src/lisp.h 249 | ||
| 1850 | INT_TYPE_SIZE y-src/cccp.y 91 | ||
| 1851 | intvar c-src/emacs/src/lisp.h 2277 | ||
| 1852 | INT y-src/cccp.c 6 | ||
| 1853 | invalidate_nodes c-src/etags.c /^invalidate_nodes (fdesc *badfdp, node **npp)$/ | ||
| 1854 | Invoking gzip tex-src/gzip.texi /^@node Invoking gzip, Advanced usage, Sample, Top$/ | ||
| 1855 | in_word_set c-src/etags.c /^in_word_set (register const char *str, register un/ | ||
| 1856 | io merc-src/accumulator.m /^:- import_module io.$/ | ||
| 1857 | IpAddrKind rs-src/test.rs 3 | ||
| 1858 | ipc3dChannelType cp-src/c.C 1 | ||
| 1859 | ipc3dCSC19 cp-src/c.C 6 | ||
| 1860 | ipc3dIslandHierarchy cp-src/c.C 1 | ||
| 1861 | ipc3dLinkControl 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/ | ||
| 1865 | irregular_location cp-src/clheir.hpp 47 | ||
| 1866 | irregular_location cp-src/clheir.hpp /^ irregular_location(double xi, double yi, doubl/ | ||
| 1867 | ISALNUM c-src/etags.c /^#define ISALNUM(c) isalnum (CHAR (c))$/ | ||
| 1868 | ISALPHA c-src/etags.c /^#define ISALPHA(c) isalpha (CHAR (c))$/ | ||
| 1869 | is_associative_construction merc-src/accumulator.m /^:- pred is_associative_construction(module_info::i/ | ||
| 1870 | isComment php-src/lce_functions.php /^ function isComment($class)$/ | ||
| 1871 | IsControlCharName pas-src/common.pas /^function IsControlCharName($/ | ||
| 1872 | IsControlChar pas-src/common.pas /^function IsControlChar; (*($/ | ||
| 1873 | is_curly_brace_form c-src/h.h 54 | ||
| 1874 | IS_DAEMON c-src/emacs/src/lisp.h 4257 | ||
| 1875 | IS_DAEMON c-src/emacs/src/lisp.h 4261 | ||
| 1876 | ISDIGIT c-src/etags.c /^#define ISDIGIT(c) isdigit (CHAR (c))$/ | ||
| 1877 | is_explicit c-src/h.h 49 | ||
| 1878 | is_func c-src/etags.c 221 | ||
| 1879 | isHoliday cp-src/functions.cpp /^bool isHoliday ( Date d ){$/ | ||
| 1880 | is_hor_space y-src/cccp.y 953 | ||
| 1881 | is_idchar y-src/cccp.y 948 | ||
| 1882 | is_idstart y-src/cccp.y 950 | ||
| 1883 | isLeap cp-src/functions.cpp /^bool isLeap ( int year ){$/ | ||
| 1884 | ISLOWER c-src/etags.c /^#define ISLOWER(c) islower (CHAR (c))$/ | ||
| 1885 | is_muldiv_operation cp-src/c.C /^is_muldiv_operation(pc)$/ | ||
| 1886 | ISO_FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5149 | ||
| 1887 | iso_lispy_function_keys c-src/emacs/src/keyboard.c 5151 | ||
| 1888 | isoperator prol-src/natded.prolog /^isoperator(Char):-$/ | ||
| 1889 | isoptab prol-src/natded.prolog /^isoptab('%').$/ | ||
| 1890 | is_ordset prol-src/ordsets.prolog /^is_ordset(X) :- var(X), !, fail.$/ | ||
| 1891 | is_recursive_case merc-src/accumulator.m /^:- pred is_recursive_case(list(hlds_goal)::in, pre/ | ||
| 1892 | Is_Set/f ada-src/2ataspri.adb /^ function Is_Set (Cell : in TAS_Cell) return Bo/ | ||
| 1893 | Is_Set/f ada-src/2ataspri.ads /^ function Is_Set (Cell : in TAS_Cell)/ | ||
| 1894 | ISUPPER c-src/etags.c /^# define ISUPPER(c) isupper (CHAR (c))$/ | ||
| 1895 | iswhite 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{%$/ | ||
| 1902 | item_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}}$/ | ||
| 1908 | JAVASRC make-src/Makefile /^JAVASRC=AWTEMul.java KeyEve.java SMan.java SysCol./ | ||
| 1909 | jmp c-src/emacs/src/lisp.h 3044 | ||
| 1910 | just_read_file c-src/etags.c /^just_read_file (FILE *inf)$/ | ||
| 1911 | kbd_buffer c-src/emacs/src/keyboard.c 291 | ||
| 1912 | kbd_buffer_events_waiting c-src/emacs/src/keyboard.c /^kbd_buffer_events_waiting (void)$/ | ||
| 1913 | kbd_buffer_get_event c-src/emacs/src/keyboard.c /^kbd_buffer_get_event (KBOARD **kbp,$/ | ||
| 1914 | kbd_buffer_nr_stored c-src/emacs/src/keyboard.c /^kbd_buffer_nr_stored (void)$/ | ||
| 1915 | KBD_BUFFER_SIZE c-src/emacs/src/keyboard.c 82 | ||
| 1916 | kbd_buffer_store_event c-src/emacs/src/keyboard.c /^kbd_buffer_store_event (register struct input_even/ | ||
| 1917 | kbd_buffer_store_event_hold c-src/emacs/src/keyboard.c /^kbd_buffer_store_event_hold (register struct input/ | ||
| 1918 | kbd_buffer_store_help_event c-src/emacs/src/keyboard.c /^kbd_buffer_store_help_event (Lisp_Object frame, Li/ | ||
| 1919 | kbd_buffer_unget_event c-src/emacs/src/keyboard.c /^kbd_buffer_unget_event (register struct input_even/ | ||
| 1920 | kbd_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/ | ||
| 1922 | kbd_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}}$/ | ||
| 1926 | kboard c-src/emacs/src/keyboard.c 860 | ||
| 1927 | kboard_stack c-src/emacs/src/keyboard.c 858 | ||
| 1928 | kboard_stack c-src/emacs/src/keyboard.c 864 | ||
| 1929 | KBYTES objc-src/PackInsp.m 58 | ||
| 1930 | key_and_value c-src/emacs/src/lisp.h 1868 | ||
| 1931 | keyremap c-src/emacs/src/keyboard.c 8742 | ||
| 1932 | keyremap c-src/emacs/src/keyboard.c 8754 | ||
| 1933 | keyremap_step c-src/emacs/src/keyboard.c /^keyremap_step (Lisp_Object *keybuf, int bufsize, v/ | ||
| 1934 | keys_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{/ | ||
| 1938 | KEY_TO_CHAR c-src/emacs/src/keyboard.c /^#define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTE/ | ||
| 1939 | keyvalcgi prol-src/natded.prolog /^keyvalcgi(Key,Val):-$/ | ||
| 1940 | keyval prol-src/natded.prolog /^keyval(key(Key,Val)) --> [Key,'='], valseq(Val).$/ | ||
| 1941 | keyvalscgi prol-src/natded.prolog /^keyvalscgi(KeyVals),$/ | ||
| 1942 | keyvalseq prol-src/natded.prolog /^keyvalseq([KeyVal|KeyVals]) --> $/ | ||
| 1943 | keyword_parsing y-src/cccp.y 73 | ||
| 1944 | keywords y-src/cccp.y 114 | ||
| 1945 | keywords y-src/cccp.y 306 | ||
| 1946 | kind c-src/emacs/src/keyboard.c 11024 | ||
| 1947 | kind 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/ | ||
| 1952 | kset_echo_string c-src/emacs/src/keyboard.c /^kset_echo_string (struct kboard *kb, Lisp_Object v/ | ||
| 1953 | kset_kbd_queue c-src/emacs/src/keyboard.c /^kset_kbd_queue (struct kboard *kb, Lisp_Object val/ | ||
| 1954 | kset_keyboard_translate_table c-src/emacs/src/keyboard.c /^kset_keyboard_translate_table (struct kboard *kb, / | ||
| 1955 | kset_last_prefix_arg c-src/emacs/src/keyboard.c /^kset_last_prefix_arg (struct kboard *kb, Lisp_Obje/ | ||
| 1956 | kset_last_repeatable_command c-src/emacs/src/keyboard.c /^kset_last_repeatable_command (struct kboard *kb, L/ | ||
| 1957 | kset_local_function_key_map c-src/emacs/src/keyboard.c /^kset_local_function_key_map (struct kboard *kb, Li/ | ||
| 1958 | kset_overriding_terminal_local_map c-src/emacs/src/keyboard.c /^kset_overriding_terminal_local_map (struct kboard / | ||
| 1959 | kset_real_last_command c-src/emacs/src/keyboard.c /^kset_real_last_command (struct kboard *kb, Lisp_Ob/ | ||
| 1960 | kset_system_key_syms c-src/emacs/src/keyboard.c /^kset_system_key_syms (struct kboard *kb, Lisp_Obje/ | ||
| 1961 | LabeledEntry pyt-src/server.py /^class LabeledEntry(Frame):$/ | ||
| 1962 | \labelspace tex-src/texinfo.tex /^\\def\\labelspace{\\hskip1em \\relax}$/ | ||
| 1963 | lang c-src/etags.c 208 | ||
| 1964 | lang c-src/etags.c 251 | ||
| 1965 | lang c-src/etags.c 259 | ||
| 1966 | Lang_function c-src/etags.c 182 | ||
| 1967 | Lang_function c-src/h.h 6 | ||
| 1968 | lang_names c-src/etags.c 718 | ||
| 1969 | language c-src/etags.c 199 | ||
| 1970 | last_abbrev_point c-src/abbrev.c 79 | ||
| 1971 | lasta c.c 272 | ||
| 1972 | lastargmargin tex-src/texinfo.tex /^\\newskip\\deflastargmargin \\deflastargmargin=18pt$/ | ||
| 1973 | lastargmargin tex-src/texinfo.tex /^\\setbox0=\\hbox{\\hskip \\deflastargmargin{\\rm #2}\\hs/ | ||
| 1974 | last_auto_save c-src/emacs/src/keyboard.c 214 | ||
| 1975 | lastb c.c 278 | ||
| 1976 | last_heapinfo c-src/emacs/src/gmalloc.c 402 | ||
| 1977 | last_mouse_button c-src/emacs/src/keyboard.c 5215 | ||
| 1978 | last_mouse_x c-src/emacs/src/keyboard.c 5216 | ||
| 1979 | last_mouse_y c-src/emacs/src/keyboard.c 5217 | ||
| 1980 | last_non_minibuf_size c-src/emacs/src/keyboard.c 207 | ||
| 1981 | last_point_position c-src/emacs/src/keyboard.c 217 | ||
| 1982 | last_state_size c-src/emacs/src/gmalloc.c 401 | ||
| 1983 | last-tag el-src/emacs/lisp/progmodes/etags.el /^(defvar last-tag nil$/ | ||
| 1984 | last_undo_boundary c-src/emacs/src/keyboard.c 1287 | ||
| 1985 | LATEST make-src/Makefile /^LATEST=17$/ | ||
| 1986 | lb c-src/etags.c 2923 | ||
| 1987 | \lbrb tex-src/texinfo.tex /^\\def\\lbrb{{\\bf\\char`\\[}} \\def\\rbrb{{\\bf\\char`\\]}}$/ | ||
| 1988 | lbs c-src/etags.c 2924 | ||
| 1989 | lce_bindtextdomain php-src/lce_functions.php /^ function lce_bindtextdomain($d_name, $d_path/ | ||
| 1990 | lce_bindtextdomain php-src/lce_functions.php /^ function lce_bindtextdomain($domain, $path)$/ | ||
| 1991 | LCE_COMMENT php-src/lce_functions.php 13 | ||
| 1992 | LCE_COMMENT_TOOL php-src/lce_functions.php 17 | ||
| 1993 | LCE_COMMENT_USER php-src/lce_functions.php 15 | ||
| 1994 | lce_dgettext php-src/lce_functions.php /^ function lce_dgettext($domain, $msgid)$/ | ||
| 1995 | LCE_FUNCTIONS php-src/lce_functions.php 4 | ||
| 1996 | lce_geteditcode php-src/lce_functions.php /^ function lce_geteditcode($type, $name, $text, $r/ | ||
| 1997 | lce_gettext php-src/lce_functions.php /^ function lce_gettext($msgid)$/ | ||
| 1998 | L_CELL y-src/parse.c 10 | ||
| 1999 | LCE_MSGID php-src/lce_functions.php 19 | ||
| 2000 | LCE_MSGSTR php-src/lce_functions.php 21 | ||
| 2001 | lce php-src/lce_functions.php /^ function lce()$/ | ||
| 2002 | lce_textdomain php-src/lce_functions.php /^ function lce_textdomain($domain)$/ | ||
| 2003 | LCE_TEXT php-src/lce_functions.php 23 | ||
| 2004 | LCE_UNKNOWN php-src/lce_functions.php 9 | ||
| 2005 | LCE_WS php-src/lce_functions.php 11 | ||
| 2006 | L_CONST y-src/parse.c 13 | ||
| 2007 | LDFLAGS make-src/Makefile /^LDFLAGS=#-static -lc_p$/ | ||
| 2008 | leasqr html-src/software.html /^Leasqr$/ | ||
| 2009 | left c-src/etags.c 216 | ||
| 2010 | left_shift y-src/cccp.y /^left_shift (a, b)$/ | ||
| 2011 | len c-src/etags.c 237 | ||
| 2012 | length c-src/etags.c 2495 | ||
| 2013 | length y-src/cccp.y 113 | ||
| 2014 | length y-src/cccp.y 44 | ||
| 2015 | LEQ 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}$/ | ||
| 2019 | let c-src/emacs/src/lisp.h 2981 | ||
| 2020 | letter tex-src/texinfo.tex /^ {#1}{Appendix \\appendixletter}{\\noexpand\\folio}}/ | ||
| 2021 | letter tex-src/texinfo.tex /^{#1}{\\appendixletter}{\\the\\secno}{\\noexpand\\folio}/ | ||
| 2022 | letter tex-src/texinfo.tex /^{#1}{\\appendixletter}{\\the\\secno}{\\the\\subsecno}{\\/ | ||
| 2023 | letter tex-src/texinfo.tex /^ {\\appendixletter}$/ | ||
| 2024 | letter tex-src/texinfo.tex /^ {\\appendixletter}{\\the\\secno}{\\the\\subsecno}{\\th/ | ||
| 2025 | letter tex-src/texinfo.tex /^\\chapmacro {#1}{Appendix \\appendixletter}%$/ | ||
| 2026 | letter tex-src/texinfo.tex /^\\gdef\\thissection{#1}\\secheading {#1}{\\appendixlet/ | ||
| 2027 | letter tex-src/texinfo.tex /^\\subsecheading {#1}{\\appendixletter}{\\the\\secno}{\\/ | ||
| 2028 | letter: tex-src/texinfo.tex /^\\xdef\\thischapter{Appendix \\appendixletter: \\noexp/ | ||
| 2029 | level c-src/emacs/src/lisp.h 3153 | ||
| 2030 | lex prol-src/natded.prolog /^lex(W,SynOut,Sem):-$/ | ||
| 2031 | lexptr y-src/cccp.y 332 | ||
| 2032 | LE y-src/parse.c 7 | ||
| 2033 | L_FN0 y-src/parse.c 14 | ||
| 2034 | L_FN1R y-src/parse.c 20 | ||
| 2035 | L_FN1 y-src/parse.c 15 | ||
| 2036 | L_FN2R y-src/parse.c 21 | ||
| 2037 | L_FN2 y-src/parse.c 16 | ||
| 2038 | L_FN3R y-src/parse.c 22 | ||
| 2039 | L_FN3 y-src/parse.c 17 | ||
| 2040 | L_FN4R y-src/parse.c 23 | ||
| 2041 | L_FN4 y-src/parse.c 18 | ||
| 2042 | L_FNNR y-src/parse.c 24 | ||
| 2043 | L_FNN y-src/parse.c 19 | ||
| 2044 | L_getit c-src/etags.c /^L_getit (void)$/ | ||
| 2045 | L_GE y-src/parse.c 27 | ||
| 2046 | __libc_atexit c-src/exit.c 30 | ||
| 2047 | __libc_atexit c-src/exit.strange_suffix 30 | ||
| 2048 | libs merc-src/accumulator.m /^:- import_module libs.$/ | ||
| 2049 | licenze html-src/softwarelibero.html /^Licenze d'uso di un programma$/ | ||
| 2050 | LIGHTBLUE cp-src/screen.hpp 21 | ||
| 2051 | LIGHTCYAN cp-src/screen.hpp 23 | ||
| 2052 | LIGHTGRAY cp-src/screen.hpp 19 | ||
| 2053 | LIGHTGREEN cp-src/screen.hpp 22 | ||
| 2054 | LIGHTMAGENTA cp-src/screen.hpp 25 | ||
| 2055 | LIGHTRED cp-src/screen.hpp 24 | ||
| 2056 | limit cp-src/Range.h /^ double limit (void) const { return rng_limit; }$/ | ||
| 2057 | linebuffer c-src/etags.c 239 | ||
| 2058 | linebuffer_init c-src/etags.c /^linebuffer_init (linebuffer *lbp)$/ | ||
| 2059 | linebuffer_setlen c-src/etags.c /^linebuffer_setlen (linebuffer *lbp, int toksize)$/ | ||
| 2060 | lineCount php-src/lce_functions.php /^ function lineCount($entry)$/ | ||
| 2061 | line c-src/etags.c 2493 | ||
| 2062 | lineno c-src/emacs/src/lisp.h 3147 | ||
| 2063 | lineno c-src/etags.c 2506 | ||
| 2064 | \linenumber tex-src/texinfo.tex /^ \\def\\linenumber{\\the\\inputlineno:\\space}$/ | ||
| 2065 | line perl-src/htlmify-cystic 37 | ||
| 2066 | linepos c-src/etags.c 2507 | ||
| 2067 | linepos c-src/etags.c 2922 | ||
| 2068 | line y-src/parse.y 87 | ||
| 2069 | links html-src/software.html /^Links to interesting software$/ | ||
| 2070 | Lisp_Bits c-src/emacs/src/lisp.h 239 | ||
| 2071 | Lisp_Boolfwd c-src/emacs/src/lisp.h 2284 | ||
| 2072 | Lisp_Bool_Vector c-src/emacs/src/lisp.h 1384 | ||
| 2073 | Lisp_Buffer_Local_Value c-src/emacs/src/lisp.h 2334 | ||
| 2074 | Lisp_Buffer_Objfwd c-src/emacs/src/lisp.h 2302 | ||
| 2075 | Lisp_Char_Table c-src/emacs/src/lisp.h 1575 | ||
| 2076 | Lisp_Compiled c-src/emacs/src/lisp.h 2429 | ||
| 2077 | Lisp_Cons c-src/emacs/src/lisp.h 475 | ||
| 2078 | lisp_eval_depth c-src/emacs/src/lisp.h 3045 | ||
| 2079 | Lisp_Finalizer c-src/emacs/src/lisp.h 2186 | ||
| 2080 | Lisp_Float c-src/emacs/src/lisp.h 2391 | ||
| 2081 | Lisp_Float c-src/emacs/src/lisp.h 477 | ||
| 2082 | Lisp_Free c-src/emacs/src/lisp.h 2201 | ||
| 2083 | Lisp_functions c-src/etags.c /^Lisp_functions (FILE *inf)$/ | ||
| 2084 | Lisp_Fwd_Bool c-src/emacs/src/lisp.h 505 | ||
| 2085 | Lisp_Fwd_Buffer_Obj c-src/emacs/src/lisp.h 507 | ||
| 2086 | Lisp_Fwd c-src/emacs/src/lisp.h 2368 | ||
| 2087 | Lisp_Fwd_Int c-src/emacs/src/lisp.h 504 | ||
| 2088 | Lisp_Fwd_Kboard_Obj c-src/emacs/src/lisp.h 508 | ||
| 2089 | Lisp_Fwd_Obj c-src/emacs/src/lisp.h 506 | ||
| 2090 | Lisp_Fwd_Type c-src/emacs/src/lisp.h 502 | ||
| 2091 | Lisp_Hash_Table c-src/emacs/src/lisp.h 1823 | ||
| 2092 | lisp_h_check_cons_list c-src/emacs/src/lisp.h /^# define lisp_h_check_cons_list() ((void) 0)$/ | ||
| 2093 | lisp_h_CHECK_LIST_CONS c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_LIST_CONS(x, y) CHECK_TYPE (C/ | ||
| 2094 | lisp_h_CHECK_NUMBER c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_NUMBER(x) CHECK_TYPE (INTEGER/ | ||
| 2095 | lisp_h_CHECK_SYMBOL c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_SYMBOL(x) CHECK_TYPE (SYMBOLP/ | ||
| 2096 | lisp_h_CHECK_TYPE c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_TYPE(ok, predicate, x) \\$/ | ||
| 2097 | lisp_h_CONSP c-src/emacs/src/lisp.h /^#define lisp_h_CONSP(x) (XTYPE (x) == Lisp_Cons)$/ | ||
| 2098 | Lisp_help c-src/etags.c 591 | ||
| 2099 | lisp_h_EQ c-src/emacs/src/lisp.h /^#define lisp_h_EQ(x, y) (XLI (x) == XLI (y))$/ | ||
| 2100 | lisp_h_FLOATP c-src/emacs/src/lisp.h /^#define lisp_h_FLOATP(x) (XTYPE (x) == Lisp_Float)/ | ||
| 2101 | lisp_h_INTEGERP c-src/emacs/src/lisp.h /^#define lisp_h_INTEGERP(x) ((XTYPE (x) & (Lisp_Int/ | ||
| 2102 | lisp_h_make_number c-src/emacs/src/lisp.h /^# define lisp_h_make_number(n) \\$/ | ||
| 2103 | lisp_h_MARKERP c-src/emacs/src/lisp.h /^#define lisp_h_MARKERP(x) (MISCP (x) && XMISCTYPE / | ||
| 2104 | lisp_h_MISCP c-src/emacs/src/lisp.h /^#define lisp_h_MISCP(x) (XTYPE (x) == Lisp_Misc)$/ | ||
| 2105 | lisp_h_NILP c-src/emacs/src/lisp.h /^#define lisp_h_NILP(x) EQ (x, Qnil)$/ | ||
| 2106 | lisp_h_SET_SYMBOL_VAL c-src/emacs/src/lisp.h /^#define lisp_h_SET_SYMBOL_VAL(sym, v) \\$/ | ||
| 2107 | lisp_h_SYMBOL_CONSTANT_P c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOL_CONSTANT_P(sym) (XSYMBOL (sy/ | ||
| 2108 | lisp_h_SYMBOLP c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOLP(x) (XTYPE (x) == Lisp_Symbo/ | ||
| 2109 | lisp_h_SYMBOL_VAL c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOL_VAL(sym) \\$/ | ||
| 2110 | lisp_h_VECTORLIKEP c-src/emacs/src/lisp.h /^#define lisp_h_VECTORLIKEP(x) (XTYPE (x) == Lisp_V/ | ||
| 2111 | lisp_h_XCAR c-src/emacs/src/lisp.h /^#define lisp_h_XCAR(c) XCONS (c)->car$/ | ||
| 2112 | lisp_h_XCDR c-src/emacs/src/lisp.h /^#define lisp_h_XCDR(c) XCONS (c)->u.cdr$/ | ||
| 2113 | lisp_h_XCONS c-src/emacs/src/lisp.h /^#define lisp_h_XCONS(a) \\$/ | ||
| 2114 | lisp_h_XFASTINT c-src/emacs/src/lisp.h /^# define lisp_h_XFASTINT(a) XINT (a)$/ | ||
| 2115 | lisp_h_XHASH c-src/emacs/src/lisp.h /^#define lisp_h_XHASH(a) XUINT (a)$/ | ||
| 2116 | lisp_h_XIL c-src/emacs/src/lisp.h /^# define lisp_h_XIL(i) (i)$/ | ||
| 2117 | lisp_h_XIL c-src/emacs/src/lisp.h /^# define lisp_h_XIL(i) ((Lisp_Object) { i })$/ | ||
| 2118 | lisp_h_XINT c-src/emacs/src/lisp.h /^# define lisp_h_XINT(a) (XLI (a) >> INTTYPEBITS)$/ | ||
| 2119 | lisp_h_XLI c-src/emacs/src/lisp.h /^# define lisp_h_XLI(o) (o)$/ | ||
| 2120 | lisp_h_XLI c-src/emacs/src/lisp.h /^# define lisp_h_XLI(o) ((o).i)$/ | ||
| 2121 | lisp_h_XPNTR c-src/emacs/src/lisp.h /^#define lisp_h_XPNTR(a) \\$/ | ||
| 2122 | lisp_h_XSYMBOL c-src/emacs/src/lisp.h /^# define lisp_h_XSYMBOL(a) \\$/ | ||
| 2123 | lisp_h_XTYPE c-src/emacs/src/lisp.h /^# define lisp_h_XTYPE(a) ((enum Lisp_Type) (XLI (a/ | ||
| 2124 | lisp_h_XUNTAG c-src/emacs/src/lisp.h /^# define lisp_h_XUNTAG(a, type) ((void *) (intptr_/ | ||
| 2125 | LISP_INITIALLY c-src/emacs/src/lisp.h /^#define LISP_INITIALLY(i) (i)$/ | ||
| 2126 | LISP_INITIALLY c-src/emacs/src/lisp.h /^#define LISP_INITIALLY(i) {i}$/ | ||
| 2127 | LISP_INITIALLY_ZERO c-src/emacs/src/lisp.h 582 | ||
| 2128 | Lisp_Int0 c-src/emacs/src/lisp.h 461 | ||
| 2129 | Lisp_Int1 c-src/emacs/src/lisp.h 462 | ||
| 2130 | Lisp_Intfwd c-src/emacs/src/lisp.h 2274 | ||
| 2131 | Lisp_Kboard_Objfwd c-src/emacs/src/lisp.h 2362 | ||
| 2132 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^#define LISP_MACRO_DEFUN(name, type, argdecls, arg/ | ||
| 2133 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (CONSP, bool, (Lisp_Object x), (x/ | ||
| 2134 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (NILP, bool, (Lisp_Object x), (x)/ | ||
| 2135 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (SYMBOL_VAL, Lisp_Object, (struct/ | ||
| 2136 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XCAR, Lisp_Object, (Lisp_Object / | ||
| 2137 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XCONS, struct Lisp_Cons *, (Lisp/ | ||
| 2138 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XHASH, EMACS_INT, (Lisp_Object a/ | ||
| 2139 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XLI, EMACS_INT, (Lisp_Object o),/ | ||
| 2140 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XPNTR, void *, (Lisp_Object a), / | ||
| 2141 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^#define LISP_MACRO_DEFUN_VOID(name, argdecls, args/ | ||
| 2142 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (CHECK_LIST_CONS, (Lisp_Obje/ | ||
| 2143 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (CHECK_TYPE,$/ | ||
| 2144 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (SET_SYMBOL_VAL,$/ | ||
| 2145 | Lisp_Marker c-src/emacs/src/lisp.h 1978 | ||
| 2146 | Lisp_Misc_Any c-src/emacs/src/lisp.h 1971 | ||
| 2147 | Lisp_Misc c-src/emacs/src/lisp.h 2212 | ||
| 2148 | Lisp_Misc c-src/emacs/src/lisp.h 458 | ||
| 2149 | Lisp_Misc_Finalizer c-src/emacs/src/lisp.h 491 | ||
| 2150 | Lisp_Misc_Float c-src/emacs/src/lisp.h 494 | ||
| 2151 | Lisp_Misc_Free c-src/emacs/src/lisp.h 487 | ||
| 2152 | Lisp_Misc_Limit c-src/emacs/src/lisp.h 496 | ||
| 2153 | Lisp_Misc_Marker c-src/emacs/src/lisp.h 488 | ||
| 2154 | Lisp_Misc_Overlay c-src/emacs/src/lisp.h 489 | ||
| 2155 | Lisp_Misc_Save_Value c-src/emacs/src/lisp.h 490 | ||
| 2156 | Lisp_Misc_Type c-src/emacs/src/lisp.h 485 | ||
| 2157 | Lisp_Object c-src/emacs/src/lisp.h 567 | ||
| 2158 | Lisp_Object c-src/emacs/src/lisp.h 577 | ||
| 2159 | Lisp_Objfwd c-src/emacs/src/lisp.h 2294 | ||
| 2160 | Lisp_Overlay c-src/emacs/src/lisp.h 2021 | ||
| 2161 | Lisp_Save_Type c-src/emacs/src/lisp.h 2064 | ||
| 2162 | Lisp_Save_Value c-src/emacs/src/lisp.h 2110 | ||
| 2163 | Lisp_String c-src/emacs/src/lisp.h 466 | ||
| 2164 | Lisp_Sub_Char_Table c-src/emacs/src/lisp.h 1606 | ||
| 2165 | Lisp_Subr c-src/emacs/src/lisp.h 1670 | ||
| 2166 | Lisp_suffixes c-src/etags.c 589 | ||
| 2167 | Lisp_Symbol c-src/emacs/src/lisp.h 454 | ||
| 2168 | Lisp_Symbol c-src/emacs/src/lisp.h 654 | ||
| 2169 | \lisp tex-src/texinfo.tex /^\\def\\lisp{\\aboveenvbreak$/ | ||
| 2170 | Lisp_Type c-src/emacs/src/lisp.h 451 | ||
| 2171 | Lisp_Vector c-src/emacs/src/lisp.h 1369 | ||
| 2172 | Lisp_Vectorlike c-src/emacs/src/lisp.h 472 | ||
| 2173 | lispy_accent_codes c-src/emacs/src/keyboard.c 4634 | ||
| 2174 | lispy_accent_keys c-src/emacs/src/keyboard.c 4741 | ||
| 2175 | lispy_drag_n_drop_names c-src/emacs/src/keyboard.c 5181 | ||
| 2176 | lispy_function_keys c-src/emacs/src/keyboard.c 4768 | ||
| 2177 | lispy_function_keys c-src/emacs/src/keyboard.c 5065 | ||
| 2178 | lispy_kana_keys c-src/emacs/src/keyboard.c 5026 | ||
| 2179 | lispy_modifier_list c-src/emacs/src/keyboard.c /^lispy_modifier_list (int modifiers)$/ | ||
| 2180 | lispy_multimedia_keys c-src/emacs/src/keyboard.c 4962 | ||
| 2181 | lispy_wheel_names c-src/emacs/src/keyboard.c 5174 | ||
| 2182 | list2i c-src/emacs/src/lisp.h /^list2i (EMACS_INT x, EMACS_INT y)$/ | ||
| 2183 | list3i c-src/emacs/src/lisp.h /^list3i (EMACS_INT x, EMACS_INT y, EMACS_INT w)$/ | ||
| 2184 | list4i c-src/emacs/src/lisp.h /^list4i (EMACS_INT x, EMACS_INT y, EMACS_INT w, EMA/ | ||
| 2185 | LISTCONTENTSBUTTON objc-src/PackInsp.m 48 | ||
| 2186 | LISTCONTENTS objc-src/PackInsp.m 39 | ||
| 2187 | list c-src/emacs/src/gmalloc.c 186 | ||
| 2188 | LISTDESCRIPTIONBUTTON objc-src/PackInsp.m 49 | ||
| 2189 | ListEdit pyt-src/server.py /^class ListEdit(Frame):$/ | ||
| 2190 | list merc-src/accumulator.m /^:- import_module list.$/ | ||
| 2191 | list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun list-tags (file &optional _next-match)$/ | ||
| 2192 | list-tags-function el-src/emacs/lisp/progmodes/etags.el /^(defvar list-tags-function nil$/ | ||
| 2193 | list_to_ord_set prol-src/ordsets.prolog /^list_to_ord_set(List, Set) :-$/ | ||
| 2194 | LL_Assert/p ada-src/2ataspri.adb /^ procedure LL_Assert (B : Boolean; M : String) i/ | ||
| 2195 | LL_Assert/p ada-src/2ataspri.ads /^ procedure LL_Assert (B : Boolean; M : String);$/ | ||
| 2196 | L_LE y-src/parse.c 25 | ||
| 2197 | LL_Task_Procedure_Access/t ada-src/2ataspri.ads /^ type LL_Task_Procedure_Access is access procedu/ | ||
| 2198 | LL_Task_Procedure_Access/t ada-src/etags-test-for.ada /^ type LL_Task_Procedure_Access is access procedu/ | ||
| 2199 | LL_Wrapper/p ada-src/2ataspri.adb /^ procedure LL_Wrapper (T : TCB_Ptr);$/ | ||
| 2200 | LL_Wrapper/p ada-src/2ataspri.adb /^ procedure LL_Wrapper (T : TCB_Ptr) is$/ | ||
| 2201 | LL_Wrapper/p ada-src/etags-test-for.ada /^ procedure LL_Wrapper (T : TCB_Ptr);$/ | ||
| 2202 | L_NE y-src/parse.c 26 | ||
| 2203 | lno c-src/etags.c 223 | ||
| 2204 | /lnormalize ps-src/rfc1245.ps /^\/lnormalize { $/ | ||
| 2205 | loadContentsOf objc-src/PackInsp.m /^-loadContentsOf:(const char *)type inTable:(HashTa/ | ||
| 2206 | loadImage objc-src/PackInsp.m /^-loadImage$/ | ||
| 2207 | loadKeyValuesFrom objc-src/PackInsp.m /^-loadKeyValuesFrom:(const char *)type inTable:(Has/ | ||
| 2208 | load objc-src/PackInsp.m /^-load$/ | ||
| 2209 | loadPORManager php-src/lce_functions.php /^ function &loadPORManager()$/ | ||
| 2210 | local_if_set c-src/emacs/src/lisp.h 2338 | ||
| 2211 | LOCALIZE_ARCH objc-src/PackInsp.m /^#define LOCALIZE_ARCH(s) NXLoadLocalizedStringFrom/ | ||
| 2212 | LOCALIZE objc-src/PackInsp.m /^#define LOCALIZE(s) NXLoadLocalizedStringFromTabl/ | ||
| 2213 | Locate pas-src/common.pas /^function Locate; (*($/ | ||
| 2214 | location cp-src/clheir.hpp 33 | ||
| 2215 | location cp-src/clheir.hpp /^ location() { }$/ | ||
| 2216 | LOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define LOCK_ALIGNED_BLOCKS() \\$/ | ||
| 2217 | LOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define LOCK_ALIGNED_BLOCKS()$/ | ||
| 2218 | LOCK c-src/emacs/src/gmalloc.c /^#define LOCK() \\$/ | ||
| 2219 | LOCK c-src/emacs/src/gmalloc.c /^#define LOCK()$/ | ||
| 2220 | Lock/t ada-src/2ataspri.ads /^ type Lock is$/ | ||
| 2221 | Lock/t ada-src/2ataspri.ads /^ type Lock is private;$/ | ||
| 2222 | \loggingall tex-src/texinfo.tex /^\\def\\loggingall{\\tracingcommands2 \\tracingstats2 $/ | ||
| 2223 | LONG_TYPE_SIZE y-src/cccp.y 95 | ||
| 2224 | LOOKING_AT c-src/etags.c /^#define LOOKING_AT(cp, kw) \/* kw is the keyword, / | ||
| 2225 | LOOKING_AT_NOCASE c-src/etags.c /^#define LOOKING_AT_NOCASE(cp, kw) \/* the keyword i/ | ||
| 2226 | lookup_call merc-src/accumulator.m /^:- pred lookup_call(accu_goal_store::in, accu_goal/ | ||
| 2227 | LOOKUP objc-src/PackInsp.m 176 | ||
| 2228 | LOOKUP objc-src/PackInsp.m /^#define LOOKUP(key, notfound) ([table isKey:key] ?/ | ||
| 2229 | lookup y-src/cccp.y /^lookup (name, len, hash)$/ | ||
| 2230 | LOOP_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}$/ | ||
| 2232 | lowcase c-src/etags.c /^#define lowcase(c) tolower (CHAR (c))$/ | ||
| 2233 | \lowercaseenumerate tex-src/texinfo.tex /^\\def\\lowercaseenumerate{%$/ | ||
| 2234 | LowerCaseNmStr 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/ | ||
| 2237 | L_RANGE y-src/parse.c 11 | ||
| 2238 | LSH y-src/cccp.c 16 | ||
| 2239 | \l tex-src/texinfo.tex /^\\def\\l#1{{\\li #1}\\null} % $/ | ||
| 2240 | LTGT cp-src/MDiagArray2.h 144 | ||
| 2241 | LTGT cp-src/MDiagArray2.h 35 | ||
| 2242 | LTGT cp-src/MDiagArray2.h 39 | ||
| 2243 | LTGT cp-src/MDiagArray2.h 42 | ||
| 2244 | Lua_functions c-src/etags.c /^Lua_functions (FILE *inf)$/ | ||
| 2245 | Lua_help c-src/etags.c 600 | ||
| 2246 | LUASRC make-src/Makefile /^LUASRC=allegro.lua$/ | ||
| 2247 | Lua_suffixes c-src/etags.c 598 | ||
| 2248 | lucid_event_type_list_p c-src/emacs/src/keyboard.c /^lucid_event_type_list_p (Lisp_Object object)$/ | ||
| 2249 | L_VAR y-src/parse.c 12 | ||
| 2250 | \lvvmode tex-src/texinfo.tex /^\\def\\lvvmode{\\vbox to 0pt{}}$/ | ||
| 2251 | mabort c-src/emacs/src/gmalloc.c /^mabort (enum mcheck_status status)$/ | ||
| 2252 | mach_host_self c-src/machsyscalls.h /^SYSCALL (mach_host_self, -29,$/ | ||
| 2253 | Machine_Exceptions/t ada-src/2ataspri.ads /^ type Machine_Exceptions is new Interfaces.C.POS/ | ||
| 2254 | Machin_T/b ada-src/waroquiers.ada /^ protected body Machin_T is$/ | ||
| 2255 | Machin_T/t ada-src/etags-test-for.ada /^ protected Machin_T is$/ | ||
| 2256 | Machin_T/t ada-src/etags-test-for.ada /^ protected type Machin_T is$/ | ||
| 2257 | Machin_T/t ada-src/waroquiers.ada /^ protected type Machin_T is$/ | ||
| 2258 | mach_msg_trap c-src/machsyscalls.h /^SYSCALL (mach_msg_trap, -25,$/ | ||
| 2259 | mach_reply_port c-src/machsyscalls.h /^SYSCALL (mach_reply_port, -26,$/ | ||
| 2260 | mach_task_self c-src/machsyscalls.h /^SYSCALL (mach_task_self, -28,$/ | ||
| 2261 | mach_thread_self c-src/machsyscalls.h /^SYSCALL (mach_thread_self, -27,$/ | ||
| 2262 | MAGENTA cp-src/screen.hpp 17 | ||
| 2263 | MAGICBYTE c-src/emacs/src/gmalloc.c 1856 | ||
| 2264 | magic c-src/emacs/src/gmalloc.c 1863 | ||
| 2265 | MAGICFREE c-src/emacs/src/gmalloc.c 1855 | ||
| 2266 | MAGICWORD c-src/emacs/src/gmalloc.c 1854 | ||
| 2267 | maintaining.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{%$/ | ||
| 2270 | make-abbrev-table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/ | ||
| 2271 | make_coor prol-src/natded.prolog /^make_coor(s(_),Alpha,Sem1,Sem2,Alpha@Sem1@Sem2).$/ | ||
| 2272 | make_C_tag c-src/etags.c /^make_C_tag (bool isfun)$/ | ||
| 2273 | make_ctrl_char c-src/emacs/src/keyboard.c /^make_ctrl_char (int c)$/ | ||
| 2274 | MakeDispose pyt-src/server.py /^ def MakeDispose(self):$/ | ||
| 2275 | Makefile_filenames c-src/etags.c 603 | ||
| 2276 | Makefile_help c-src/etags.c 605 | ||
| 2277 | Makefile_targets c-src/etags.c /^Makefile_targets (FILE *inf)$/ | ||
| 2278 | make_fixnum_or_float c-src/emacs/src/lisp.h /^#define make_fixnum_or_float(val) \\$/ | ||
| 2279 | make_formatted_string c-src/emacs/src/lisp.h /^extern Lisp_Object make_formatted_string (char *, / | ||
| 2280 | make_lisp_ptr c-src/emacs/src/lisp.h /^make_lisp_ptr (void *ptr, enum Lisp_Type type)$/ | ||
| 2281 | make_lisp_symbol c-src/emacs/src/lisp.h /^make_lisp_symbol (struct Lisp_Symbol *sym)$/ | ||
| 2282 | make_lispy_event c-src/emacs/src/keyboard.c /^make_lispy_event (struct input_event *event)$/ | ||
| 2283 | make_lispy_focus_in c-src/emacs/src/keyboard.c /^make_lispy_focus_in (Lisp_Object frame)$/ | ||
| 2284 | make_lispy_focus_out c-src/emacs/src/keyboard.c /^make_lispy_focus_out (Lisp_Object frame)$/ | ||
| 2285 | make_lispy_movement c-src/emacs/src/keyboard.c /^make_lispy_movement (struct frame *frame, Lisp_Obj/ | ||
| 2286 | make_lispy_position c-src/emacs/src/keyboard.c /^make_lispy_position (struct frame *f, Lisp_Object / | ||
| 2287 | make_lispy_switch_frame c-src/emacs/src/keyboard.c /^make_lispy_switch_frame (Lisp_Object frame)$/ | ||
| 2288 | MAKE make-src/Makefile /^MAKE:=$(MAKE) --no-print-directory$/ | ||
| 2289 | make_number c-src/emacs/src/lisp.h /^# define make_number(n) lisp_h_make_number (n)$/ | ||
| 2290 | make_pointer_integer c-src/emacs/src/lisp.h /^make_pointer_integer (void *p)$/ | ||
| 2291 | make_scroll_bar_position c-src/emacs/src/keyboard.c /^make_scroll_bar_position (struct input_event *ev, / | ||
| 2292 | MakeSitelist pyt-src/server.py /^ def MakeSitelist(self, master):$/ | ||
| 2293 | MAKESRC make-src/Makefile /^MAKESRC=Makefile$/ | ||
| 2294 | make_tag c-src/etags.c /^make_tag (const char *name, \/* tag name, or NULL / | ||
| 2295 | make_uninit_sub_char_table c-src/emacs/src/lisp.h /^make_uninit_sub_char_table (int depth, int min_cha/ | ||
| 2296 | make_uninit_vector c-src/emacs/src/lisp.h /^make_uninit_vector (ptrdiff_t size)$/ | ||
| 2297 | malloc_atfork_handler_child c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_child (void)$/ | ||
| 2298 | malloc_atfork_handler_parent c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_parent (void)$/ | ||
| 2299 | malloc_atfork_handler_prepare c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_prepare (void)$/ | ||
| 2300 | malloc c-src/emacs/src/gmalloc.c 1715 | ||
| 2301 | malloc c-src/emacs/src/gmalloc.c 64 | ||
| 2302 | malloc c-src/emacs/src/gmalloc.c 68 | ||
| 2303 | malloc 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)$/ | ||
| 2305 | malloc c-src/emacs/src/gmalloc.c /^malloc (size_t size)$/ | ||
| 2306 | malloc_enable_thread c-src/emacs/src/gmalloc.c /^malloc_enable_thread (void)$/ | ||
| 2307 | __malloc_extra_blocks c-src/emacs/src/gmalloc.c 381 | ||
| 2308 | MALLOCFLOOD c-src/emacs/src/gmalloc.c 1857 | ||
| 2309 | mallochook c-src/emacs/src/gmalloc.c /^mallochook (size_t size)$/ | ||
| 2310 | malloc_info c-src/emacs/src/gmalloc.c 167 | ||
| 2311 | malloc_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 | ||
| 2318 | man manpage make-src/Makefile /^man manpage: etags.1.man$/ | ||
| 2319 | /manualpapersize ps-src/rfc1245.ps /^\/manualpapersize {$/ | ||
| 2320 | MANY c-src/emacs/src/lisp.h 2833 | ||
| 2321 | mao c-src/h.h 101 | ||
| 2322 | map c-src/emacs/src/keyboard.c 8748 | ||
| 2323 | map merc-src/accumulator.m /^:- import_module map.$/ | ||
| 2324 | mapping html-src/algrthms.html /^Mapping the Channel Symbols$/ | ||
| 2325 | mapsyn prol-src/natded.prolog /^mapsyn(A\/B,AM\/BM):-$/ | ||
| 2326 | map_word prol-src/natded.prolog /^map_word([[_]|Ws],Exp):-$/ | ||
| 2327 | MARKERP c-src/emacs/src/lisp.h /^# define MARKERP(x) lisp_h_MARKERP (x)$/ | ||
| 2328 | mark_kboards c-src/emacs/src/keyboard.c /^mark_kboards (void)$/ | ||
| 2329 | \math tex-src/texinfo.tex /^\\def\\math#1{\\implicitmath #1\\implicitmath}$/ | ||
| 2330 | MAX_ALLOCA c-src/emacs/src/lisp.h 4556 | ||
| 2331 | max_args c-src/emacs/src/lisp.h 1686 | ||
| 2332 | maxargs c-src/emacs/src/lisp.h 2831 | ||
| 2333 | max c.c /^__attribute__ ((always_inline)) max (int a, int b)/ | ||
| 2334 | max c.c /^max (int a, int b)$/ | ||
| 2335 | max cp-src/conway.cpp /^#define max(x,y) ((x > y) ? x : y)$/ | ||
| 2336 | max c-src/emacs/src/lisp.h 58 | ||
| 2337 | max c-src/emacs/src/lisp.h /^#define max(a, b) ((a) > (b) ? (a) : (b))$/ | ||
| 2338 | MAX_ENCODED_BYTES c-src/emacs/src/keyboard.c 2254 | ||
| 2339 | MAX_HASH_VALUE c-src/etags.c 2329 | ||
| 2340 | max_num_directions cp-src/clheir.hpp 31 | ||
| 2341 | max_num_generic_objects cp-src/clheir.cpp 9 | ||
| 2342 | MAXPATHLEN c-src/etags.c 115 | ||
| 2343 | /max ps-src/rfc1245.ps /^\/max {2 copy lt {exch} if pop} bind def$/ | ||
| 2344 | MAX_WORD_LENGTH c-src/etags.c 2327 | ||
| 2345 | maybe_gc c-src/emacs/src/lisp.h /^maybe_gc (void)$/ | ||
| 2346 | maybe merc-src/accumulator.m /^:- import_module maybe.$/ | ||
| 2347 | MAYBEREL y-src/parse.y /^#define MAYBEREL(p) (*(p)=='[' && (isdigit((p)[1])/ | ||
| 2348 | MBYTES objc-src/PackInsp.m 59 | ||
| 2349 | Mcccp y-src/cccp.y /^main ()$/ | ||
| 2350 | Mc cp-src/c.C /^int main (void) { my_function0(0); my_function1(1)/ | ||
| 2351 | mcCSC cp-src/c.C 6 | ||
| 2352 | mcheck c-src/emacs/src/gmalloc.c /^mcheck (void (*func) (enum mcheck_status))$/ | ||
| 2353 | MCHECK_DISABLED c-src/emacs/src/gmalloc.c 285 | ||
| 2354 | MCHECK_FREE c-src/emacs/src/gmalloc.c 287 | ||
| 2355 | MCHECK_HEAD c-src/emacs/src/gmalloc.c 288 | ||
| 2356 | MCHECK_OK c-src/emacs/src/gmalloc.c 286 | ||
| 2357 | mcheck_status c-src/emacs/src/gmalloc.c 283 | ||
| 2358 | MCHECK_TAIL c-src/emacs/src/gmalloc.c 289 | ||
| 2359 | mcheck_used c-src/emacs/src/gmalloc.c 2012 | ||
| 2360 | Mconway.cpp cp-src/conway.cpp /^void main(void)$/ | ||
| 2361 | mdbcomp merc-src/accumulator.m /^:- import_module mdbcomp.$/ | ||
| 2362 | MDiagArray2 cp-src/MDiagArray2.h 78 | ||
| 2363 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const Array<T>& a) : DiagArray2<T> / | ||
| 2364 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const DiagArray2<T>& a) : DiagArray/ | ||
| 2365 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const MDiagArray2<T>& a) : DiagArra/ | ||
| 2366 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (int r, int c, const T& val) : DiagA/ | ||
| 2367 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (int r, int c) : DiagArray2<T> (r, c/ | ||
| 2368 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (T *d, int r, int c) : DiagArray2<T>/ | ||
| 2369 | ~MDiagArray2 cp-src/MDiagArray2.h /^ ~MDiagArray2 (void) { }$/ | ||
| 2370 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (void) : DiagArray2<T> () { }$/ | ||
| 2371 | me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ | ||
| 2372 | me22b lua-src/test.lua /^ local function test.me22b (one)$/ | ||
| 2373 | memalign c-src/emacs/src/gmalloc.c /^memalign (size_t alignment, size_t size)$/ | ||
| 2374 | member_lessthan_goalid merc-src/accumulator.m /^:- pred member_lessthan_goalid(accu_goal_store::in/ | ||
| 2375 | member prol-src/natded.prolog /^member(X,[X|_]).$/ | ||
| 2376 | memclear c-src/emacs/src/lisp.h /^memclear (void *p, ptrdiff_t nbytes)$/ | ||
| 2377 | menu_bar_item c-src/emacs/src/keyboard.c /^menu_bar_item (Lisp_Object key, Lisp_Object item, / | ||
| 2378 | menu_bar_items c-src/emacs/src/keyboard.c /^menu_bar_items (Lisp_Object old)$/ | ||
| 2379 | menu_bar_items_index c-src/emacs/src/keyboard.c 7369 | ||
| 2380 | menu_bar_items_vector c-src/emacs/src/keyboard.c 7368 | ||
| 2381 | menu_bar_one_keymap_changed_items c-src/emacs/src/keyboard.c 7363 | ||
| 2382 | menu_item_eval_property_1 c-src/emacs/src/keyboard.c /^menu_item_eval_property_1 (Lisp_Object arg)$/ | ||
| 2383 | menu_item_eval_property c-src/emacs/src/keyboard.c /^menu_item_eval_property (Lisp_Object sexpr)$/ | ||
| 2384 | menu_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{}$/ | ||
| 2386 | Metags c-src/etags.c /^main (int argc, char **argv)$/ | ||
| 2387 | metasource c-src/etags.c 198 | ||
| 2388 | Mfail cp-src/fail.C /^main()$/ | ||
| 2389 | min_args c-src/emacs/src/lisp.h 1686 | ||
| 2390 | min_char c-src/emacs/src/lisp.h 1621 | ||
| 2391 | min cp-src/conway.cpp /^#define min(x,y) ((x > y) ? y : x)$/ | ||
| 2392 | min c-src/emacs/src/gmalloc.c /^#define min(a, b) ((a) < (b) ? (a) : (b))$/ | ||
| 2393 | min c-src/emacs/src/lisp.h 57 | ||
| 2394 | min c-src/emacs/src/lisp.h /^#define min(a, b) ((a) < (b) ? (a) : (b))$/ | ||
| 2395 | MIN_HASH_VALUE c-src/etags.c 2328 | ||
| 2396 | /min ps-src/rfc1245.ps /^\/min {2 copy gt {exch} if pop} bind def$/ | ||
| 2397 | minus cp-src/functions.cpp /^void Date::minus ( int days , int month , int year/ | ||
| 2398 | \minus tex-src/texinfo.tex /^\\def\\minus{$-$}$/ | ||
| 2399 | MIN_WORD_LENGTH c-src/etags.c 2326 | ||
| 2400 | MISCP c-src/emacs/src/lisp.h /^# define MISCP(x) lisp_h_MISCP (x)$/ | ||
| 2401 | miti html-src/softwarelibero.html /^Sfatiamo alcuni miti$/ | ||
| 2402 | Mkai-test.pl perl-src/kai-test.pl /^package main;$/ | ||
| 2403 | modifier_names c-src/emacs/src/keyboard.c 6319 | ||
| 2404 | modifier_symbols c-src/emacs/src/keyboard.c 6327 | ||
| 2405 | modify_event_symbol c-src/emacs/src/keyboard.c /^modify_event_symbol (ptrdiff_t symbol_num, int mod/ | ||
| 2406 | module_class_method ruby-src/test.rb /^ def ModuleExample.module_class_method$/ | ||
| 2407 | ModuleExample ruby-src/test.rb /^module ModuleExample$/ | ||
| 2408 | module_instance_method ruby-src/test.rb /^ def module_instance_method$/ | ||
| 2409 | more_aligned_int c.c 165 | ||
| 2410 | morecore_nolock c-src/emacs/src/gmalloc.c /^morecore_nolock (size_t size)$/ | ||
| 2411 | morecore_recursing c-src/emacs/src/gmalloc.c 604 | ||
| 2412 | More_Lisp_Bits c-src/emacs/src/lisp.h 801 | ||
| 2413 | more= ruby-src/test1.ru /^ :more$/ | ||
| 2414 | MOST_NEGATIVE_FIXNUM c-src/emacs/src/lisp.h 835 | ||
| 2415 | MOST_POSITIVE_FIXNUM c-src/emacs/src/lisp.h 834 | ||
| 2416 | mouse_syms c-src/emacs/src/keyboard.c 4627 | ||
| 2417 | move cp-src/clheir.cpp /^void agent::move(int direction)$/ | ||
| 2418 | MOVE c-src/sysdep.h /^#define MOVE(x,y) movl x, y$/ | ||
| 2419 | MoveLayerAfter lua-src/allegro.lua /^function MoveLayerAfter (this_one)$/ | ||
| 2420 | MoveLayerBefore lua-src/allegro.lua /^function MoveLayerBefore (this_one)$/ | ||
| 2421 | MoveLayerBottom lua-src/allegro.lua /^function MoveLayerBottom ()$/ | ||
| 2422 | MoveLayerTop lua-src/allegro.lua /^function MoveLayerTop ()$/ | ||
| 2423 | mprobe c-src/emacs/src/gmalloc.c /^mprobe (void *ptr)$/ | ||
| 2424 | /M ps-src/rfc1245.ps /^\/M {newpath moveto} bind def$/ | ||
| 2425 | MSDOS c-src/etags.c 100 | ||
| 2426 | MSDOS c-src/etags.c 106 | ||
| 2427 | MSDOS c-src/etags.c 107 | ||
| 2428 | MSDOS c-src/etags.c 110 | ||
| 2429 | msgid php-src/lce_functions.php /^ function msgid($line, $class)$/ | ||
| 2430 | MSGSEL f-src/entry.for /^ ENTRY MSGSEL ( TYPE )$/ | ||
| 2431 | MSGSEL f-src/entry.strange /^ ENTRY MSGSEL ( TYPE )$/ | ||
| 2432 | MSGSEL f-src/entry.strange_suffix /^ ENTRY MSGSEL ( TYPE )$/ | ||
| 2433 | msgstr php-src/lce_functions.php /^ function msgstr($line, $class)$/ | ||
| 2434 | /ms ps-src/rfc1245.ps /^\/ms { $/ | ||
| 2435 | mstats c-src/emacs/src/gmalloc.c 308 | ||
| 2436 | Mtest1.go go-src/test1.go 1 | ||
| 2437 | Mtest1.go go-src/test1.go /^func main() {$/ | ||
| 2438 | Mtest.go go-src/test.go 1 | ||
| 2439 | Mtest.go go-src/test.go /^func main() {$/ | ||
| 2440 | Mtest.rs rs-src/test.rs /^fn main() {$/ | ||
| 2441 | mtg html-src/software.html /^MTG$/ | ||
| 2442 | mt prol-src/natded.prolog /^mt:-$/ | ||
| 2443 | multibyte c-src/emacs/src/regex.h 403 | ||
| 2444 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c 6231 | ||
| 2445 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c 6764 | ||
| 2446 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c /^#define MULTI_LETTER_MOD(BIT, NAME, LEN) \\$/ | ||
| 2447 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c /^#define MULTI_LETTER_MOD(BIT, NAME, LEN) \\$/ | ||
| 2448 | multi_line c-src/etags.c 267 | ||
| 2449 | Mx.cc cp-src/x.cc /^main(int argc, char *argv[])$/ | ||
| 2450 | \mylbrace tex-src/texinfo.tex /^\\def\\mylbrace {{\\tt \\char '173}}$/ | ||
| 2451 | mypi forth-src/test-forth.fth /^synonym mypi fconst$/ | ||
| 2452 | my_printf c.c /^my_printf (void *my_object, const char *my_format,/ | ||
| 2453 | \myrbrace tex-src/texinfo.tex /^\\def\\myrbrace {{\\tt \\char '175}}$/ | ||
| 2454 | my_struct c.c 226 | ||
| 2455 | my_struct c-src/h.h 91 | ||
| 2456 | my_typedef c.c 228 | ||
| 2457 | my_typedef c-src/h.h 93 | ||
| 2458 | name c-src/emacs/src/keyboard.c 7241 | ||
| 2459 | name c-src/emacs/src/lisp.h 1808 | ||
| 2460 | name c-src/emacs/src/lisp.h 3144 | ||
| 2461 | name c-src/emacs/src/lisp.h 682 | ||
| 2462 | name c-src/etags.c 192 | ||
| 2463 | name c-src/etags.c 218 | ||
| 2464 | name c-src/etags.c 2271 | ||
| 2465 | name c-src/etags.c 261 | ||
| 2466 | name c-src/getopt.h 76 | ||
| 2467 | name c-src/getopt.h 78 | ||
| 2468 | named c-src/etags.c 2505 | ||
| 2469 | NameHasChar pas-src/common.pas /^function NameHasChar; (* (TheName : NameString; Th/ | ||
| 2470 | name perl-src/htlmify-cystic 357 | ||
| 2471 | namestringequal pas-src/common.pas /^function namestringequal;(*(var Name1,Name2 : Name/ | ||
| 2472 | NameStringLess pas-src/common.pas /^function NameStringLess;(*(var Name1,Name2 : NameS/ | ||
| 2473 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Function}%$/ | ||
| 2474 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Macro}%$/ | ||
| 2475 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Special Form}%$/ | ||
| 2476 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{User Option}%$/ | ||
| 2477 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Variable}%$/ | ||
| 2478 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\deftpargs{#3}\\endgrou/ | ||
| 2479 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defunargs{#3}\\endgrou/ | ||
| 2480 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defvarargs{#3}\\endgro/ | ||
| 2481 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defcvtype{} of #1}%$/ | ||
| 2482 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defoptype{} on #1}%$/ | ||
| 2483 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{Instance Variable of #1}%/ | ||
| 2484 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{Method on #1}%$/ | ||
| 2485 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#1} #2}{Function}%$/ | ||
| 2486 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#1} #2}{Variable}%$/ | ||
| 2487 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#2} #3}{#1}%$/ | ||
| 2488 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#2} #3}{#1}$/ | ||
| 2489 | NAME y-src/cccp.c 8 | ||
| 2490 | name y-src/cccp.y 113 | ||
| 2491 | name y-src/cccp.y 43 | ||
| 2492 | nargs c-src/emacs/src/lisp.h 2987 | ||
| 2493 | NATNUMP c-src/emacs/src/lisp.h /^NATNUMP (Lisp_Object x)$/ | ||
| 2494 | /nbluet ps-src/rfc1245.ps /^\/nbluet 256 array def$/ | ||
| 2495 | n c-src/exit.c 28 | ||
| 2496 | n c-src/exit.strange_suffix 28 | ||
| 2497 | NDEBUG c-src/etags.c 88 | ||
| 2498 | need_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{%$/ | ||
| 2501 | NEG y-src/parse.c 9 | ||
| 2502 | neighbors cp-src/clheir.hpp 59 | ||
| 2503 | nelem cp-src/Range.h /^ int nelem (void) const { return rng_nelem; }$/ | ||
| 2504 | nestlev c-src/etags.c 2525 | ||
| 2505 | \newcodeindex tex-src/texinfo.tex /^\\def\\newcodeindex #1{$/ | ||
| 2506 | \newindex tex-src/texinfo.tex /^\\def\\newindex #1{$/ | ||
| 2507 | NewLayer lua-src/allegro.lua /^function NewLayer (name, x, y, w, h)$/ | ||
| 2508 | NewLayerSet lua-src/allegro.lua /^function NewLayerSet (name)$/ | ||
| 2509 | newlb c-src/etags.c 2930 | ||
| 2510 | newlinepos c-src/etags.c 2932 | ||
| 2511 | NewNameString pas-src/common.pas /^procedure NewNameString; (* (var NSP: NameStringPo/ | ||
| 2512 | new objc-src/PackInsp.m /^+new$/ | ||
| 2513 | new perl-src/htlmify-cystic 163 | ||
| 2514 | new_tag perl-src/htlmify-cystic 18 | ||
| 2515 | newtextstring pas-src/common.pas /^function newtextstring; (*: TextString;*)$/ | ||
| 2516 | next_alive cp-src/conway.hpp 7 | ||
| 2517 | next_almost_prime c-src/emacs/src/lisp.h /^extern EMACS_INT next_almost_prime (EMACS_INT) ATT/ | ||
| 2518 | NEXT_ALMOST_PRIME_LIMIT c-src/emacs/src/lisp.h 3573 | ||
| 2519 | next c.c 174 | ||
| 2520 | next c-src/emacs/src/gmalloc.c 164 | ||
| 2521 | next c-src/emacs/src/gmalloc.c 188 | ||
| 2522 | next c-src/emacs/src/gmalloc.c 198 | ||
| 2523 | next c-src/emacs/src/keyboard.c 7246 | ||
| 2524 | next c-src/emacs/src/keyboard.c 861 | ||
| 2525 | next c-src/emacs/src/lisp.h 1848 | ||
| 2526 | next c-src/emacs/src/lisp.h 2009 | ||
| 2527 | next c-src/emacs/src/lisp.h 2037 | ||
| 2528 | next c-src/emacs/src/lisp.h 2192 | ||
| 2529 | next c-src/emacs/src/lisp.h 3028 | ||
| 2530 | next c-src/emacs/src/lisp.h 3134 | ||
| 2531 | next c-src/emacs/src/lisp.h 700 | ||
| 2532 | next c-src/etags.c 203 | ||
| 2533 | next-file el-src/emacs/lisp/progmodes/etags.el /^(defun next-file (&optional initialize novisit)$/ | ||
| 2534 | next-file-list el-src/emacs/lisp/progmodes/etags.el /^(defvar next-file-list nil$/ | ||
| 2535 | next_free c-src/emacs/src/lisp.h 1851 | ||
| 2536 | nextfree c-src/emacs/src/lisp.h 3029 | ||
| 2537 | \next tex-src/texinfo.tex /^\\def\\next##1{}\\next}$/ | ||
| 2538 | next_weak c-src/emacs/src/lisp.h 1875 | ||
| 2539 | next y-src/cccp.y 42 | ||
| 2540 | NE y-src/parse.c 6 | ||
| 2541 | nfree 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$/ | ||
| 2544 | NIL_IS_ZERO c-src/emacs/src/lisp.h 1515 | ||
| 2545 | NILP c-src/emacs/src/lisp.h /^# define NILP(x) lisp_h_NILP (x)$/ | ||
| 2546 | nl c-src/etags.c 2521 | ||
| 2547 | NmStrToErrStr pas-src/common.pas /^function NmStrToErrStr;(*($/ | ||
| 2548 | NmStrToInteger pas-src/common.pas /^function NmStrToInteger; (* (Str : NameString) : i/ | ||
| 2549 | \nm tex-src/testenv.tex /^\\newcommand{\\nm}[2]{\\nomenclature{#1}{#2}}$/ | ||
| 2550 | no_argument c-src/getopt.h 89 | ||
| 2551 | nocase_tail c-src/etags.c /^nocase_tail (const char *cp)$/ | ||
| 2552 | node c-src/etags.c 225 | ||
| 2553 | noderef tex-src/texinfo.tex /^\\appendixnoderef %$/ | ||
| 2554 | node_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/ | ||
| 2560 | nofonts% tex-src/texinfo.tex /^{\\chapternofonts%$/ | ||
| 2561 | nofonts tex-src/texinfo.tex /^{\\indexnofonts$/ | ||
| 2562 | no_lang_help c-src/etags.c 707 | ||
| 2563 | none_help c-src/etags.c 703 | ||
| 2564 | NONPOINTER_BITS c-src/emacs/src/lisp.h 78 | ||
| 2565 | NONPOINTER_BITS c-src/emacs/src/lisp.h 80 | ||
| 2566 | NONSRCS 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{>}$/ | ||
| 2571 | normalize_fresh prol-src/natded.prolog /^normalize_fresh(M,N):-$/ | ||
| 2572 | normalize prol-src/natded.prolog /^normalize(M,MNorm):-$/ | ||
| 2573 | /normalize ps-src/rfc1245.ps /^\/normalize {$/ | ||
| 2574 | normalize_tree prol-src/natded.prolog /^normalize_tree(tree(Rule,Syn:Sem,Trees),$/ | ||
| 2575 | normalize_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{|}$/ | ||
| 2581 | nosave pyt-src/server.py /^ def nosave(self):$/ | ||
| 2582 | no_sub c-src/emacs/src/regex.h 387 | ||
| 2583 | notag2 c-src/dostorture.c 26 | ||
| 2584 | notag2 c-src/torture.c 26 | ||
| 2585 | notag4 c-src/dostorture.c 45 | ||
| 2586 | notag4 c-src/torture.c 45 | ||
| 2587 | not_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/ | ||
| 2590 | not_eol c-src/emacs/src/regex.h 394 | ||
| 2591 | NOTEQUAL y-src/cccp.c 13 | ||
| 2592 | no tex-src/texinfo.tex /^\\global\\advance \\appendixno by 1 \\message{Appendix/ | ||
| 2593 | no tex-src/texinfo.tex /^\\ifnum\\secno=0 Appendix\\xreftie'char\\the\\appendixn/ | ||
| 2594 | no tex-src/texinfo.tex /^\\newcount \\appendixno \\appendixno = `\\@$/ | ||
| 2595 | no.\the\secno tex-src/texinfo.tex /^\\else \\ifnum \\subsecno=0 Section\\xreftie'char\\the\\/ | ||
| 2596 | no.\the\secno.\the\subsecno tex-src/texinfo.tex /^Section\\xreftie'char\\the\\appendixno.\\the\\secno.\\th/ | ||
| 2597 | no.\the\secno.\the\subsecno.\the\subsubsecno tex-src/texinfo.tex /^Section\\xreftie'char\\the\\appendixno.\\the\\secno.\\th/ | ||
| 2598 | notinname c-src/etags.c /^#define notinname(c) (_nin[CHAR (c)]) \/* c is not / | ||
| 2599 | not_single_kboard_state c-src/emacs/src/keyboard.c /^not_single_kboard_state (KBOARD *kboard)$/ | ||
| 2600 | npending 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/ | ||
| 2606 | ntool_bar_items c-src/emacs/src/keyboard.c 7974 | ||
| 2607 | NULL_PTR y-src/cccp.y 63 | ||
| 2608 | NULL 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/ | ||
| 2614 | numberKeys objcpp-src/SimpleCalc.M /^- numberKeys:sender$/ | ||
| 2615 | number_len c-src/etags.c /^static int number_len (long) ATTRIBUTE_CONST;$/ | ||
| 2616 | /numbersign ps-src/rfc1245.ps /^\/numbersign \/dollar \/percent \/ampersand \/quotesing/ | ||
| 2617 | numbervars prol-src/natded.prolog /^numbervars(X):-$/ | ||
| 2618 | num_columns cp-src/conway.cpp 16 | ||
| 2619 | \numericenumerate tex-src/texinfo.tex /^\\def\\numericenumerate{%$/ | ||
| 2620 | num_input_events c-src/emacs/src/keyboard.c 210 | ||
| 2621 | NUM_MOD_NAMES c-src/emacs/src/keyboard.c 6325 | ||
| 2622 | numOfChannels cp-src/c.C 1 | ||
| 2623 | NUM_RECENT_KEYS c-src/emacs/src/keyboard.c 91 | ||
| 2624 | num_regs c-src/emacs/src/regex.h 430 | ||
| 2625 | num_rows cp-src/conway.cpp 15 | ||
| 2626 | NUMSTATS objc-src/PackInsp.h 36 | ||
| 2627 | nvars c-src/emacs/src/lisp.h 3140 | ||
| 2628 | Objc_help c-src/etags.c 613 | ||
| 2629 | OBJCPPSRC make-src/Makefile /^OBJCPPSRC=SimpleCalc.H SimpleCalc.M$/ | ||
| 2630 | OBJCSRC make-src/Makefile /^OBJCSRC=Subprocess.h Subprocess.m PackInsp.h PackI/ | ||
| 2631 | Objc_suffixes c-src/etags.c 609 | ||
| 2632 | objdef c-src/etags.c 2484 | ||
| 2633 | object c-src/emacs/src/lisp.h 2128 | ||
| 2634 | object_registry cp-src/clheir.cpp 10 | ||
| 2635 | OBJS make-src/Makefile /^OBJS=${GETOPTOBJS} ${REGEXOBJS} ${CHECKOBJS}$/ | ||
| 2636 | objtag c-src/etags.c 2453 | ||
| 2637 | objvar c-src/emacs/src/lisp.h 2297 | ||
| 2638 | obstack_chunk_alloc y-src/parse.y 47 | ||
| 2639 | obstack_chunk_free y-src/parse.y 48 | ||
| 2640 | ocatseen c-src/etags.c 2477 | ||
| 2641 | /ocircumflex ps-src/rfc1245.ps /^\/ocircumflex \/odieresis \/otilde \/uacute \/ugrave \/u/ | ||
| 2642 | octave_MDiagArray2_h cp-src/MDiagArray2.h 29 | ||
| 2643 | octave_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}$/ | ||
| 2646 | oediff make-src/Makefile /^oediff: OTAGS ETAGS ${infiles}$/ | ||
| 2647 | offset c-src/emacs/src/lisp.h 2305 | ||
| 2648 | offset c-src/emacs/src/lisp.h 2365 | ||
| 2649 | offset c-src/etags.c 2494 | ||
| 2650 | oignore c-src/etags.c 2483 | ||
| 2651 | oimplementation c-src/etags.c 2474 | ||
| 2652 | oinbody c-src/etags.c 2478 | ||
| 2653 | ok objc-src/PackInsp.m /^-ok:sender$/ | ||
| 2654 | ok_to_echo_at_next_pause c-src/emacs/src/keyboard.c 159 | ||
| 2655 | old_value c-src/emacs/src/lisp.h 2980 | ||
| 2656 | omethodcolon c-src/etags.c 2481 | ||
| 2657 | omethodparm c-src/etags.c 2482 | ||
| 2658 | omethodsign c-src/etags.c 2479 | ||
| 2659 | omethodtag c-src/etags.c 2480 | ||
| 2660 | \onepageout tex-src/texinfo.tex /^\\def\\onepageout#1{\\hoffset=\\normaloffset$/ | ||
| 2661 | onone c-src/etags.c 2472 | ||
| 2662 | oparenseen c-src/etags.c 2476 | ||
| 2663 | OPENBUTTON objc-src/PackInsp.m 47 | ||
| 2664 | \opencontents tex-src/texinfo.tex /^\\def\\opencontents{\\openout \\contentsfile = \\jobnam/ | ||
| 2665 | open-dribble-file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/ | ||
| 2666 | \openindices tex-src/texinfo.tex /^\\def\\openindices{%$/ | ||
| 2667 | openInWorkspace objc-src/PackInsp.m /^static void openInWorkspace(const char *filename)$/ | ||
| 2668 | open objc-src/PackInsp.m /^-open:sender$/ | ||
| 2669 | operationKeys objcpp-src/SimpleCalc.M /^- operationKeys:sender$/ | ||
| 2670 | operator+ cp-src/c.C /^ A operator+(A& a) {};$/ | ||
| 2671 | operator+ cp-src/c.C /^const A& A::operator+(const A&) { }$/ | ||
| 2672 | operator - cp-src/c.C /^void operator -(int, int) {}$/ | ||
| 2673 | operator+ cp-src/c.C /^void operator+(int, int) {}$/ | ||
| 2674 | operator = cp-src/functions.cpp /^Date & Date::operator = ( Date d ){$/ | ||
| 2675 | operator += cp-src/functions.cpp /^Date & Date::operator += ( int days ){$/ | ||
| 2676 | operator -= cp-src/functions.cpp /^Date & Date::operator -= ( int days ){$/ | ||
| 2677 | operator ++ cp-src/functions.cpp /^Date & Date::operator ++ ( void ){$/ | ||
| 2678 | operator -- cp-src/functions.cpp /^Date & Date::operator -- ( void ){$/ | ||
| 2679 | operator - cp-src/functions.cpp /^int Date::operator - ( Date d ){$/ | ||
| 2680 | operator < cp-src/functions.cpp /^int Date::operator < ( Date d ) {$/ | ||
| 2681 | operator == cp-src/functions.cpp /^int Date::operator == ( Date d ) {$/ | ||
| 2682 | operator > cp-src/functions.cpp /^int Date::operator > ( Date d ) {$/ | ||
| 2683 | operator >> cp-src/functions.cpp /^istream& operator >> ( istream &i, Date & dd ){$/ | ||
| 2684 | operator << cp-src/functions.cpp /^ostream& operator << ( ostream &c, Date d ) {$/ | ||
| 2685 | operator = cp-src/MDiagArray2.h /^ MDiagArray2<T>& operator = (const MDiagArray2<T>/ | ||
| 2686 | OperatorFun c-src/h.h 88 | ||
| 2687 | operator int cp-src/c.C /^void operator int(int, int) {}$/ | ||
| 2688 | operator int cp-src/fail.C /^ operator int() const {return x;}$/ | ||
| 2689 | operator MArray2<T> cp-src/MDiagArray2.h /^ operator MArray2<T> () const$/ | ||
| 2690 | operator y-src/cccp.y 438 | ||
| 2691 | \opnr tex-src/texinfo.tex /^\\def\\opnr{{\\sf\\char`\\(}} \\def\\clnr{{\\sf\\char`\\)}} / | ||
| 2692 | opparsebody\Edefop\defopx\defopheader\defoptype tex-src/texinfo.tex /^\\defopparsebody\\Edefop\\defopx\\defopheader\\defoptyp/ | ||
| 2693 | oprotocol c-src/etags.c 2473 | ||
| 2694 | /O ps-src/rfc1245.ps /^\/O {closepath} bind def$/ | ||
| 2695 | optional_argument c-src/getopt.h 91 | ||
| 2696 | option c-src/getopt.h 73 | ||
| 2697 | OPTIONS make-src/Makefile /^OPTIONS=--members --declarations --regex=@regexfil/ | ||
| 2698 | opvarparsebody\Edefcv\defcvx\defcvarheader\defcvtype tex-src/texinfo.tex /^\\defopvarparsebody\\Edefcv\\defcvx\\defcvarheader\\def/ | ||
| 2699 | ord_add_element prol-src/ordsets.prolog /^ord_add_element([], Element, [Element]).$/ | ||
| 2700 | ord_del_element prol-src/ordsets.prolog /^ord_del_element([], _, []).$/ | ||
| 2701 | ord_disjoint prol-src/ordsets.prolog /^ord_disjoint(Set1, Set2) :-$/ | ||
| 2702 | /ordfeminine ps-src/rfc1245.ps /^\/ordfeminine \/ordmasculine \/.notdef \/ae \/oslash \/q/ | ||
| 2703 | ord_intersection2 prol-src/ordsets.prolog /^ord_intersection2(1, [Set|Sets], Set0, Sets0) :- !/ | ||
| 2704 | ord_intersection3 prol-src/ordsets.prolog /^ord_intersection3(<, _, Set1, Head2, Tail2, Inters/ | ||
| 2705 | ord_intersection4 prol-src/ordsets.prolog /^ord_intersection4(<, _, Set1, Head2, Tail2, Inters/ | ||
| 2706 | ord_intersection prol-src/ordsets.prolog /^ord_intersection([], _, []).$/ | ||
| 2707 | ord_intersection prol-src/ordsets.prolog /^ord_intersection([], Set2, [], Set2).$/ | ||
| 2708 | ord_intersection prol-src/ordsets.prolog /^ord_intersection(Sets, Intersection) :- $/ | ||
| 2709 | ord_intersect prol-src/ordsets.prolog /^ord_intersect([Head1|Tail1], [Head2|Tail2]) :-$/ | ||
| 2710 | ord_member prol-src/ordsets.prolog /^ord_member(X, [E|Es]) :-$/ | ||
| 2711 | ord_seteq prol-src/ordsets.prolog /^ord_seteq(Set1, Set2) :-$/ | ||
| 2712 | ord_setproduct prol-src/ordsets.prolog /^ord_setproduct([], _, []).$/ | ||
| 2713 | ord_subset prol-src/ordsets.prolog /^ord_subset([], _).$/ | ||
| 2714 | ord_subtract prol-src/ordsets.prolog /^ord_subtract(Set1, Set2, Union) :-$/ | ||
| 2715 | ord_symdiff prol-src/ordsets.prolog /^ord_symdiff([], Set2, Set2).$/ | ||
| 2716 | ord_union4 prol-src/ordsets.prolog /^ord_union4(<, Head, Set1, Head2, Tail2, [Head|Unio/ | ||
| 2717 | ord_union_all prol-src/ordsets.prolog /^ord_union_all(1, [Set|Sets], Set, Sets) :- !.$/ | ||
| 2718 | ord_union prol-src/ordsets.prolog /^ord_union(Set1, Set2, Union) :-$/ | ||
| 2719 | ord_union prol-src/ordsets.prolog /^ord_union([], Union) :- !, Union = [].$/ | ||
| 2720 | OR y-src/cccp.c 10 | ||
| 2721 | oss html-src/softwarelibero.html /^Il movimento open source$/ | ||
| 2722 | otagseen c-src/etags.c 2475 | ||
| 2723 | OTAGS make-src/Makefile /^OTAGS: oetags ${SRCS} srclist$/ | ||
| 2724 | /Otilde ps-src/rfc1245.ps /^\/Otilde \/OE \/oe \/endash \/emdash \/quotedblleft \/quo/ | ||
| 2725 | output_file perl-src/htlmify-cystic 35 | ||
| 2726 | output_files perl-src/htlmify-cystic 32 | ||
| 2727 | outputtable html-src/algrthms.html /^Output$/ | ||
| 2728 | outputTime cp-src/c.C 9 | ||
| 2729 | outsyn prol-src/natded.prolog /^outsyn(['Any'],_).$/ | ||
| 2730 | OVERLAYP c-src/emacs/src/lisp.h /^OVERLAYP (Lisp_Object x)$/ | ||
| 2731 | Overview tex-src/gzip.texi /^@node Overview, Sample, Copying, Top$/ | ||
| 2732 | PackageInspector 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 { $/ | ||
| 2735 | pagesize 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}$/ | ||
| 2739 | pair 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/ | ||
| 2743 | parent c-src/emacs/src/keyboard.c 8745 | ||
| 2744 | parent 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{%$/ | ||
| 2748 | parse_c_expression y-src/cccp.y /^parse_c_expression (string)$/ | ||
| 2749 | parse_cgi prol-src/natded.prolog /^parse_cgi(TokenList,KeyVals):-$/ | ||
| 2750 | parse_error y-src/parse.y 82 | ||
| 2751 | parse_escape y-src/cccp.y /^parse_escape (string_ptr)$/ | ||
| 2752 | parseFromVars php-src/lce_functions.php /^ function parseFromVars($prefix)$/ | ||
| 2753 | parse_hash y-src/parse.y 64 | ||
| 2754 | parse_menu_item c-src/emacs/src/keyboard.c /^parse_menu_item (Lisp_Object item, int inmenubar)$/ | ||
| 2755 | parse_modifiers c-src/emacs/src/keyboard.c /^parse_modifiers (Lisp_Object symbol)$/ | ||
| 2756 | parse_modifiers_uncached c-src/emacs/src/keyboard.c /^parse_modifiers_uncached (Lisp_Object symbol, ptrd/ | ||
| 2757 | parse_number y-src/cccp.y /^parse_number (olen)$/ | ||
| 2758 | parse prol-src/natded.prolog /^parse(Ws,Cat):-$/ | ||
| 2759 | parse_return_error y-src/cccp.y 70 | ||
| 2760 | parse_return y-src/parse.y 74 | ||
| 2761 | parse_solitary_modifier c-src/emacs/src/keyboard.c /^parse_solitary_modifier (Lisp_Object symbol)$/ | ||
| 2762 | parse_tool_bar_item c-src/emacs/src/keyboard.c /^parse_tool_bar_item (Lisp_Object key, Lisp_Object / | ||
| 2763 | parse_tree merc-src/accumulator.m /^:- import_module parse_tree.$/ | ||
| 2764 | Pascal_functions c-src/etags.c /^Pascal_functions (FILE *inf)$/ | ||
| 2765 | Pascal_help c-src/etags.c 621 | ||
| 2766 | Pascal_suffixes c-src/etags.c 619 | ||
| 2767 | PASSRC make-src/Makefile /^PASSRC=common.pas$/ | ||
| 2768 | pat c-src/etags.c 262 | ||
| 2769 | pattern c-src/etags.c 260 | ||
| 2770 | p c-src/emacs/src/lisp.h 4673 | ||
| 2771 | p c-src/emacs/src/lisp.h 4679 | ||
| 2772 | pD c-src/emacs/src/lisp.h 165 | ||
| 2773 | pD c-src/emacs/src/lisp.h 167 | ||
| 2774 | pD c-src/emacs/src/lisp.h 169 | ||
| 2775 | pD c-src/emacs/src/lisp.h 171 | ||
| 2776 | pdlcount c-src/emacs/src/lisp.h 3046 | ||
| 2777 | PDT c-src/h.h /^ Date 04 May 87 235311 PDT (Mon)$/ | ||
| 2778 | pending-delete-mode el-src/TAGTEST.EL /^(defalias 'pending-delete-mode 'delete-selection-m/ | ||
| 2779 | pending_funcalls c-src/emacs/src/keyboard.c 4377 | ||
| 2780 | pending_signals c-src/emacs/src/keyboard.c 80 | ||
| 2781 | /periodcentered ps-src/rfc1245.ps /^\/periodcentered \/quotesinglbase \/quotedblbase \/per/ | ||
| 2782 | Perl_functions c-src/etags.c /^Perl_functions (FILE *inf)$/ | ||
| 2783 | Perl_help c-src/etags.c 630 | ||
| 2784 | Perl_interpreters c-src/etags.c 628 | ||
| 2785 | PERLSRC make-src/Makefile /^PERLSRC=htlmify-cystic yagrip.pl kai-test.pl mirro/ | ||
| 2786 | Perl_suffixes c-src/etags.c 626 | ||
| 2787 | p/f ada-src/etags-test-for.ada /^function p ("p");$/ | ||
| 2788 | p/f ada-src/etags-test-for.ada /^ function p pragma Import (C,$/ | ||
| 2789 | pfatal c-src/etags.c /^pfatal (const char *s1)$/ | ||
| 2790 | pfdset c-src/h.h 57 | ||
| 2791 | pfnote c-src/etags.c /^pfnote (char *name, bool is_func, char *linestart,/ | ||
| 2792 | /PF ps-src/rfc1245.ps /^\/PF { $/ | ||
| 2793 | PHP_functions c-src/etags.c /^PHP_functions (FILE *inf)$/ | ||
| 2794 | PHP_help c-src/etags.c 639 | ||
| 2795 | PHPSRC make-src/Makefile /^PHPSRC=lce_functions.php ptest.php sendmail.php$/ | ||
| 2796 | PHP_suffixes c-src/etags.c 637 | ||
| 2797 | pI c-src/emacs/src/lisp.h 106 | ||
| 2798 | pI c-src/emacs/src/lisp.h 94 | ||
| 2799 | pI c-src/emacs/src/lisp.h 99 | ||
| 2800 | \pindex tex-src/texinfo.tex /^\\def\\pindex {\\pgindex}$/ | ||
| 2801 | pinned c-src/emacs/src/lisp.h 679 | ||
| 2802 | Pkg1/b ada-src/etags-test-for.ada /^package body Pkg1 is$/ | ||
| 2803 | Pkg1/b ada-src/waroquiers.ada /^package body Pkg1 is$/ | ||
| 2804 | Pkg1_Func1/f ada-src/etags-test-for.ada /^ function Pkg1_Func1 return Boolean;$/ | ||
| 2805 | Pkg1_Func1/f ada-src/etags-test-for.ada /^function Pkg1_Func1 return Boolean is$/ | ||
| 2806 | Pkg1_Func1/f ada-src/etags-test-for.ada /^ function Pkg1_Func1 return Boolean is separate;$/ | ||
| 2807 | Pkg1_Func1/f ada-src/waroquiers.ada /^ function Pkg1_Func1 return Boolean;$/ | ||
| 2808 | Pkg1_Func1/f ada-src/waroquiers.ada /^function Pkg1_Func1 return Boolean is$/ | ||
| 2809 | Pkg1_Func1/f ada-src/waroquiers.ada /^ function Pkg1_Func1 return Boolean is separate;$/ | ||
| 2810 | Pkg1_Func2/f ada-src/etags-test-for.ada /^ function Pkg1_Func2 (Ijk : Integer; Z : Integer)/ | ||
| 2811 | Pkg1_Func2/f ada-src/waroquiers.ada /^ function Pkg1_Func2 (Ijk : Integer; Z : Integer)/ | ||
| 2812 | Pkg1_Pkg1/b ada-src/etags-test-for.ada /^package body Pkg1_Pkg1 is$/ | ||
| 2813 | Pkg1_Pkg1/b ada-src/etags-test-for.ada /^ package body Pkg1_Pkg1 is separate;$/ | ||
| 2814 | Pkg1_Pkg1/b ada-src/waroquiers.ada /^package body Pkg1_Pkg1 is$/ | ||
| 2815 | Pkg1_Pkg1/b ada-src/waroquiers.ada /^ package body Pkg1_Pkg1 is separate;$/ | ||
| 2816 | Pkg1_Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Pkg1_Proc1;$/ | ||
| 2817 | Pkg1_Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Pkg1_Proc1 is$/ | ||
| 2818 | Pkg1_Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Pkg1_Proc1;$/ | ||
| 2819 | Pkg1_Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Pkg1_Proc1 is$/ | ||
| 2820 | Pkg1_Pkg1/s ada-src/etags-test-for.ada /^ package Pkg1_Pkg1 is$/ | ||
| 2821 | Pkg1_Pkg1/s ada-src/waroquiers.ada /^ package Pkg1_Pkg1 is$/ | ||
| 2822 | Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc1;$/ | ||
| 2823 | Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc1 is$/ | ||
| 2824 | Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc1;$/ | ||
| 2825 | Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc1 is$/ | ||
| 2826 | Pkg1_Proc2/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc2 (I : Integer);$/ | ||
| 2827 | Pkg1_Proc2/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc2 (I : Integer) is$/ | ||
| 2828 | Pkg1_Proc2/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc2 (I : Integer);$/ | ||
| 2829 | Pkg1_Proc2/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc2 (I : Integer) is$/ | ||
| 2830 | Pkg1/s ada-src/etags-test-for.ada /^package Pkg1 is$/ | ||
| 2831 | Pkg1/s ada-src/waroquiers.ada /^package Pkg1 is$/ | ||
| 2832 | plainc c-src/etags.c 2934 | ||
| 2833 | plain_C_entries c-src/etags.c /^plain_C_entries (FILE *inf)$/ | ||
| 2834 | plain_C_suffixes c-src/etags.c 643 | ||
| 2835 | \plainsecheading tex-src/texinfo.tex /^\\def\\plainsecheading #1{\\secheadingi {#1}}$/ | ||
| 2836 | plist c-src/emacs/src/lisp.h 2040 | ||
| 2837 | plist c-src/emacs/src/lisp.h 697 | ||
| 2838 | plus cp-src/functions.cpp /^void Date::plus ( int days , int month , int year / | ||
| 2839 | plus go-src/test1.go 5 | ||
| 2840 | plusvalseq prol-src/natded.prolog /^plusvalseq([]) --> [].$/ | ||
| 2841 | pMd c-src/emacs/src/lisp.h 150 | ||
| 2842 | pMd c-src/emacs/src/lisp.h 155 | ||
| 2843 | pMu c-src/emacs/src/lisp.h 151 | ||
| 2844 | pMu c-src/emacs/src/lisp.h 156 | ||
| 2845 | p_next c-src/etags.c 258 | ||
| 2846 | POEntryAD php-src/lce_functions.php 29 | ||
| 2847 | POEntry php-src/lce_functions.php 105 | ||
| 2848 | POEntry php-src/lce_functions.php /^ function POEntry()$/ | ||
| 2849 | pointer c-src/emacs/src/lisp.h 2125 | ||
| 2850 | point forth-src/test-forth.fth /^BEGIN-STRUCTURE point \\ create the named structure/ | ||
| 2851 | \point tex-src/texinfo.tex /^\\def\\point{$\\star$}$/ | ||
| 2852 | poll_for_input_1 c-src/emacs/src/keyboard.c /^poll_for_input_1 (void)$/ | ||
| 2853 | poll_for_input c-src/emacs/src/keyboard.c /^poll_for_input (struct atimer *timer)$/ | ||
| 2854 | poll_suppress_count c-src/emacs/src/keyboard.c 1908 | ||
| 2855 | poll_suppress_count c-src/emacs/src/lisp.h 3047 | ||
| 2856 | poll_timer c-src/emacs/src/keyboard.c 1915 | ||
| 2857 | popclass_above c-src/etags.c /^popclass_above (int bracelev)$/ | ||
| 2858 | pop_kboard c-src/emacs/src/keyboard.c /^pop_kboard (void)$/ | ||
| 2859 | pop-tag-mark el-src/emacs/lisp/progmodes/etags.el /^(defalias 'pop-tag-mark 'xref-pop-marker-stack)$/ | ||
| 2860 | POReader php-src/lce_functions.php 163 | ||
| 2861 | POReader php-src/lce_functions.php /^ function POReader($domain, $filename)$/ | ||
| 2862 | PORManager php-src/lce_functions.php 498 | ||
| 2863 | PORManager php-src/lce_functions.php /^ function PORManager()$/ | ||
| 2864 | position_to_Time c-src/emacs/src/keyboard.c /^position_to_Time (ptrdiff_t pos)$/ | ||
| 2865 | posix_memalign c-src/emacs/src/gmalloc.c /^posix_memalign (void **memptr, size_t alignment, s/ | ||
| 2866 | posn-at-point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/ | ||
| 2867 | posn-at-x-y c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, / | ||
| 2868 | possible_sum_sign y-src/cccp.y /^#define possible_sum_sign(a, b, sum) ((((a) ^ (b))/ | ||
| 2869 | PostControls pyt-src/server.py /^ def PostControls(self):$/ | ||
| 2870 | post pyt-src/server.py /^ def post(self):$/ | ||
| 2871 | POSTSCRIPTFLAGS make-src/Makefile /^POSTSCRIPTFLAGS=--language=none --regex='#\/[^ \\t{]/ | ||
| 2872 | pot_etags_version c-src/etags.c 81 | ||
| 2873 | pp1 c-src/dostorture.c /^int pp1($/ | ||
| 2874 | pp1 c-src/torture.c /^int pp1($/ | ||
| 2875 | pp2 c-src/dostorture.c /^pp2$/ | ||
| 2876 | pp2 c-src/torture.c /^pp2$/ | ||
| 2877 | pp3 c-src/dostorture.c /^pp3(int bar)$/ | ||
| 2878 | pp3 c-src/torture.c /^pp3(int bar)$/ | ||
| 2879 | pp_bas_cat prol-src/natded.prolog /^pp_bas_cat(Cat):-$/ | ||
| 2880 | pp_cat prol-src/natded.prolog /^pp_cat(Syn:Sem):-$/ | ||
| 2881 | pp_exp prol-src/natded.prolog /^pp_exp('NIL'):-$/ | ||
| 2882 | pp_exps prol-src/natded.prolog /^pp_exps([]).$/ | ||
| 2883 | pp_html_fitch_tree prol-src/natded.prolog /^pp_html_fitch_tree(tree(der,Root,[ders(Words)]),M,/ | ||
| 2884 | pp_html_table_fitch_tree prol-src/natded.prolog /^pp_html_table_fitch_tree(T):-$/ | ||
| 2885 | pp_html_table_tree prol-src/natded.prolog /^pp_html_table_tree(T):-$/ | ||
| 2886 | pp_html_tree prol-src/natded.prolog /^pp_html_tree(ass(Syn,V,'$VAR'(N))):-$/ | ||
| 2887 | pp_html_trees prol-src/natded.prolog /^pp_html_trees([T|Ts],N,M):-$/ | ||
| 2888 | pp_lam_bracket prol-src/natded.prolog /^pp_lam_bracket(A^B):-$/ | ||
| 2889 | pp_lam_paren prol-src/natded.prolog /^pp_lam_paren(Var^Alpha):-$/ | ||
| 2890 | pp_lam prol-src/natded.prolog /^pp_lam(Var^Alpha):-$/ | ||
| 2891 | pp_paren prol-src/natded.prolog /^pp_paren(C):-$/ | ||
| 2892 | pp_rule prol-src/natded.prolog /^pp_rule(fe):-write('\/E').$/ | ||
| 2893 | /P ps-src/rfc1245.ps /^\/P { $/ | ||
| 2894 | pp_syn_back prol-src/natded.prolog /^pp_syn_back(A\/B):-$/ | ||
| 2895 | pp_syn_paren prol-src/natded.prolog /^pp_syn_paren(A\/B):-$/ | ||
| 2896 | pp_syn prol-src/natded.prolog /^pp_syn(A\/B):-$/ | ||
| 2897 | pp_tree prol-src/natded.prolog /^pp_tree(T):-$/ | ||
| 2898 | pp_trees prol-src/natded.prolog /^pp_trees([T|Ts],Column):-$/ | ||
| 2899 | pp_word_list prol-src/natded.prolog /^pp_word_list([]).$/ | ||
| 2900 | pp_word_list_rest prol-src/natded.prolog /^pp_word_list_rest([]).$/ | ||
| 2901 | pp_word prol-src/natded.prolog /^pp_word(W):-$/ | ||
| 2902 | Pre_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/ | ||
| 2904 | predicate c-src/emacs/src/lisp.h 2307 | ||
| 2905 | prev c.c 175 | ||
| 2906 | prev c-src/emacs/src/gmalloc.c 165 | ||
| 2907 | prev c-src/emacs/src/gmalloc.c 189 | ||
| 2908 | prev c-src/emacs/src/lisp.h 2191 | ||
| 2909 | \primary tex-src/texinfo.tex /^\\def\\primary #1{\\line{#1\\hfil}}$/ | ||
| 2910 | PrintAdd go-src/test1.go /^func (n intNumber) PrintAdd() {$/ | ||
| 2911 | PrintAdd go-src/test1.go /^func (s str) PrintAdd() {$/ | ||
| 2912 | printClassification 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}%$/ | ||
| 2917 | print_help c-src/etags.c /^print_help (argument *argbuffer)$/ | ||
| 2918 | \printindex tex-src/texinfo.tex /^\\def\\printindex{\\parsearg\\doprintindex}$/ | ||
| 2919 | print_language_names c-src/etags.c /^print_language_names (void)$/ | ||
| 2920 | printmax_t c-src/emacs/src/lisp.h 148 | ||
| 2921 | printmax_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}$/ | ||
| 2924 | PRINT_UNDOCUMENTED_OPTIONS_HELP c-src/etags.c 804 | ||
| 2925 | print_version c-src/etags.c /^print_version (void)$/ | ||
| 2926 | Private objc-src/Subprocess.m /^@interface Subprocess(Private)$/ | ||
| 2927 | Private_T/b ada-src/etags-test-for.ada /^ task body Private_T is$/ | ||
| 2928 | Private_T/b ada-src/waroquiers.ada /^ task body Private_T is$/ | ||
| 2929 | Private_T/k ada-src/etags-test-for.ada /^ task Private_T;$/ | ||
| 2930 | Private_T/k ada-src/waroquiers.ada /^ task Private_T;$/ | ||
| 2931 | Private_T/p ada-src/etags-test-for.ada /^ procedure Private_T;$/ | ||
| 2932 | Private_T/p ada-src/etags-test-for.ada /^ procedure Private_T is$/ | ||
| 2933 | Private_T/p ada-src/waroquiers.ada /^ procedure Private_T;$/ | ||
| 2934 | Private_T/p ada-src/waroquiers.ada /^ procedure Private_T is$/ | ||
| 2935 | Private_T/t ada-src/etags-test-for.ada /^ type Private_T is$/ | ||
| 2936 | Private_T/t ada-src/etags-test-for.ada /^ type Private_T is private;$/ | ||
| 2937 | Private_T/t ada-src/waroquiers.ada /^ type Private_T is$/ | ||
| 2938 | Private_T/t ada-src/waroquiers.ada /^ type Private_T is private;$/ | ||
| 2939 | Problems tex-src/gzip.texi /^@node Problems, Concept Index, Tapes, Top$/ | ||
| 2940 | proc c-src/h.h 87 | ||
| 2941 | process_file c-src/etags.c /^process_file (FILE *fh, char *fn, language *lang)$/ | ||
| 2942 | process_file_name c-src/etags.c /^process_file_name (char *file, language *lang)$/ | ||
| 2943 | PROCESSP c-src/emacs/src/lisp.h /^PROCESSP (Lisp_Object a)$/ | ||
| 2944 | process_pending_signals c-src/emacs/src/keyboard.c /^process_pending_signals (void)$/ | ||
| 2945 | process_special_events c-src/emacs/src/keyboard.c /^process_special_events (void)$/ | ||
| 2946 | process_tool_bar_item c-src/emacs/src/keyboard.c /^process_tool_bar_item (Lisp_Object key, Lisp_Objec/ | ||
| 2947 | Proc/t ada-src/2ataspri.ads /^ type Proc is access procedure (Addr : System.Ad/ | ||
| 2948 | prof make-src/Makefile /^prof: ETAGS$/ | ||
| 2949 | prolog_atom c-src/etags.c /^prolog_atom (char *s, size_t pos)$/ | ||
| 2950 | Prolog_functions c-src/etags.c /^Prolog_functions (FILE *inf)$/ | ||
| 2951 | Prolog_help c-src/etags.c 654 | ||
| 2952 | prolog_pr c-src/etags.c /^prolog_pr (char *s, char *last)$/ | ||
| 2953 | prolog_skip_comment c-src/etags.c /^prolog_skip_comment (linebuffer *plb, FILE *inf)$/ | ||
| 2954 | Prolog_suffixes c-src/etags.c 652 | ||
| 2955 | PROLSRC make-src/Makefile /^PROLSRC=ordsets.prolog natded.prolog$/ | ||
| 2956 | PROP c-src/emacs/src/keyboard.c 8379 | ||
| 2957 | PROP c-src/emacs/src/keyboard.c /^#define PROP(IDX) AREF (tool_bar_item_properties, / | ||
| 2958 | prop c-src/etags.c 209 | ||
| 2959 | PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) \/* empty *\/$/ | ||
| 2960 | PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) protect_malloc_/ | ||
| 2961 | protect_malloc_state c-src/emacs/src/gmalloc.c /^protect_malloc_state (int protect_p)$/ | ||
| 2962 | PRTPKG f-src/entry.for /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/ | ||
| 2963 | PRTPKG f-src/entry.strange /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/ | ||
| 2964 | PRTPKG f-src/entry.strange_suffix /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/ | ||
| 2965 | PSEUDO c-src/sysdep.h /^#define PSEUDO(name, syscall_name, args) / | ||
| 2966 | PSEUDOVECSIZE c-src/emacs/src/lisp.h /^#define PSEUDOVECSIZE(type, nonlispfield) \\$/ | ||
| 2967 | PSEUDOVECTOR_AREA_BITS c-src/emacs/src/lisp.h 818 | ||
| 2968 | PSEUDOVECTOR_FLAG c-src/emacs/src/lisp.h 774 | ||
| 2969 | PSEUDOVECTORP c-src/emacs/src/lisp.h /^PSEUDOVECTORP (Lisp_Object a, int code)$/ | ||
| 2970 | PSEUDOVECTOR_REST_BITS c-src/emacs/src/lisp.h 813 | ||
| 2971 | PSEUDOVECTOR_REST_MASK c-src/emacs/src/lisp.h 814 | ||
| 2972 | PSEUDOVECTOR_SIZE_BITS c-src/emacs/src/lisp.h 808 | ||
| 2973 | PSEUDOVECTOR_SIZE_MASK c-src/emacs/src/lisp.h 809 | ||
| 2974 | PSEUDOVECTOR_TYPEP c-src/emacs/src/lisp.h /^PSEUDOVECTOR_TYPEP (struct vectorlike_header *a, i/ | ||
| 2975 | PS_functions c-src/etags.c /^PS_functions (FILE *inf)$/ | ||
| 2976 | PS_help c-src/etags.c 649 | ||
| 2977 | PSSRC make-src/Makefile /^PSSRC=rfc1245.ps$/ | ||
| 2978 | PS_suffixes c-src/etags.c 647 | ||
| 2979 | pthread_mutexattr_setprio_ceiling/f ada-src/2ataspri.adb /^ function pthread_mutexattr_setprio_ceiling$/ | ||
| 2980 | pthread_mutexattr_setprotocol/f ada-src/2ataspri.adb /^ function pthread_mutexattr_setprotocol$/ | ||
| 2981 | PTY_LENGTH objc-src/Subprocess.m 21 | ||
| 2982 | PTY_TEMPLATE objc-src/Subprocess.m 20 | ||
| 2983 | Public_T/t ada-src/etags-test-for.ada /^ type Public_T is$/ | ||
| 2984 | Public_T/t ada-src/waroquiers.ada /^ type Public_T is$/ | ||
| 2985 | purpose c-src/emacs/src/lisp.h 1594 | ||
| 2986 | pushclass_above c-src/etags.c /^pushclass_above (int bracelev, char *str, int len)/ | ||
| 2987 | PUSH_C_STR c-src/emacs/src/keyboard.c /^#define PUSH_C_STR(str, listvar) \\$/ | ||
| 2988 | PUSH_HANDLER c-src/emacs/src/lisp.h /^#define PUSH_HANDLER(c, tag_ch_val, handlertype) \\/ | ||
| 2989 | push_kboard c-src/emacs/src/keyboard.c /^push_kboard (struct kboard *k)$/ | ||
| 2990 | put_entries c-src/etags.c /^put_entries (register node *np)$/ | ||
| 2991 | PVEC_BOOL_VECTOR c-src/emacs/src/lisp.h 787 | ||
| 2992 | PVEC_BUFFER c-src/emacs/src/lisp.h 788 | ||
| 2993 | PVEC_CHAR_TABLE c-src/emacs/src/lisp.h 796 | ||
| 2994 | PVEC_COMPILED c-src/emacs/src/lisp.h 795 | ||
| 2995 | PVEC_FONT c-src/emacs/src/lisp.h 798 | ||
| 2996 | PVEC_FRAME c-src/emacs/src/lisp.h 785 | ||
| 2997 | PVEC_FREE c-src/emacs/src/lisp.h 783 | ||
| 2998 | PVEC_HASH_TABLE c-src/emacs/src/lisp.h 789 | ||
| 2999 | PVEC_NORMAL_VECTOR c-src/emacs/src/lisp.h 782 | ||
| 3000 | PVEC_OTHER c-src/emacs/src/lisp.h 793 | ||
| 3001 | PVEC_PROCESS c-src/emacs/src/lisp.h 784 | ||
| 3002 | PVEC_SUB_CHAR_TABLE c-src/emacs/src/lisp.h 797 | ||
| 3003 | PVEC_SUBR c-src/emacs/src/lisp.h 792 | ||
| 3004 | PVEC_TERMINAL c-src/emacs/src/lisp.h 790 | ||
| 3005 | pvec_type c-src/emacs/src/lisp.h 780 | ||
| 3006 | PVEC_TYPE_MASK c-src/emacs/src/lisp.h 819 | ||
| 3007 | PVEC_WINDOW_CONFIGURATION c-src/emacs/src/lisp.h 791 | ||
| 3008 | PVEC_WINDOW c-src/emacs/src/lisp.h 786 | ||
| 3009 | p.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,,,,,,,]}$/ | ||
| 3011 | p.y forth-src/test-forth.fth /^ 1 CELLS +FIELD p.y \\ A single cell field name/ | ||
| 3012 | Python_functions c-src/etags.c /^Python_functions (FILE *inf)$/ | ||
| 3013 | Python_help c-src/etags.c 660 | ||
| 3014 | Python_suffixes c-src/etags.c 658 | ||
| 3015 | PYTSRC make-src/Makefile /^PYTSRC=server.py$/ | ||
| 3016 | quantizing html-src/algrthms.html /^Quantizing the Received$/ | ||
| 3017 | questo ../c/c.web 34 | ||
| 3018 | quiettest make-src/Makefile /^quiettest:$/ | ||
| 3019 | quit_char c-src/emacs/src/keyboard.c 192 | ||
| 3020 | QUIT c-src/emacs/src/lisp.h 3101 | ||
| 3021 | QUITP c-src/emacs/src/lisp.h 3112 | ||
| 3022 | quit_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/ | ||
| 3025 | qux1 ruby-src/test1.ru /^ :qux1)$/ | ||
| 3026 | qux ruby-src/test1.ru /^ alias_method :qux, :tee, attr_accessor(:bogus)/ | ||
| 3027 | qux= ruby-src/test1.ru /^ def qux=(tee)$/ | ||
| 3028 | r0 c-src/sysdep.h 54 | ||
| 3029 | r1 c-src/sysdep.h 55 | ||
| 3030 | r_alloc c-src/emacs/src/lisp.h /^extern void *r_alloc (void **, size_t) ATTRIBUTE_A/ | ||
| 3031 | Range cp-src/Range.h 35 | ||
| 3032 | Range cp-src/Range.h /^ Range (const Range& r)$/ | ||
| 3033 | Range cp-src/Range.h /^ Range (double b, double l)$/ | ||
| 3034 | Range cp-src/Range.h /^ Range (double b, double l, double i)$/ | ||
| 3035 | Range cp-src/Range.h /^ Range (void)$/ | ||
| 3036 | RANGED_INTEGERP c-src/emacs/src/lisp.h /^RANGED_INTEGERP (intmax_t lo, Lisp_Object x, intma/ | ||
| 3037 | range_exp_list y-src/parse.y 273 | ||
| 3038 | range_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/ | ||
| 3041 | raw_keybuf_count c-src/emacs/src/keyboard.c 117 | ||
| 3042 | raw_keybuf c-src/emacs/src/keyboard.c 116 | ||
| 3043 | rbtp c.c 240 | ||
| 3044 | RCSid objc-src/PackInsp.m 30 | ||
| 3045 | read1 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ | ||
| 3046 | read2 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ | ||
| 3047 | readable_events c-src/emacs/src/keyboard.c /^readable_events (int flags)$/ | ||
| 3048 | READABLE_EVENTS_DO_TIMERS_NOW c-src/emacs/src/keyboard.c 346 | ||
| 3049 | READABLE_EVENTS_FILTER_EVENTS c-src/emacs/src/keyboard.c 347 | ||
| 3050 | READABLE_EVENTS_IGNORE_SQUEEZABLES c-src/emacs/src/keyboard.c 348 | ||
| 3051 | \readauxfile tex-src/texinfo.tex /^\\def\\readauxfile{%$/ | ||
| 3052 | read_char c-src/emacs/src/keyboard.c /^read_char (int commandflag, Lisp_Object map,$/ | ||
| 3053 | read_char_help_form_unwind c-src/emacs/src/keyboard.c /^read_char_help_form_unwind (void)$/ | ||
| 3054 | read_char_minibuf_menu_prompt c-src/emacs/src/keyboard.c /^read_char_minibuf_menu_prompt (int commandflag,$/ | ||
| 3055 | read_char_x_menu_prompt c-src/emacs/src/keyboard.c /^read_char_x_menu_prompt (Lisp_Object map,$/ | ||
| 3056 | read cp-src/conway.hpp /^ char read() { return alive; }$/ | ||
| 3057 | read_decoded_event_from_main_queue c-src/emacs/src/keyboard.c /^read_decoded_event_from_main_queue (struct timespe/ | ||
| 3058 | read_event_from_main_queue c-src/emacs/src/keyboard.c /^read_event_from_main_queue (struct timespec *end_t/ | ||
| 3059 | read_key_sequence_cmd c-src/emacs/src/keyboard.c 232 | ||
| 3060 | read-key-sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/ | ||
| 3061 | read_key_sequence c-src/emacs/src/keyboard.c /^read_key_sequence (Lisp_Object *keybuf, int bufsiz/ | ||
| 3062 | read_key_sequence_remapped c-src/emacs/src/keyboard.c 233 | ||
| 3063 | read-key-sequence-vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/ | ||
| 3064 | read_key_sequence_vs c-src/emacs/src/keyboard.c /^read_key_sequence_vs (Lisp_Object prompt, Lisp_Obj/ | ||
| 3065 | readline c-src/etags.c /^readline (linebuffer *lbp, FILE *stream)$/ | ||
| 3066 | readline_internal c-src/etags.c /^readline_internal (linebuffer *lbp, register FILE / | ||
| 3067 | Read_Lock/p ada-src/2ataspri.adb /^ procedure Read_Lock (L : in out Lock; Ceiling_V/ | ||
| 3068 | Read_Lock/p ada-src/2ataspri.ads /^ procedure Read_Lock (L : in out Lock; Ceiling_V/ | ||
| 3069 | read_menu_command c-src/emacs/src/keyboard.c /^read_menu_command (void)$/ | ||
| 3070 | read php-src/lce_functions.php /^ function read()$/ | ||
| 3071 | read_toc perl-src/htlmify-cystic /^sub read_toc ()$/ | ||
| 3072 | ReadVacation cp-src/functions.cpp /^void ReadVacation ( char *filename ) {$/ | ||
| 3073 | realloc c-src/emacs/src/gmalloc.c 1716 | ||
| 3074 | realloc c-src/emacs/src/gmalloc.c 65 | ||
| 3075 | realloc c-src/emacs/src/gmalloc.c 69 | ||
| 3076 | _realloc c-src/emacs/src/gmalloc.c /^_realloc (void *ptr, size_t size)$/ | ||
| 3077 | realloc c-src/emacs/src/gmalloc.c /^realloc (void *ptr, size_t size)$/ | ||
| 3078 | reallochook 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)$/ | ||
| 3081 | RE_BACKSLASH_ESCAPE_IN_LISTS c-src/emacs/src/regex.h 47 | ||
| 3082 | RE_BK_PLUS_QM c-src/emacs/src/regex.h 52 | ||
| 3083 | RECC_ALNUM c-src/emacs/src/regex.h 610 | ||
| 3084 | RECC_ALPHA c-src/emacs/src/regex.h 610 | ||
| 3085 | RECC_ASCII c-src/emacs/src/regex.h 617 | ||
| 3086 | RECC_BLANK c-src/emacs/src/regex.h 615 | ||
| 3087 | RECC_CNTRL c-src/emacs/src/regex.h 613 | ||
| 3088 | RECC_DIGIT c-src/emacs/src/regex.h 614 | ||
| 3089 | RECC_ERROR c-src/emacs/src/regex.h 609 | ||
| 3090 | RECC_GRAPH c-src/emacs/src/regex.h 611 | ||
| 3091 | RECC_LOWER c-src/emacs/src/regex.h 612 | ||
| 3092 | RECC_MULTIBYTE c-src/emacs/src/regex.h 616 | ||
| 3093 | RECC_NONASCII c-src/emacs/src/regex.h 616 | ||
| 3094 | RECC_PRINT c-src/emacs/src/regex.h 611 | ||
| 3095 | RECC_PUNCT c-src/emacs/src/regex.h 613 | ||
| 3096 | RECC_SPACE c-src/emacs/src/regex.h 615 | ||
| 3097 | RECC_UNIBYTE c-src/emacs/src/regex.h 617 | ||
| 3098 | RECC_UPPER c-src/emacs/src/regex.h 612 | ||
| 3099 | RECC_WORD c-src/emacs/src/regex.h 610 | ||
| 3100 | RECC_XDIGIT c-src/emacs/src/regex.h 614 | ||
| 3101 | recent_keys c-src/emacs/src/keyboard.c 100 | ||
| 3102 | recent-keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, / | ||
| 3103 | recent_keys_index c-src/emacs/src/keyboard.c 94 | ||
| 3104 | RE_CHAR_CLASSES c-src/emacs/src/regex.h 58 | ||
| 3105 | RE_CONTEXT_INDEP_ANCHORS c-src/emacs/src/regex.h 72 | ||
| 3106 | RE_CONTEXT_INDEP_OPS c-src/emacs/src/regex.h 80 | ||
| 3107 | RE_CONTEXT_INVALID_OPS c-src/emacs/src/regex.h 84 | ||
| 3108 | record_asynch_buffer_change c-src/emacs/src/keyboard.c /^record_asynch_buffer_change (void)$/ | ||
| 3109 | record_auto_save c-src/emacs/src/keyboard.c /^record_auto_save (void)$/ | ||
| 3110 | record_char c-src/emacs/src/keyboard.c /^record_char (Lisp_Object c)$/ | ||
| 3111 | record_menu_key c-src/emacs/src/keyboard.c /^record_menu_key (Lisp_Object c)$/ | ||
| 3112 | record_single_kboard_state c-src/emacs/src/keyboard.c /^record_single_kboard_state ()$/ | ||
| 3113 | record_xmalloc c-src/emacs/src/lisp.h /^extern void *record_xmalloc (size_t) ATTRIBUTE_ALL/ | ||
| 3114 | recover_top_level_message c-src/emacs/src/keyboard.c 138 | ||
| 3115 | Rectangle.getPos lua-src/test.lua /^function Rectangle.getPos ()$/ | ||
| 3116 | recursion-depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/ | ||
| 3117 | recursive_edit_1 c-src/emacs/src/keyboard.c /^recursive_edit_1 (void)$/ | ||
| 3118 | recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/ | ||
| 3119 | recursive_edit_unwind c-src/emacs/src/keyboard.c /^recursive_edit_unwind (Lisp_Object buffer)$/ | ||
| 3120 | RED cp-src/screen.hpp 16 | ||
| 3121 | RE_DEBUG c-src/emacs/src/regex.h 161 | ||
| 3122 | redirect c-src/emacs/src/lisp.h 663 | ||
| 3123 | RE_DOT_NEWLINE c-src/emacs/src/regex.h 88 | ||
| 3124 | RE_DOT_NOT_NULL c-src/emacs/src/regex.h 92 | ||
| 3125 | reduce prol-src/natded.prolog /^reduce((X^M)@N,L):- % beta reduction$/ | ||
| 3126 | reduce_subterm prol-src/natded.prolog /^reduce_subterm(M,M2):-$/ | ||
| 3127 | RE_DUP_MAX c-src/emacs/src/regex.h 253 | ||
| 3128 | RE_DUP_MAX c-src/emacs/src/regex.h 256 | ||
| 3129 | /ReEncode ps-src/rfc1245.ps /^\/ReEncode { $/ | ||
| 3130 | refreshPort pyt-src/server.py /^ def refreshPort(self):$/ | ||
| 3131 | RE_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{%$/ | ||
| 3134 | REG_BADBR c-src/emacs/src/regex.h 313 | ||
| 3135 | REG_BADPAT c-src/emacs/src/regex.h 305 | ||
| 3136 | REG_BADRPT c-src/emacs/src/regex.h 316 | ||
| 3137 | REG_EBRACE c-src/emacs/src/regex.h 312 | ||
| 3138 | REG_EBRACK c-src/emacs/src/regex.h 310 | ||
| 3139 | REG_ECOLLATE c-src/emacs/src/regex.h 306 | ||
| 3140 | REG_ECTYPE c-src/emacs/src/regex.h 307 | ||
| 3141 | REG_EEND c-src/emacs/src/regex.h 319 | ||
| 3142 | REG_EESCAPE c-src/emacs/src/regex.h 308 | ||
| 3143 | REG_ENOSYS c.c 279 | ||
| 3144 | REG_ENOSYS c-src/emacs/src/regex.h 297 | ||
| 3145 | REG_EPAREN c-src/emacs/src/regex.h 311 | ||
| 3146 | REG_ERANGE c-src/emacs/src/regex.h 314 | ||
| 3147 | REG_ERANGEX c-src/emacs/src/regex.h 322 | ||
| 3148 | REG_ERPAREN c-src/emacs/src/regex.h 321 | ||
| 3149 | reg_errcode_t c.c 279 | ||
| 3150 | reg_errcode_t c-src/emacs/src/regex.h 323 | ||
| 3151 | REG_ESIZE c-src/emacs/src/regex.h 320 | ||
| 3152 | REG_ESPACE c-src/emacs/src/regex.h 315 | ||
| 3153 | REG_ESUBREG c-src/emacs/src/regex.h 309 | ||
| 3154 | regex c-src/etags.c 219 | ||
| 3155 | regexfile make-src/Makefile /^regexfile: Makefile$/ | ||
| 3156 | _REGEX_H c-src/emacs/src/regex.h 21 | ||
| 3157 | REGEX make-src/Makefile /^REGEX=\/[ \\t]*DEFVAR_[A-Z_ \\t\\n(]+"\\([^"]+\\)"\/$/ | ||
| 3158 | REGEXOBJS make-src/Makefile /^REGEXOBJS=regex.o$/ | ||
| 3159 | regex.o make-src/Makefile /^regex.o: emacs\/src\/regex.c$/ | ||
| 3160 | regexp c-src/etags.c 256 | ||
| 3161 | regexp c-src/etags.c 268 | ||
| 3162 | regex_tag_multiline c-src/etags.c /^regex_tag_multiline (void)$/ | ||
| 3163 | regex_t c-src/emacs/src/regex.h 416 | ||
| 3164 | REG_EXTENDED c-src/emacs/src/regex.h 263 | ||
| 3165 | REG_ICASE c-src/emacs/src/regex.h 267 | ||
| 3166 | registerAction objcpp-src/SimpleCalc.M /^- registerAction:(SEL)action$/ | ||
| 3167 | register_heapinfo c-src/emacs/src/gmalloc.c /^register_heapinfo (void)$/ | ||
| 3168 | regmatch_t c-src/emacs/src/regex.h 451 | ||
| 3169 | REG_NEWLINE c-src/emacs/src/regex.h 272 | ||
| 3170 | REG_NOERROR c-src/emacs/src/regex.h 300 | ||
| 3171 | REG_NOMATCH c-src/emacs/src/regex.h 301 | ||
| 3172 | REG_NOSUB c-src/emacs/src/regex.h 276 | ||
| 3173 | REG_NOTBOL c-src/emacs/src/regex.h 286 | ||
| 3174 | REG_NOTEOL c-src/emacs/src/regex.h 289 | ||
| 3175 | regoff_t c-src/emacs/src/regex.h 423 | ||
| 3176 | regs_allocated c-src/emacs/src/regex.h 379 | ||
| 3177 | regs cp-src/screen.cpp 16 | ||
| 3178 | regs c-src/etags.c 263 | ||
| 3179 | regset c-src/h.h 31 | ||
| 3180 | REGS_FIXED c-src/emacs/src/regex.h 378 | ||
| 3181 | REGS_REALLOCATE c-src/emacs/src/regex.h 377 | ||
| 3182 | REGS_UNALLOCATED c-src/emacs/src/regex.h 376 | ||
| 3183 | reg_syntax_t c-src/emacs/src/regex.h 43 | ||
| 3184 | regular_top_level_message c-src/emacs/src/keyboard.c 143 | ||
| 3185 | rehash_size c-src/emacs/src/lisp.h 1835 | ||
| 3186 | rehash_threshold c-src/emacs/src/lisp.h 1839 | ||
| 3187 | RE_HAT_LISTS_NOT_NEWLINE c-src/emacs/src/regex.h 96 | ||
| 3188 | RE_INTERVALS c-src/emacs/src/regex.h 101 | ||
| 3189 | re_iswctype c-src/emacs/src/regex.h 602 | ||
| 3190 | relative_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$/ | ||
| 3196 | release distrib make-src/Makefile /^release distrib: web$/ | ||
| 3197 | RELEASELIST make-src/Makefile /^RELEASELIST=pot@gnu.org xemacs-review@xemacs.org j/ | ||
| 3198 | ReleaseNameString pas-src/common.pas /^procedure ReleaseNameString; (* (var NSP: NameStri/ | ||
| 3199 | RE_LIMITED_OPS c-src/emacs/src/regex.h 105 | ||
| 3200 | removeexp prol-src/natded.prolog /^removeexp(E,E,'NIL'):-!.$/ | ||
| 3201 | RemoveLayer lua-src/allegro.lua /^function RemoveLayer ()$/ | ||
| 3202 | RemoveUnderlineControl pas-src/common.pas /^function RemoveUnderlineControl; (*($/ | ||
| 3203 | RE_NEWLINE_ALT c-src/emacs/src/regex.h 109 | ||
| 3204 | RE_NO_BK_BRACES c-src/emacs/src/regex.h 114 | ||
| 3205 | RE_NO_BK_PARENS c-src/emacs/src/regex.h 118 | ||
| 3206 | RE_NO_BK_REFS c-src/emacs/src/regex.h 122 | ||
| 3207 | RE_NO_BK_VBAR c-src/emacs/src/regex.h 126 | ||
| 3208 | RE_NO_EMPTY_RANGES c-src/emacs/src/regex.h 132 | ||
| 3209 | RE_NO_GNU_OPS c-src/emacs/src/regex.h 144 | ||
| 3210 | RE_NO_NEWLINE_ANCHOR c-src/emacs/src/regex.h 153 | ||
| 3211 | RE_NO_POSIX_BACKTRACKING c-src/emacs/src/regex.h 140 | ||
| 3212 | RE_NREGS c-src/emacs/src/regex.h 440 | ||
| 3213 | re_nsub c-src/emacs/src/regex.h 364 | ||
| 3214 | reorder_modifiers c-src/emacs/src/keyboard.c /^reorder_modifiers (Lisp_Object symbol)$/ | ||
| 3215 | re_pattern_buffer c-src/emacs/src/regex.h 335 | ||
| 3216 | re_pattern_buffer c-src/h.h 119 | ||
| 3217 | ReprOfChar pas-src/common.pas /^function ReprOfChar; (*( ch : char) : NameString;*/ | ||
| 3218 | __repr__ pyt-src/server.py /^ def __repr__(self):$/ | ||
| 3219 | request c.c /^request request (a, b)$/ | ||
| 3220 | requeued_events_pending_p c-src/emacs/src/keyboard.c /^requeued_events_pending_p (void)$/ | ||
| 3221 | required_argument c-src/getopt.h 90 | ||
| 3222 | require merc-src/accumulator.m /^:- import_module require.$/ | ||
| 3223 | re_registers c-src/emacs/src/regex.h 428 | ||
| 3224 | \resetmathfonts tex-src/texinfo.tex /^\\def\\resetmathfonts{%$/ | ||
| 3225 | reset-this-command-lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/ | ||
| 3226 | RE_SHY_GROUPS c-src/emacs/src/regex.h 150 | ||
| 3227 | restore_getcjmp c-src/emacs/src/keyboard.c /^restore_getcjmp (sys_jmp_buf temp)$/ | ||
| 3228 | restore_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}$/ | ||
| 3237 | RESUME_POLLING c-src/emacs/src/keyboard.c 2170 | ||
| 3238 | RE_SYNTAX_AWK c-src/emacs/src/regex.h 186 | ||
| 3239 | RE_SYNTAX_ED c-src/emacs/src/regex.h 216 | ||
| 3240 | RE_SYNTAX_EGREP c-src/emacs/src/regex.h 206 | ||
| 3241 | RE_SYNTAX_EMACS c-src/emacs/src/regex.h 183 | ||
| 3242 | RE_SYNTAX_GNU_AWK c-src/emacs/src/regex.h 193 | ||
| 3243 | RE_SYNTAX_GREP c-src/emacs/src/regex.h 201 | ||
| 3244 | RE_SYNTAX_POSIX_AWK c-src/emacs/src/regex.h 197 | ||
| 3245 | RE_SYNTAX_POSIX_BASIC c-src/emacs/src/regex.h 225 | ||
| 3246 | _RE_SYNTAX_POSIX_COMMON c-src/emacs/src/regex.h 221 | ||
| 3247 | RE_SYNTAX_POSIX_EGREP c-src/emacs/src/regex.h 212 | ||
| 3248 | RE_SYNTAX_POSIX_EXTENDED c-src/emacs/src/regex.h 234 | ||
| 3249 | RE_SYNTAX_POSIX_MINIMAL_BASIC c-src/emacs/src/regex.h 231 | ||
| 3250 | RE_SYNTAX_POSIX_MINIMAL_EXTENDED c-src/emacs/src/regex.h 242 | ||
| 3251 | RE_SYNTAX_SED c-src/emacs/src/regex.h 218 | ||
| 3252 | RE_TRANSLATE_TYPE c-src/emacs/src/regex.h 332 | ||
| 3253 | return_to_command_loop c-src/emacs/src/keyboard.c 135 | ||
| 3254 | RETURN_UNGCPRO c-src/emacs/src/lisp.h /^#define RETURN_UNGCPRO(expr) \\$/ | ||
| 3255 | RE_UNMATCHED_RIGHT_PAREN_ORD c-src/emacs/src/regex.h 136 | ||
| 3256 | reverse prol-src/natded.prolog /^reverse([],Ws,Ws).$/ | ||
| 3257 | revert objc-src/PackInsp.m /^-revert:sender$/ | ||
| 3258 | re_wchar_t c-src/emacs/src/regex.h 600 | ||
| 3259 | re_wchar_t c-src/emacs/src/regex.h 623 | ||
| 3260 | re_wctype c-src/emacs/src/regex.h 601 | ||
| 3261 | re_wctype_t c-src/emacs/src/regex.h 599 | ||
| 3262 | re_wctype_t c-src/emacs/src/regex.h 618 | ||
| 3263 | re_wctype_to_bit c-src/emacs/src/regex.h /^# define re_wctype_to_bit(cc) 0$/ | ||
| 3264 | /RF ps-src/rfc1245.ps /^\/RF { $/ | ||
| 3265 | right c-src/etags.c 216 | ||
| 3266 | right_shift y-src/cccp.y /^right_shift (a, b)$/ | ||
| 3267 | ring1 c.c 241 | ||
| 3268 | ring2 c.c 242 | ||
| 3269 | rm_eo c-src/emacs/src/regex.h 450 | ||
| 3270 | rm_so c-src/emacs/src/regex.h 449 | ||
| 3271 | \rm tex-src/texinfo.tex /^\\def\\rm{\\realbackslash rm }%$/ | ||
| 3272 | rng_base cp-src/Range.h 79 | ||
| 3273 | rng_inc cp-src/Range.h 81 | ||
| 3274 | rng_limit cp-src/Range.h 80 | ||
| 3275 | rng_nelem cp-src/Range.h 83 | ||
| 3276 | rosso cp-src/c.C 40 | ||
| 3277 | /R ps-src/rfc1245.ps /^\/R { $/ | ||
| 3278 | /RR ps-src/rfc1245.ps /^\/RR { $/ | ||
| 3279 | RSH y-src/cccp.c 17 | ||
| 3280 | rsyncfromfly make-src/Makefile /^rsyncfromfly:$/ | ||
| 3281 | rsynctofly make-src/Makefile /^rsynctofly:$/ | ||
| 3282 | RTE/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$/ | ||
| 3286 | rtint c-src/h.h 60 | ||
| 3287 | rtint c-src/h.h 68 | ||
| 3288 | rtstr c-src/h.h 61 | ||
| 3289 | rtstr c-src/h.h 69 | ||
| 3290 | rtunion_def c-src/h.h 58 | ||
| 3291 | rtunion_def c-src/h.h 64 | ||
| 3292 | rtx c-src/h.h 62 | ||
| 3293 | rtxnp c-src/h.h 71 | ||
| 3294 | rtxp 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)$/ | ||
| 3304 | RUN make-src/Makefile /^RUN=$/ | ||
| 3305 | RUN make-src/Makefile /^RUN=time --quiet --format '%U + %S: %E'$/ | ||
| 3306 | RXINCLUDE make-src/Makefile /^RXINCLUDE=-Iemacs\/src$/ | ||
| 3307 | s1 cp-src/c.C 32 | ||
| 3308 | /s1 ps-src/rfc1245.ps /^\/s1 1 string def$/ | ||
| 3309 | s2 cp-src/c.C 35 | ||
| 3310 | SAFE_ALLOCA c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA(size) ((size) <= sa_avail \\/ | ||
| 3311 | SAFE_ALLOCA_LISP c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA_LISP(buf, nelt) \\$/ | ||
| 3312 | SAFE_ALLOCA_STRING c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA_STRING(ptr, string) \\$/ | ||
| 3313 | SAFE_FREE c-src/emacs/src/lisp.h /^#define SAFE_FREE() \\$/ | ||
| 3314 | SAFE_NALLOCA c-src/emacs/src/lisp.h /^#define SAFE_NALLOCA(buf, multiplier, nitems) \\/ | ||
| 3315 | safe_run_hook_funcall c-src/emacs/src/keyboard.c /^safe_run_hook_funcall (ptrdiff_t nargs, Lisp_Objec/ | ||
| 3316 | safe_run_hooks_1 c-src/emacs/src/keyboard.c /^safe_run_hooks_1 (ptrdiff_t nargs, Lisp_Object *ar/ | ||
| 3317 | safe_run_hooks c-src/emacs/src/keyboard.c /^safe_run_hooks (Lisp_Object hook)$/ | ||
| 3318 | safe_run_hooks_error c-src/emacs/src/keyboard.c /^safe_run_hooks_error (Lisp_Object error, ptrdiff_t/ | ||
| 3319 | Sample 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 / | ||
| 3324 | SAVE_FUNCPOINTER c-src/emacs/src/lisp.h 2049 | ||
| 3325 | save_getcjmp c-src/emacs/src/keyboard.c /^save_getcjmp (sys_jmp_buf temp)$/ | ||
| 3326 | SAVE_INTEGER c-src/emacs/src/lisp.h 2048 | ||
| 3327 | /savematrix ps-src/rfc1245.ps /^\/savematrix {$/ | ||
| 3328 | savenstr c-src/etags.c /^savenstr (const char *cp, int len)$/ | ||
| 3329 | SAVE_OBJECT c-src/emacs/src/lisp.h 2051 | ||
| 3330 | SAVE_POINTER c-src/emacs/src/lisp.h 2050 | ||
| 3331 | save pyt-src/server.py /^ def save(self):$/ | ||
| 3332 | SAVE_SLOT_BITS c-src/emacs/src/lisp.h 2055 | ||
| 3333 | savestr c-src/etags.c /^savestr (const char *cp)$/ | ||
| 3334 | SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2062 | ||
| 3335 | SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2114 | ||
| 3336 | SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2123 | ||
| 3337 | save_type c-src/emacs/src/lisp.h /^save_type (struct Lisp_Save_Value *v, int n)$/ | ||
| 3338 | SAVE_TYPE_FUNCPTR_PTR_OBJ c-src/emacs/src/lisp.h 2076 | ||
| 3339 | SAVE_TYPE_INT_INT c-src/emacs/src/lisp.h 2066 | ||
| 3340 | SAVE_TYPE_INT_INT_INT c-src/emacs/src/lisp.h 2067 | ||
| 3341 | SAVE_TYPE_MEMORY c-src/emacs/src/lisp.h 2080 | ||
| 3342 | SAVE_TYPE_OBJ_OBJ c-src/emacs/src/lisp.h 2069 | ||
| 3343 | SAVE_TYPE_OBJ_OBJ_OBJ c-src/emacs/src/lisp.h 2070 | ||
| 3344 | SAVE_TYPE_OBJ_OBJ_OBJ_OBJ c-src/emacs/src/lisp.h 2071 | ||
| 3345 | SAVE_TYPE_PTR_INT c-src/emacs/src/lisp.h 2073 | ||
| 3346 | SAVE_TYPE_PTR_OBJ c-src/emacs/src/lisp.h 2074 | ||
| 3347 | SAVE_TYPE_PTR_PTR c-src/emacs/src/lisp.h 2075 | ||
| 3348 | SAVE_UNUSED c-src/emacs/src/lisp.h 2047 | ||
| 3349 | SAVE_VALUEP c-src/emacs/src/lisp.h /^SAVE_VALUEP (Lisp_Object x)$/ | ||
| 3350 | SAVE_VALUE_SLOTS c-src/emacs/src/lisp.h 2058 | ||
| 3351 | say go-src/test.go /^func say(msg string) {$/ | ||
| 3352 | __sbrk c-src/emacs/src/gmalloc.c 1513 | ||
| 3353 | SBYTES c-src/emacs/src/lisp.h /^SBYTES (Lisp_Object string)$/ | ||
| 3354 | scan_separators c-src/etags.c /^scan_separators (char *name)$/ | ||
| 3355 | S c.c 156 | ||
| 3356 | SCHARS c-src/emacs/src/lisp.h /^SCHARS (Lisp_Object string)$/ | ||
| 3357 | Scheme_functions c-src/etags.c /^Scheme_functions (FILE *inf)$/ | ||
| 3358 | Scheme_help c-src/etags.c 667 | ||
| 3359 | Scheme_suffixes c-src/etags.c 665 | ||
| 3360 | scolonseen c-src/etags.c 2447 | ||
| 3361 | scratch c-src/sysdep.h 56 | ||
| 3362 | SCREEN_FP cp-src/screen.hpp /^#define SCREEN_FP(x,y) \\$/ | ||
| 3363 | SCREEN_START cp-src/screen.hpp 33 | ||
| 3364 | scroll_bar_parts c-src/emacs/src/keyboard.c 5189 | ||
| 3365 | s c-src/emacs/src/lisp.h 4672 | ||
| 3366 | s c-src/emacs/src/lisp.h 4678 | ||
| 3367 | \sc tex-src/texinfo.tex /^\\def\\sc#1{{\\smallcaps#1}} % smallcaps font$/ | ||
| 3368 | SDATA c-src/emacs/src/lisp.h /^SDATA (Lisp_Object string)$/ | ||
| 3369 | SDTrefGetInteger pas-src/common.pas /^function SDTrefGetInteger : integer;$/ | ||
| 3370 | SDTrefIsEnd pas-src/common.pas /^function SDTrefIsEnd : Boolean;$/ | ||
| 3371 | SDTrefRecToString pas-src/common.pas /^procedure SDTrefRecToString (* ($/ | ||
| 3372 | SDTrefSkipSpaces pas-src/common.pas /^procedure SDTrefSkipSpaces;$/ | ||
| 3373 | SDTrefStringToRec 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{$/ | ||
| 3383 | sec=\relax tex-src/texinfo.tex /^\\let\\appendixsec=\\relax$/ | ||
| 3384 | section_href perl-src/htlmify-cystic /^sub section_href ($)$/ | ||
| 3385 | section_name perl-src/htlmify-cystic 12 | ||
| 3386 | section_name perl-src/htlmify-cystic /^sub section_name ($)$/ | ||
| 3387 | section perl-src/htlmify-cystic 25 | ||
| 3388 | section=\relax tex-src/texinfo.tex /^\\let\\appendixsection=\\relax$/ | ||
| 3389 | section_toc perl-src/htlmify-cystic 15 | ||
| 3390 | section_url_base perl-src/htlmify-cystic /^sub section_url_base ()$/ | ||
| 3391 | section_url_name perl-src/htlmify-cystic /^sub section_url_name ()$/ | ||
| 3392 | section_url perl-src/htlmify-cystic /^sub section_url ()$/ | ||
| 3393 | \seczzz tex-src/texinfo.tex /^\\def\\seczzz #1{\\seccheck{section}%$/ | ||
| 3394 | select_last prol-src/natded.prolog /^select_last([X],X,[]).$/ | ||
| 3395 | SelectLayer lua-src/allegro.lua /^function SelectLayer (layer)$/ | ||
| 3396 | select prol-src/natded.prolog /^select(X,[X|Xs],Xs).$/ | ||
| 3397 | select-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table ()$/ | ||
| 3398 | select-tags-table-mode el-src/emacs/lisp/progmodes/etags.el /^(define-derived-mode select-tags-table-mode specia/ | ||
| 3399 | select-tags-table-mode-map el-src/emacs/lisp/progmodes/etags.el /^(defvar select-tags-table-mode-map ; Doc string?$/ | ||
| 3400 | select-tags-table-quit el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table-quit ()$/ | ||
| 3401 | select-tags-table-select el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table-select (button)$/ | ||
| 3402 | Self/f ada-src/2ataspri.adb /^ function Self return TCB_Ptr is$/ | ||
| 3403 | Self/f ada-src/2ataspri.ads /^ function Self return TCB_Ptr;$/ | ||
| 3404 | send objc-src/Subprocess.m /^- send:(const char *)string$/ | ||
| 3405 | send objc-src/Subprocess.m /^- send:(const char *)string withNewline:(BOOL)want/ | ||
| 3406 | separator_names c-src/emacs/src/keyboard.c 7372 | ||
| 3407 | serializeToVars php-src/lce_functions.php /^ function serializeToVars($prefix)$/ | ||
| 3408 | ServerEdit pyt-src/server.py /^class ServerEdit(Frame):$/ | ||
| 3409 | Server pyt-src/server.py /^class Server:$/ | ||
| 3410 | set_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/ | ||
| 3413 | set_char_table_contents c-src/emacs/src/lisp.h /^set_char_table_contents (Lisp_Object table, ptrdif/ | ||
| 3414 | set_char_table_defalt c-src/emacs/src/lisp.h /^set_char_table_defalt (Lisp_Object table, Lisp_Obj/ | ||
| 3415 | set_char_table_extras c-src/emacs/src/lisp.h /^set_char_table_extras (Lisp_Object table, ptrdiff_/ | ||
| 3416 | set_char_table_purpose c-src/emacs/src/lisp.h /^set_char_table_purpose (Lisp_Object table, Lisp_Ob/ | ||
| 3417 | set cp-src/conway.hpp /^ void set(void) { alive = 1; }$/ | ||
| 3418 | setDate 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}$/ | ||
| 3420 | setDelegate objc-src/Subprocess.m /^- setDelegate:anObject$/ | ||
| 3421 | \setfilename tex-src/texinfo.tex /^\\def\\setfilename{%$/ | ||
| 3422 | set_hash_key_slot c-src/emacs/src/lisp.h /^set_hash_key_slot (struct Lisp_Hash_Table *h, ptrd/ | ||
| 3423 | set_hash_value_slot c-src/emacs/src/lisp.h /^set_hash_value_slot (struct Lisp_Hash_Table *h, pt/ | ||
| 3424 | set_inc cp-src/Range.h /^ void set_inc (double i) { rng_inc = i; }$/ | ||
| 3425 | set-input-interrupt-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/ | ||
| 3426 | set-input-meta-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/ | ||
| 3427 | set-input-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/ | ||
| 3428 | set_limit cp-src/Range.h /^ void set_limit (double l) { rng_limit = l; }$/ | ||
| 3429 | /setmanualfeed ps-src/rfc1245.ps /^\/setmanualfeed {$/ | ||
| 3430 | set merc-src/accumulator.m /^:- import_module set.$/ | ||
| 3431 | set-output-flow-control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/ | ||
| 3432 | set_overlay_plist c-src/emacs/src/lisp.h /^set_overlay_plist (Lisp_Object overlay, Lisp_Objec/ | ||
| 3433 | Set_Own_Priority/p ada-src/2ataspri.adb /^ procedure Set_Own_Priority (Prio : System.Any_P/ | ||
| 3434 | Set_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 {$/ | ||
| 3437 | set_poll_suppress_count c-src/emacs/src/keyboard.c /^set_poll_suppress_count (int count)$/ | ||
| 3438 | Set_Priority/p ada-src/2ataspri.adb /^ procedure Set_Priority$/ | ||
| 3439 | Set_Priority/p ada-src/2ataspri.ads /^ procedure Set_Priority (T : TCB_Ptr; Prio : Sys/ | ||
| 3440 | set_prop c-src/emacs/src/keyboard.c /^set_prop (ptrdiff_t idx, Lisp_Object val)$/ | ||
| 3441 | SETPRT f-src/entry.for /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/ | ||
| 3442 | SETPRT f-src/entry.strange /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/ | ||
| 3443 | SETPRT f-src/entry.strange_suffix /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/ | ||
| 3444 | set-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{%$/ | ||
| 3446 | setref tex-src/texinfo.tex /^\\expandafter\\expandafter\\expandafter\\appendixsetre/ | ||
| 3447 | setRevertButtonTitle objc-src/PackInsp.m /^-setRevertButtonTitle$/ | ||
| 3448 | set_save_integer c-src/emacs/src/lisp.h /^set_save_integer (Lisp_Object obj, int n, ptrdiff_/ | ||
| 3449 | set_save_pointer c-src/emacs/src/lisp.h /^set_save_pointer (Lisp_Object obj, int n, void *va/ | ||
| 3450 | set_string_intervals c-src/emacs/src/lisp.h /^set_string_intervals (Lisp_Object s, INTERVAL i)$/ | ||
| 3451 | set_sub_char_table_contents c-src/emacs/src/lisp.h /^set_sub_char_table_contents (Lisp_Object table, pt/ | ||
| 3452 | SET_SYMBOL_BLV c-src/emacs/src/lisp.h /^SET_SYMBOL_BLV (struct Lisp_Symbol *sym, struct Li/ | ||
| 3453 | set_symbol_function c-src/emacs/src/lisp.h /^set_symbol_function (Lisp_Object sym, Lisp_Object / | ||
| 3454 | SET_SYMBOL_FWD c-src/emacs/src/lisp.h /^SET_SYMBOL_FWD (struct Lisp_Symbol *sym, union Lis/ | ||
| 3455 | set_symbol_next c-src/emacs/src/lisp.h /^set_symbol_next (Lisp_Object sym, struct Lisp_Symb/ | ||
| 3456 | set_symbol_plist c-src/emacs/src/lisp.h /^set_symbol_plist (Lisp_Object sym, Lisp_Object pli/ | ||
| 3457 | SET_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}}$/ | ||
| 3461 | setup cp-src/c.C 5 | ||
| 3462 | set_upto merc-src/accumulator.m /^:- func set_upto(accu_case, int) = set(accu_goal_i/ | ||
| 3463 | set_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}%$/ | ||
| 3468 | shift 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{%$/ | ||
| 3471 | should_attempt_accu_transform_2 merc-src/accumulator.m /^:- pred should_attempt_accu_transform_2(module_inf/ | ||
| 3472 | should_attempt_accu_transform merc-src/accumulator.m /^:- pred should_attempt_accu_transform(module_info:/ | ||
| 3473 | shouldLoad objc-src/PackInsp.m /^-(BOOL)shouldLoad$/ | ||
| 3474 | should_see_this_array_type cp-src/c.C 156 | ||
| 3475 | should_see_this_function_pointer cp-src/c.C 153 | ||
| 3476 | should_see_this_one_enclosed_in_extern_C cp-src/c.C 149 | ||
| 3477 | show erl-src/gs_dialog.erl /^show(Module, Title, Message, Args) ->$/ | ||
| 3478 | showError objc-src/Subprocess.m /^showError (const char *errorString, id theDelegate/ | ||
| 3479 | show_help_echo c-src/emacs/src/keyboard.c /^show_help_echo (Lisp_Object help, Lisp_Object wind/ | ||
| 3480 | showInfo objc-src/PackInsp.m /^-showInfo:sender$/ | ||
| 3481 | sig c-src/emacs/src/keyboard.c 7238 | ||
| 3482 | signal_handler1 c-src/h.h 83 | ||
| 3483 | signal_handler c-src/h.h 82 | ||
| 3484 | signal_handler_t c-src/h.h 94 | ||
| 3485 | SimpleCalc objcpp-src/SimpleCalc.H /^@interface SimpleCalc:Object$/ | ||
| 3486 | simulation 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}}$/ | ||
| 3489 | single_kboard c-src/emacs/src/keyboard.c 89 | ||
| 3490 | single_kboard_state c-src/emacs/src/keyboard.c /^single_kboard_state ()$/ | ||
| 3491 | SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c 6212 | ||
| 3492 | SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c 6763 | ||
| 3493 | SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c /^#define SINGLE_LETTER_MOD(BIT) \\$/ | ||
| 3494 | \singlespace tex-src/texinfo.tex /^\\def\\singlespace{%$/ | ||
| 3495 | site cp-src/conway.hpp 5 | ||
| 3496 | site cp-src/conway.hpp /^ site(int xi, int yi): x(xi), y(yi), alive(0) {/ | ||
| 3497 | size c-src/emacs/src/gmalloc.c 156 | ||
| 3498 | size c-src/emacs/src/gmalloc.c 163 | ||
| 3499 | size c-src/emacs/src/gmalloc.c 1862 | ||
| 3500 | size c-src/emacs/src/lisp.h 1364 | ||
| 3501 | size c-src/emacs/src/lisp.h 1390 | ||
| 3502 | size c-src/etags.c 236 | ||
| 3503 | size c-src/etags.c 2522 | ||
| 3504 | SIZEFORMAT objc-src/PackInsp.m 57 | ||
| 3505 | skeyseen c-src/etags.c 2445 | ||
| 3506 | SkipBlanks pas-src/common.pas /^function SkipBlanks; (*($/ | ||
| 3507 | SkipChars pas-src/common.pas /^function SkipChars; (*($/ | ||
| 3508 | skip_name c-src/etags.c /^skip_name (char *cp)$/ | ||
| 3509 | skip_non_spaces c-src/etags.c /^skip_non_spaces (char *cp)$/ | ||
| 3510 | skip_spaces c-src/etags.c /^skip_spaces (char *cp)$/ | ||
| 3511 | SkipSpaces 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/ | ||
| 3518 | snarf-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar snarf-tag-function nil$/ | ||
| 3519 | snone c-src/etags.c 2443 | ||
| 3520 | solutions merc-src/accumulator.m /^:- import_module solutions.$/ | ||
| 3521 | some_mouse_moved c-src/emacs/src/keyboard.c /^some_mouse_moved (void)$/ | ||
| 3522 | #some-storage forth-src/test-forth.fth /^2000 buffer: #some-storage$/ | ||
| 3523 | spacer c-src/emacs/src/lisp.h 1975 | ||
| 3524 | spacer c-src/emacs/src/lisp.h 1982 | ||
| 3525 | spacer c-src/emacs/src/lisp.h 2036 | ||
| 3526 | spacer c-src/emacs/src/lisp.h 2205 | ||
| 3527 | space tex-src/texinfo.tex /^ {#2\\labelspace #1}\\dotfill\\doshortpageno{#3}}%/ | ||
| 3528 | space tex-src/texinfo.tex /^ \\dosubsubsecentry{#2.#3.#4.#5\\labelspace#1}{#6}}/ | ||
| 3529 | specbinding c-src/emacs/src/lisp.h 2955 | ||
| 3530 | specbind_tag c-src/emacs/src/lisp.h 2943 | ||
| 3531 | specialsymbol prol-src/natded.prolog /^specialsymbol(C1,C2,S):-$/ | ||
| 3532 | SPECPDL_BACKTRACE c-src/emacs/src/lisp.h 2948 | ||
| 3533 | SPECPDL_INDEX c-src/emacs/src/lisp.h /^SPECPDL_INDEX (void)$/ | ||
| 3534 | SPECPDL_LET c-src/emacs/src/lisp.h 2949 | ||
| 3535 | SPECPDL_LET_DEFAULT c-src/emacs/src/lisp.h 2952 | ||
| 3536 | SPECPDL_LET_LOCAL c-src/emacs/src/lisp.h 2951 | ||
| 3537 | SPECPDL_UNWIND c-src/emacs/src/lisp.h 2944 | ||
| 3538 | SPECPDL_UNWIND_INT c-src/emacs/src/lisp.h 2946 | ||
| 3539 | SPECPDL_UNWIND_PTR c-src/emacs/src/lisp.h 2945 | ||
| 3540 | SPECPDL_UNWIND_VOID c-src/emacs/src/lisp.h 2947 | ||
| 3541 | splitexp 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}$/ | ||
| 3546 | Square.something:Bar lua-src/test.lua /^function Square.something:Bar ()$/ | ||
| 3547 | srclist make-src/Makefile /^srclist: Makefile$/ | ||
| 3548 | SRCS make-src/Makefile /^SRCS=Makefile ${ADASRC} ${ASRC} ${CSRC} ${CPSRC} $/ | ||
| 3549 | SREF c-src/emacs/src/lisp.h /^SREF (Lisp_Object string, ptrdiff_t index)$/ | ||
| 3550 | ss3 c.c 255 | ||
| 3551 | SSDATA c-src/emacs/src/lisp.h /^SSDATA (Lisp_Object string)$/ | ||
| 3552 | SSET c-src/emacs/src/lisp.h /^SSET (Lisp_Object string, ptrdiff_t index, unsigne/ | ||
| 3553 | sss1 c.c 252 | ||
| 3554 | sss2 c.c 253 | ||
| 3555 | sstab prol-src/natded.prolog /^sstab(2,'C',',').$/ | ||
| 3556 | stack c.c 155 | ||
| 3557 | STACK_CONS c-src/emacs/src/lisp.h /^#define STACK_CONS(a, b) \\$/ | ||
| 3558 | stagseen c-src/etags.c 2446 | ||
| 3559 | standalone make-src/Makefile /^standalone:$/ | ||
| 3560 | \startcontents tex-src/texinfo.tex /^\\def\\startcontents#1{%$/ | ||
| 3561 | start c-src/emacs/src/keyboard.c 8753 | ||
| 3562 | start c-src/emacs/src/lisp.h 2038 | ||
| 3563 | start c-src/emacs/src/regex.h 431 | ||
| 3564 | StartDay cp-src/functions.cpp /^Date StartDay(Date a,int days){\/\/Function to calcu/ | ||
| 3565 | \startenumeration tex-src/texinfo.tex /^\\def\\startenumeration#1{%$/ | ||
| 3566 | start php-src/lce_functions.php /^ function start($line, $class)$/ | ||
| 3567 | start_polling c-src/emacs/src/keyboard.c /^start_polling (void)$/ | ||
| 3568 | =starts-with-equals! scm-src/test.scm /^(define =starts-with-equals! #t)$/ | ||
| 3569 | start_up prol-src/natded.prolog /^start_up:-$/ | ||
| 3570 | start y-src/cccp.y 143 | ||
| 3571 | STATE_ABORT php-src/lce_functions.php 25 | ||
| 3572 | STATE_COMPRESSD objc-src/PackInsp.m 54 | ||
| 3573 | STATE_INSTALLED objc-src/PackInsp.m 53 | ||
| 3574 | STATE_LOOP php-src/lce_functions.php 27 | ||
| 3575 | STATE_OK php-src/lce_functions.php 26 | ||
| 3576 | state_protected_p c-src/emacs/src/gmalloc.c 400 | ||
| 3577 | STAT_EQ objc-src/PackInsp.m /^#define STAT_EQ(s1, s2) ((s1)->st_ino == (s2)->st_/ | ||
| 3578 | statetable html-src/algrthms.html /^Next$/ | ||
| 3579 | STATE_UNINSTALLED objc-src/PackInsp.m 52 | ||
| 3580 | staticetags make-src/Makefile /^staticetags:$/ | ||
| 3581 | st_C_attribute c-src/etags.c 2209 | ||
| 3582 | st_C_class c-src/etags.c 2212 | ||
| 3583 | st_C_define c-src/etags.c 2213 | ||
| 3584 | st_C_enum c-src/etags.c 2213 | ||
| 3585 | st_C_extern c-src/etags.c 2213 | ||
| 3586 | st_C_gnumacro c-src/etags.c 2208 | ||
| 3587 | st_C_ignore c-src/etags.c 2209 | ||
| 3588 | st_C_javastruct c-src/etags.c 2210 | ||
| 3589 | st_C_objend c-src/etags.c 2207 | ||
| 3590 | st_C_objimpl c-src/etags.c 2207 | ||
| 3591 | st_C_objprot c-src/etags.c 2207 | ||
| 3592 | st_C_operator c-src/etags.c 2211 | ||
| 3593 | st_C_struct c-src/etags.c 2213 | ||
| 3594 | st_C_template c-src/etags.c 2212 | ||
| 3595 | st_C_typedef c-src/etags.c 2213 | ||
| 3596 | STDIN c-src/etags.c 408 | ||
| 3597 | STDIN c-src/etags.c 411 | ||
| 3598 | step cp-src/clheir.hpp /^ virtual void step(void) { }$/ | ||
| 3599 | step cp-src/conway.hpp /^ void step(void) { alive = next_alive; }$/ | ||
| 3600 | step_everybody cp-src/clheir.cpp /^void step_everybody(void)$/ | ||
| 3601 | st_none c-src/etags.c 2206 | ||
| 3602 | STOP_POLLING c-src/emacs/src/keyboard.c 2166 | ||
| 3603 | stop_polling c-src/emacs/src/keyboard.c /^stop_polling (void)$/ | ||
| 3604 | stored_goal_plain_call merc-src/accumulator.m /^:- inst stored_goal_plain_call for goal_store.stor/ | ||
| 3605 | store_info merc-src/accumulator.m /^:- type store_info$/ | ||
| 3606 | store_user_signal_events c-src/emacs/src/keyboard.c /^store_user_signal_events (void)$/ | ||
| 3607 | strcaseeq c-src/etags.c /^#define strcaseeq(s,t) (assert ((s)!=NULL && (t)!=/ | ||
| 3608 | streq c-src/etags.c /^#define streq(s,t) (assert ((s)!=NULL || (t)!=NULL/ | ||
| 3609 | str go-src/test1.go 9 | ||
| 3610 | STRING_BYTES_BOUND c-src/emacs/src/lisp.h 1261 | ||
| 3611 | STRING_BYTES c-src/emacs/src/lisp.h /^STRING_BYTES (struct Lisp_String *s)$/ | ||
| 3612 | string_intervals c-src/emacs/src/lisp.h /^string_intervals (Lisp_Object s)$/ | ||
| 3613 | string merc-src/accumulator.m /^:- import_module string.$/ | ||
| 3614 | STRING_MULTIBYTE c-src/emacs/src/lisp.h /^STRING_MULTIBYTE (Lisp_Object str)$/ | ||
| 3615 | STRING_SET_CHARS c-src/emacs/src/lisp.h /^STRING_SET_CHARS (Lisp_Object string, ptrdiff_t ne/ | ||
| 3616 | STRING_SET_MULTIBYTE c-src/emacs/src/lisp.h /^#define STRING_SET_MULTIBYTE(STR) \\$/ | ||
| 3617 | STRING_SET_UNIBYTE c-src/emacs/src/lisp.h /^#define STRING_SET_UNIBYTE(STR) \\$/ | ||
| 3618 | stripLine php-src/lce_functions.php /^ function stripLine($line, $class)$/ | ||
| 3619 | stripname pas-src/common.pas /^function stripname; (* ($/ | ||
| 3620 | StripPath pas-src/common.pas /^function StripPath; (*($/ | ||
| 3621 | strncaseeq c-src/etags.c /^#define strncaseeq(s,t,n) (assert ((s)!=NULL && (t/ | ||
| 3622 | strneq c-src/etags.c /^#define strneq(s,t,n) (assert ((s)!=NULL || (t)!=N/ | ||
| 3623 | __str__ pyt-src/server.py /^ def __str__(self):$/ | ||
| 3624 | structdef c-src/etags.c 2448 | ||
| 3625 | stuff_buffered_input c-src/emacs/src/keyboard.c /^stuff_buffered_input (Lisp_Object stuffstring)$/ | ||
| 3626 | SUB_CHAR_TABLE_OFFSET c-src/emacs/src/lisp.h 1701 | ||
| 3627 | SUB_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}$/ | ||
| 3629 | subprocessDone objc-src/PackInsp.m /^-subprocessDone:(Subprocess *)sender$/ | ||
| 3630 | subprocess objc-src/PackInsp.m /^-subprocess:(Subprocess *)sender output:(char *)bu/ | ||
| 3631 | Subprocess objc-src/Subprocess.h 41 | ||
| 3632 | Subprocess objc-src/Subprocess.h /^@interface Subprocess:Object$/ | ||
| 3633 | SUBRP 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/ | ||
| 3640 | subsec=\relax tex-src/texinfo.tex /^\\let\\appendixsubsec=\\relax$/ | ||
| 3641 | subsection_marker perl-src/htlmify-cystic 161 | ||
| 3642 | subsection perl-src/htlmify-cystic 26 | ||
| 3643 | subsection=\relax tex-src/texinfo.tex /^\\let\\appendixsubsection=\\relax$/ | ||
| 3644 | substitute c-src/etags.c /^substitute (char *in, char *out, struct re_registe/ | ||
| 3645 | subst prol-src/natded.prolog /^subst(var(Y),var(X),M,N):-$/ | ||
| 3646 | SubString 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/ | ||
| 3653 | subsubsec=\relax tex-src/texinfo.tex /^\\let\\appendixsubsubsec=\\relax$/ | ||
| 3654 | subsubsection perl-src/htlmify-cystic 27 | ||
| 3655 | subsubsection=\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{#/ | ||
| 3659 | subtle ruby-src/test1.ru /^ :tee ; attr_reader :subtle$/ | ||
| 3660 | subtree prol-src/natded.prolog /^subtree(T,T).$/ | ||
| 3661 | suffix c-src/etags.c 186 | ||
| 3662 | suffixes c-src/etags.c 195 | ||
| 3663 | suggest_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 / | ||
| 3666 | suspend-emacs c-src/emacs/src/keyboard.c /^DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_e/ | ||
| 3667 | sval y-src/cccp.y 116 | ||
| 3668 | swallow_events c-src/emacs/src/keyboard.c /^swallow_events (bool do_display)$/ | ||
| 3669 | switch_line_buffers c-src/etags.c /^#define switch_line_buffers() (curndx = 1 - curndx/ | ||
| 3670 | sxhash_combine c-src/emacs/src/lisp.h /^sxhash_combine (EMACS_UINT x, EMACS_UINT y)$/ | ||
| 3671 | SXHASH_REDUCE c-src/emacs/src/lisp.h /^SXHASH_REDUCE (EMACS_UINT x)$/ | ||
| 3672 | SYMBOL_BLV c-src/emacs/src/lisp.h /^SYMBOL_BLV (struct Lisp_Symbol *sym)$/ | ||
| 3673 | SYMBOL_CONSTANT_P c-src/emacs/src/lisp.h /^# define SYMBOL_CONSTANT_P(sym) lisp_h_SYMBOL_CONS/ | ||
| 3674 | symbol c-src/emacs/src/lisp.h 2980 | ||
| 3675 | SYMBOL_FORWARDED c-src/emacs/src/lisp.h 651 | ||
| 3676 | SYMBOL_FWD c-src/emacs/src/lisp.h /^SYMBOL_FWD (struct Lisp_Symbol *sym)$/ | ||
| 3677 | SYMBOL_INDEX c-src/emacs/src/lisp.h /^#define SYMBOL_INDEX(sym) i##sym$/ | ||
| 3678 | symbol_interned c-src/emacs/src/lisp.h 639 | ||
| 3679 | SYMBOL_INTERNED c-src/emacs/src/lisp.h 642 | ||
| 3680 | SYMBOL_INTERNED_IN_INITIAL_OBARRAY c-src/emacs/src/lisp.h 643 | ||
| 3681 | SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P c-src/emacs/src/lisp.h /^SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P (Lisp_Object / | ||
| 3682 | SYMBOL_INTERNED_P c-src/emacs/src/lisp.h /^SYMBOL_INTERNED_P (Lisp_Object sym)$/ | ||
| 3683 | SYMBOL_LOCALIZED c-src/emacs/src/lisp.h 650 | ||
| 3684 | symbol_name c-src/emacs/src/lisp.h 1687 | ||
| 3685 | SYMBOL_NAME c-src/emacs/src/lisp.h /^SYMBOL_NAME (Lisp_Object sym)$/ | ||
| 3686 | SYMBOLP c-src/emacs/src/lisp.h /^# define SYMBOLP(x) lisp_h_SYMBOLP (x)$/ | ||
| 3687 | SYMBOL_PLAINVAL c-src/emacs/src/lisp.h 648 | ||
| 3688 | symbol_redirect c-src/emacs/src/lisp.h 646 | ||
| 3689 | SYMBOL_UNINTERNED c-src/emacs/src/lisp.h 641 | ||
| 3690 | SYMBOL_VAL c-src/emacs/src/lisp.h /^# define SYMBOL_VAL(sym) lisp_h_SYMBOL_VAL (sym)$/ | ||
| 3691 | SYMBOL_VARALIAS c-src/emacs/src/lisp.h 649 | ||
| 3692 | syms_of_abbrev c-src/abbrev.c /^syms_of_abbrev ()$/ | ||
| 3693 | syms_of_keyboard c-src/emacs/src/keyboard.c /^syms_of_keyboard (void)$/ | ||
| 3694 | sym_type c-src/etags.c 2204 | ||
| 3695 | synchronize_system_messages_locale c-src/emacs/src/lisp.h /^INLINE void synchronize_system_messages_locale (vo/ | ||
| 3696 | synchronize_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 {%$/ | ||
| 3699 | syntax c-src/emacs/src/regex.h 350 | ||
| 3700 | SYSCALL c-src/machsyscalls.c /^#define SYSCALL(name, number, type, args, typed_ar/ | ||
| 3701 | syscall_error c-src/sysdep.h 34 | ||
| 3702 | sys_jmp_buf c-src/emacs/src/lisp.h 2906 | ||
| 3703 | sys_jmp_buf c-src/emacs/src/lisp.h 2910 | ||
| 3704 | sys_jmp_buf c-src/emacs/src/lisp.h 2916 | ||
| 3705 | sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) _longjmp (j, v)$/ | ||
| 3706 | sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) longjmp (j, v)$/ | ||
| 3707 | sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) siglongjmp (j, v)$/ | ||
| 3708 | sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) _setjmp (j)$/ | ||
| 3709 | sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) setjmp (j)$/ | ||
| 3710 | sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) sigsetjmp (j, 0)$/ | ||
| 3711 | System.Task_Primitives/b ada-src/2ataspri.adb /^package body System.Task_Primitives is$/ | ||
| 3712 | System.Task_Primitives/s ada-src/2ataspri.ads /^package System.Task_Primitives is$/ | ||
| 3713 | t1 cp-src/c.C 34 | ||
| 3714 | t2 cp-src/c.C 38 | ||
| 3715 | T2 cp-src/fail.C 16 | ||
| 3716 | T3 c.c 163 | ||
| 3717 | tab_count_words c-src/tab.c /^int tab_count_words(char **tab)$/ | ||
| 3718 | tab_delete_first c-src/tab.c /^int tab_delete_first(char **tab)$/ | ||
| 3719 | tab_fill c-src/tab.c /^char **tab_fill(char *str, char delim)$/ | ||
| 3720 | tab_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{%$/ | ||
| 3723 | tag1 c-src/dostorture.c /^(*tag1 (sig, handler)) ()$/ | ||
| 3724 | tag1 c-src/h.h 110 | ||
| 3725 | tag1 c-src/torture.c /^(*tag1 (sig, handler)) ()$/ | ||
| 3726 | tag2 c-src/dostorture.c /^(*tag2 (sig, handler)) ()$/ | ||
| 3727 | tag2 c-src/torture.c /^(*tag2 (sig, handler)) ()$/ | ||
| 3728 | tag3 c-src/dostorture.c /^(*tag3 (int sig, void (*handler) (int))) (int)$/ | ||
| 3729 | tag3 c-src/torture.c /^(*tag3 (int sig, void (*handler) (int))) (int)$/ | ||
| 3730 | tag4 c-src/dostorture.c /^(*tag4 (int sig, void (*handler) (int))) (int)$/ | ||
| 3731 | tag4 c-src/torture.c /^(*tag4 (int sig, void (*handler) (int))) (int)$/ | ||
| 3732 | tag5 c-src/dostorture.c /^tag5 (handler, arg)$/ | ||
| 3733 | tag5 c-src/torture.c /^tag5 (handler, arg)$/ | ||
| 3734 | tag6 c-src/dostorture.c /^tag6 (void (*handler) (void *), void *arg)$/ | ||
| 3735 | tag6 c-src/torture.c /^tag6 (void (*handler) (void *), void *arg)$/ | ||
| 3736 | tag-any-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-any-match-p (_tag)$/ | ||
| 3737 | tag-exact-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-exact-file-name-match-p (tag)$/ | ||
| 3738 | tag-exact-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-exact-match-p (tag)$/ | ||
| 3739 | tag-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-file-name-match-p (tag)$/ | ||
| 3740 | tag-find-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun tag-find-file-of-tag (file) ; Doc string?$/ | ||
| 3741 | tag-find-file-of-tag-noselect el-src/emacs/lisp/progmodes/etags.el /^(defun tag-find-file-of-tag-noselect (file)$/ | ||
| 3742 | taggedfname c-src/etags.c 207 | ||
| 3743 | tag-implicit-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-implicit-name-match-p (tag)$/ | ||
| 3744 | tag-lines-already-matched el-src/emacs/lisp/progmodes/etags.el /^(defvar tag-lines-already-matched nil$/ | ||
| 3745 | tag_or_ch c-src/emacs/src/lisp.h 3026 | ||
| 3746 | tag-partial-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-partial-file-name-match-p (_tag)$/ | ||
| 3747 | TAG_PTR c-src/emacs/src/lisp.h /^#define TAG_PTR(tag, ptr) \\$/ | ||
| 3748 | tag-re-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-re-match-p (re)$/ | ||
| 3749 | tags-add-tables el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-add-tables 'ask-user$/ | ||
| 3750 | tags-apropos-additional-actions el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-additional-actions nil$/ | ||
| 3751 | tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun tags-apropos (regexp)$/ | ||
| 3752 | tags-apropos-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-apropos-function nil$/ | ||
| 3753 | tags-apropos-verbose el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-verbose nil$/ | ||
| 3754 | tags-case-fold-search el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-case-fold-search 'default$/ | ||
| 3755 | tags-complete-tags-table-file el-src/emacs/lisp/progmodes/etags.el /^(defun tags-complete-tags-table-file (string predi/ | ||
| 3756 | tags-completion-at-point-function el-src/emacs/lisp/progmodes/etags.el /^(defun tags-completion-at-point-function ()$/ | ||
| 3757 | tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-completion-table ()$/ | ||
| 3758 | tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-completion-table nil$/ | ||
| 3759 | tags-completion-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-completion-table-function nil$/ | ||
| 3760 | tags-compression-info-list el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-compression-info-list$/ | ||
| 3761 | tags-expand-table-name el-src/emacs/lisp/progmodes/etags.el /^(defun tags-expand-table-name (file)$/ | ||
| 3762 | tags-file-name el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-file-name nil$/ | ||
| 3763 | tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defun tags-included-tables ()$/ | ||
| 3764 | tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-included-tables nil$/ | ||
| 3765 | tags-included-tables-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-included-tables-function nil$/ | ||
| 3766 | tags-lazy-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-lazy-completion-table ()$/ | ||
| 3767 | tags-location-ring el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-location-ring (make-ring xref-marker-/ | ||
| 3768 | tags-loop-continue el-src/emacs/lisp/progmodes/etags.el /^(defun tags-loop-continue (&optional first-time)$/ | ||
| 3769 | tags-loop-eval el-src/emacs/lisp/progmodes/etags.el /^(defun tags-loop-eval (form)$/ | ||
| 3770 | tags-loop-operate el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-loop-operate nil$/ | ||
| 3771 | tags-loop-revert-buffers el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-loop-revert-buffers nil$/ | ||
| 3772 | tags-loop-scan el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-loop-scan$/ | ||
| 3773 | TAGS make-src/Makefile /^TAGS: etags.c$/ | ||
| 3774 | tags make-src/Makefile /^tags: TAGS$/ | ||
| 3775 | tags-next-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-next-table ()$/ | ||
| 3776 | tags-query-replace el-src/emacs/lisp/progmodes/etags.el /^(defun tags-query-replace (from to &optional delim/ | ||
| 3777 | tags-recognize-empty-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-recognize-empty-tags-table ()$/ | ||
| 3778 | tags-reset-tags-tables el-src/emacs/lisp/progmodes/etags.el /^(defun tags-reset-tags-tables ()$/ | ||
| 3779 | tags-revert-without-query el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-revert-without-query nil$/ | ||
| 3780 | tags-search el-src/emacs/lisp/progmodes/etags.el /^(defun tags-search (regexp &optional file-list-for/ | ||
| 3781 | tags-select-tags-table el-src/emacs/lisp/progmodes/etags.el /^(define-button-type 'tags-select-tags-table$/ | ||
| 3782 | tags-table-check-computed-list el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-check-computed-list ()$/ | ||
| 3783 | tags-table-computed-list el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-computed-list nil$/ | ||
| 3784 | tags-table-computed-list-for el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-computed-list-for nil$/ | ||
| 3785 | tags-table-extend-computed-list el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-extend-computed-list ()$/ | ||
| 3786 | tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-files ()$/ | ||
| 3787 | tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-files nil$/ | ||
| 3788 | tags-table-files-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-files-function nil$/ | ||
| 3789 | tags-table-format-functions el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-format-functions '(etags-recogn/ | ||
| 3790 | tags-table-including el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-including (this-file core-only)$/ | ||
| 3791 | tags-table-list el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-table-list nil$/ | ||
| 3792 | tags-table-list-member el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-list-member (file list)$/ | ||
| 3793 | tags-table-list-pointer el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-list-pointer nil$/ | ||
| 3794 | tags-table-list-started-at el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-list-started-at nil$/ | ||
| 3795 | tags-table-mode el-src/emacs/lisp/progmodes/etags.el /^(defun tags-table-mode ()$/ | ||
| 3796 | tags-table-set-list el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-set-list nil$/ | ||
| 3797 | tags-tag-face el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-tag-face 'default$/ | ||
| 3798 | tags-verify-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-verify-table (file)$/ | ||
| 3799 | tags-with-face el-src/emacs/lisp/progmodes/etags.el /^(defmacro tags-with-face (face &rest body)$/ | ||
| 3800 | tag-symbol-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-symbol-match-p (tag)$/ | ||
| 3801 | TAG_SYMOFFSET c-src/emacs/src/lisp.h /^#define TAG_SYMOFFSET(offset) \\$/ | ||
| 3802 | tag-word-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-word-match-p (tag)$/ | ||
| 3803 | Tapes tex-src/gzip.texi /^@node Tapes, Problems, Environment, Top$/ | ||
| 3804 | target_multibyte c-src/emacs/src/regex.h 407 | ||
| 3805 | TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is$/ | ||
| 3806 | TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is private;$/ | ||
| 3807 | Task_Control_Block/t ada-src/2ataspri.ads /^ type Task_Control_Block is record$/ | ||
| 3808 | Task_Storage_Size/t ada-src/2ataspri.ads /^ type Task_Storage_Size is new Interfaces.C.size/ | ||
| 3809 | Task_Type/b ada-src/etags-test-for.ada /^ task body Task_Type is$/ | ||
| 3810 | Task_Type/b ada-src/waroquiers.ada /^ task body Task_Type is$/ | ||
| 3811 | Task_Type/k ada-src/etags-test-for.ada /^ task type Task_Type is$/ | ||
| 3812 | Task_Type/k ada-src/waroquiers.ada /^ task type Task_Type is$/ | ||
| 3813 | TCB_Ptr/t ada-src/2ataspri.ads /^ type TCB_Ptr is access all Task_Control_Block;$/ | ||
| 3814 | TCLFLAGS 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 / | ||
| 3818 | tcpdump html-src/software.html /^tcpdump$/ | ||
| 3819 | t cp-src/c.C 52 | ||
| 3820 | T cp-src/fail.C 14 | ||
| 3821 | teats cp-src/c.C 127 | ||
| 3822 | tee ruby-src/test1.ru /^ attr_accessor :tee$/ | ||
| 3823 | tee= ruby-src/test1.ru /^ attr_accessor :tee$/ | ||
| 3824 | temporarily_switch_to_single_kboard c-src/emacs/src/keyboard.c /^temporarily_switch_to_single_kboard (struct frame / | ||
| 3825 | tend c-src/etags.c 2432 | ||
| 3826 | TERMINALP c-src/emacs/src/lisp.h /^TERMINALP (Lisp_Object a)$/ | ||
| 3827 | terminateInput objc-src/Subprocess.m /^- terminateInput$/ | ||
| 3828 | terminate objc-src/Subprocess.m /^- terminate:sender$/ | ||
| 3829 | term merc-src/accumulator.m /^:- import_module term.$/ | ||
| 3830 | test1 rs-src/test.rs /^fn test1() {$/ | ||
| 3831 | Test_Abort/p ada-src/2ataspri.adb /^ procedure Test_Abort is$/ | ||
| 3832 | Test_Abort/p ada-src/2ataspri.ads /^ procedure Test_Abort;$/ | ||
| 3833 | Test_And_Set/p ada-src/2ataspri.adb /^ procedure Test_And_Set (Cell : in out TAS_Cell;/ | ||
| 3834 | Test_And_Set/p ada-src/2ataspri.ads /^ procedure Test_And_Set (Cell : in out TAS_Cell;/ | ||
| 3835 | test-begin scm-src/test.scm /^(define-syntax test-begin$/ | ||
| 3836 | test cp-src/c.C 86 | ||
| 3837 | test c-src/emacs/src/lisp.h 1871 | ||
| 3838 | test erl-src/gs_dialog.erl /^test() ->$/ | ||
| 3839 | test go-src/test1.go /^func test(p plus) {$/ | ||
| 3840 | test make-src/Makefile /^test:$/ | ||
| 3841 | test.me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ | ||
| 3842 | test.me22b lua-src/test.lua /^ local function test.me22b (one)$/ | ||
| 3843 | TEST php-src/ptest.php 1 | ||
| 3844 | test php-src/ptest.php /^test $/ | ||
| 3845 | test_undefined c-src/emacs/src/keyboard.c /^test_undefined (Lisp_Object binding)$/ | ||
| 3846 | TEX_clgrp c-src/etags.c 4922 | ||
| 3847 | TeX_commands c-src/etags.c /^TeX_commands (FILE *inf)$/ | ||
| 3848 | TEX_decode_env c-src/etags.c /^TEX_decode_env (const char *evarname, const char */ | ||
| 3849 | TEX_defenv c-src/etags.c 4912 | ||
| 3850 | TEX_esc c-src/etags.c 4920 | ||
| 3851 | TeX_help c-src/etags.c 674 | ||
| 3852 | Texinfo_help c-src/etags.c 688 | ||
| 3853 | Texinfo_nodes c-src/etags.c /^Texinfo_nodes (FILE *inf)$/ | ||
| 3854 | Texinfo_suffixes c-src/etags.c 686 | ||
| 3855 | \texinfoversion tex-src/texinfo.tex /^\\def\\texinfoversion{2.73}$/ | ||
| 3856 | TEX_LESC c-src/etags.c 4986 | ||
| 3857 | TEX_mode c-src/etags.c /^TEX_mode (FILE *inf)$/ | ||
| 3858 | TEX_opgrp c-src/etags.c 4921 | ||
| 3859 | TEX_SESC c-src/etags.c 4987 | ||
| 3860 | TEXSRC 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$/ | ||
| 3889 | TeX_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{%$/ | ||
| 3894 | TEX_toktab c-src/etags.c 4908 | ||
| 3895 | texttreelist 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$/ | ||
| 3899 | there-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{}%$/ | ||
| 3903 | this_command_key_count c-src/emacs/src/keyboard.c 108 | ||
| 3904 | this_command_key_count_reset c-src/emacs/src/keyboard.c 112 | ||
| 3905 | this_command_keys c-src/emacs/src/keyboard.c 107 | ||
| 3906 | this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/ | ||
| 3907 | this-command-keys-vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/ | ||
| 3908 | this c-src/a/b/b.c 1 | ||
| 3909 | \thisfile tex-src/texinfo.tex /^\\def\\thisfile{}$/ | ||
| 3910 | this_file_toc perl-src/htlmify-cystic 29 | ||
| 3911 | this-single-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/ | ||
| 3912 | this_single_command_key_start c-src/emacs/src/keyboard.c 125 | ||
| 3913 | this-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/ | ||
| 3916 | tignore c-src/etags.c 2433 | ||
| 3917 | timer_check_2 c-src/emacs/src/keyboard.c /^timer_check_2 (Lisp_Object timers, Lisp_Object idl/ | ||
| 3918 | timer_check c-src/emacs/src/keyboard.c /^timer_check (void)$/ | ||
| 3919 | timer_idleness_start_time c-src/emacs/src/keyboard.c 335 | ||
| 3920 | timer_last_idleness_start_time c-src/emacs/src/keyboard.c 340 | ||
| 3921 | timer_resume_idle c-src/emacs/src/keyboard.c /^timer_resume_idle (void)$/ | ||
| 3922 | timers_run c-src/emacs/src/keyboard.c 320 | ||
| 3923 | timer_start_idle c-src/emacs/src/keyboard.c /^timer_start_idle (void)$/ | ||
| 3924 | timer_stop_idle c-src/emacs/src/keyboard.c /^timer_stop_idle (void)$/ | ||
| 3925 | Time_to_position c-src/emacs/src/keyboard.c /^Time_to_position (Time encoded_pos)$/ | ||
| 3926 | tinbody 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}}$/ | ||
| 3932 | tkeyseen c-src/etags.c 2429 | ||
| 3933 | tnone c-src/etags.c 2428 | ||
| 3934 | toc_line perl-src/htlmify-cystic /^sub toc_line ($)$/ | ||
| 3935 | \today tex-src/texinfo.tex /^\\def\\today{\\number\\day\\space$/ | ||
| 3936 | toggleDescription objc-src/PackInsp.m /^-toggleDescription$/ | ||
| 3937 | tok c-src/etags.c 2491 | ||
| 3938 | token c-src/etags.c 2508 | ||
| 3939 | tokenizeatom prol-src/natded.prolog /^tokenizeatom(Atom,Ws):-$/ | ||
| 3940 | tokenize prol-src/natded.prolog /^tokenize([C1,C2,C3|Cs],Xs-Ys,TsResult):- % spe/ | ||
| 3941 | tokentab2 y-src/cccp.y 442 | ||
| 3942 | token y-src/cccp.y 437 | ||
| 3943 | token y-src/cccp.y 439 | ||
| 3944 | To_Lower pas-src/common.pas /^function To_Lower;(*(ch:char) : char;*)$/ | ||
| 3945 | tool_bar_item_properties c-src/emacs/src/keyboard.c 7970 | ||
| 3946 | tool_bar_items c-src/emacs/src/keyboard.c /^tool_bar_items (Lisp_Object reuse, int *nitems)$/ | ||
| 3947 | tool_bar_items_vector c-src/emacs/src/keyboard.c 7965 | ||
| 3948 | toolkit_menubar_in_use c-src/emacs/src/keyboard.c /^toolkit_menubar_in_use (struct frame *f)$/ | ||
| 3949 | top_level_1 c-src/emacs/src/keyboard.c /^top_level_1 (Lisp_Object ignore)$/ | ||
| 3950 | top_level_2 c-src/emacs/src/keyboard.c /^top_level_2 (void)$/ | ||
| 3951 | top-level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, / | ||
| 3952 | top_level merc-src/accumulator.m /^:- type top_level$/ | ||
| 3953 | Top tex-src/gzip.texi /^@node Top, , , (dir)$/ | ||
| 3954 | \top tex-src/texinfo.tex /^\\outer\\def\\top{\\parsearg\\unnumberedzzz}$/ | ||
| 3955 | To_Start_Addr/f ada-src/2ataspri.adb /^ function To_Start_Addr is new$/ | ||
| 3956 | total_keys c-src/emacs/src/keyboard.c 97 | ||
| 3957 | TOTAL_KEYWORDS c-src/etags.c 2325 | ||
| 3958 | totally_unblock_input c-src/emacs/src/keyboard.c /^totally_unblock_input (void)$/ | ||
| 3959 | total_size_of_entries c-src/etags.c /^total_size_of_entries (register node *np)$/ | ||
| 3960 | total_surrounding cp-src/conway.cpp /^int site::total_surrounding(void)$/ | ||
| 3961 | To_TCB_Ptr/f ada-src/2ataspri.adb /^ function To_TCB_Ptr is new$/ | ||
| 3962 | To_Upper pas-src/common.pas /^function To_Upper;(*(ch:char) : char;*)$/ | ||
| 3963 | To_void_ptr/f ada-src/2ataspri.adb /^ function To_void_ptr is new$/ | ||
| 3964 | tpcmd c-src/h.h 15 | ||
| 3965 | tpcmd c-src/h.h 8 | ||
| 3966 | /T ps-src/rfc1245.ps /^\/T { $/ | ||
| 3967 | tracking_off c-src/emacs/src/keyboard.c /^tracking_off (Lisp_Object old_value)$/ | ||
| 3968 | track-mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/ | ||
| 3969 | traffic_light cp-src/conway.cpp /^void traffic_light(int x, int y)$/ | ||
| 3970 | translate c-src/emacs/src/regex.h 361 | ||
| 3971 | treats cp-src/c.C 131 | ||
| 3972 | Truc.Bidule/b ada-src/etags-test-for.ada /^package body Truc.Bidule is$/ | ||
| 3973 | Truc.Bidule/b ada-src/waroquiers.ada /^package body Truc.Bidule is$/ | ||
| 3974 | Truc.Bidule/s ada-src/etags-test-for.ada /^package Truc.Bidule is$/ | ||
| 3975 | Truc.Bidule/s ada-src/waroquiers.ada /^package Truc.Bidule is$/ | ||
| 3976 | Truc/s ada-src/etags-test-for.ada /^package Truc is$/ | ||
| 3977 | Truc/s ada-src/waroquiers.ada /^package Truc is$/ | ||
| 3978 | TSL/s ada-src/2ataspri.adb /^ package TSL renames System.Tasking_Soft_Links;$/ | ||
| 3979 | tt=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 / | ||
| 3982 | tt 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}$/ | ||
| 3985 | ttypeseen c-src/etags.c 2430 | ||
| 3986 | tty_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 \// | ||
| 3989 | typdef c-src/etags.c 2434 | ||
| 3990 | type c-src/emacs/src/gmalloc.c 145 | ||
| 3991 | type c-src/emacs/src/lisp.h 1973 | ||
| 3992 | type c-src/emacs/src/lisp.h 1980 | ||
| 3993 | type c-src/emacs/src/lisp.h 2034 | ||
| 3994 | type c-src/emacs/src/lisp.h 2112 | ||
| 3995 | type c-src/emacs/src/lisp.h 2203 | ||
| 3996 | type c-src/emacs/src/lisp.h 2276 | ||
| 3997 | type c-src/emacs/src/lisp.h 2286 | ||
| 3998 | type c-src/emacs/src/lisp.h 2296 | ||
| 3999 | type c-src/emacs/src/lisp.h 2304 | ||
| 4000 | type c-src/emacs/src/lisp.h 2364 | ||
| 4001 | type c-src/emacs/src/lisp.h 3025 | ||
| 4002 | type c-src/etags.c 2271 | ||
| 4003 | typefunargs tex-src/texinfo.tex /^\\deftypefunargs {#3}\\endgroup %$/ | ||
| 4004 | typefunargs tex-src/texinfo.tex /^\\deftypefunargs {#4}\\endgroup %$/ | ||
| 4005 | typemargin tex-src/texinfo.tex /^\\newskip\\deftypemargin \\deftypemargin=12pt$/ | ||
| 4006 | typemargin tex-src/texinfo.tex /^\\rlap{\\rightline{{\\rm #2}\\hskip \\deftypemargin}}}%/ | ||
| 4007 | TYPE_RANGED_INTEGERP c-src/emacs/src/lisp.h /^#define TYPE_RANGED_INTEGERP(type, x) \\$/ | ||
| 4008 | Type_Specific_Data/t ada-src/etags-test-for.ada /^ type Type_Specific_Data is record$/ | ||
| 4009 | TYPESTOSTAT objc-src/PackInsp.h 37 | ||
| 4010 | /Uacute ps-src/rfc1245.ps /^\/Uacute \/Ucircumflex \/Ugrave \/dotlessi \/circumflex/ | ||
| 4011 | u_any c-src/emacs/src/lisp.h 2214 | ||
| 4012 | u_boolfwd c-src/emacs/src/lisp.h 2371 | ||
| 4013 | u_buffer_objfwd c-src/emacs/src/lisp.h 2373 | ||
| 4014 | UCHAR c-src/emacs/src/lisp.h 2424 | ||
| 4015 | _UCHAR_T c-src/emacs/src/lisp.h 2423 | ||
| 4016 | U_CHAR y-src/cccp.y 38 | ||
| 4017 | u c-src/emacs/src/lisp.h 2397 | ||
| 4018 | /udieresis ps-src/rfc1245.ps /^\/udieresis \/dagger \/.notdef \/cent \/sterling \/secti/ | ||
| 4019 | u_finalizer c-src/emacs/src/lisp.h 2219 | ||
| 4020 | u_free c-src/emacs/src/lisp.h 2215 | ||
| 4021 | u_intfwd c-src/emacs/src/lisp.h 2370 | ||
| 4022 | u_kboard_objfwd c-src/emacs/src/lisp.h 2374 | ||
| 4023 | u_marker c-src/emacs/src/lisp.h 2216 | ||
| 4024 | unargs tex-src/texinfo.tex /^\\defunargs {#2}\\endgroup %$/ | ||
| 4025 | unargs tex-src/texinfo.tex /^\\defunargs {#3}\\endgroup %$/ | ||
| 4026 | UNARY y-src/cccp.c 18 | ||
| 4027 | unblock_input c-src/emacs/src/keyboard.c /^unblock_input (void)$/ | ||
| 4028 | unblock_input_to c-src/emacs/src/keyboard.c /^unblock_input_to (int level)$/ | ||
| 4029 | unchar c-src/h.h 99 | ||
| 4030 | UNDEFINED c-src/h.h 118 | ||
| 4031 | UNEVALLED c-src/emacs/src/lisp.h 2834 | ||
| 4032 | unexpand-abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/ | ||
| 4033 | UNGCPRO c-src/emacs/src/lisp.h 3202 | ||
| 4034 | UNGCPRO c-src/emacs/src/lisp.h 3257 | ||
| 4035 | UNGCPRO c-src/emacs/src/lisp.h 3353 | ||
| 4036 | univ merc-src/accumulator.m /^:- import_module univ.$/ | ||
| 4037 | UNLOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define UNLOCK_ALIGNED_BLOCKS() \\$/ | ||
| 4038 | UNLOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define UNLOCK_ALIGNED_BLOCKS()$/ | ||
| 4039 | UNLOCK c-src/emacs/src/gmalloc.c /^#define UNLOCK() \\$/ | ||
| 4040 | UNLOCK c-src/emacs/src/gmalloc.c /^#define UNLOCK()$/ | ||
| 4041 | Unlock/p ada-src/2ataspri.adb /^ procedure Unlock (L : in out Lock) is$/ | ||
| 4042 | Unlock/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/ | ||
| 4062 | unravel_univ merc-src/accumulator.m /^:- some [T] pred unravel_univ(univ::in, T::out) is/ | ||
| 4063 | unread_switch_frame c-src/emacs/src/keyboard.c 204 | ||
| 4064 | UNSIGNED_CMP c-src/emacs/src/lisp.h /^#define UNSIGNED_CMP(a, op, b) \\$/ | ||
| 4065 | unsignedp y-src/cccp.y 112 | ||
| 4066 | unwind c-src/emacs/src/lisp.h 2962 | ||
| 4067 | unwind_int c-src/emacs/src/lisp.h 2972 | ||
| 4068 | unwind_ptr c-src/emacs/src/lisp.h 2967 | ||
| 4069 | unwind_void c-src/emacs/src/lisp.h 2976 | ||
| 4070 | u_objfwd c-src/emacs/src/lisp.h 2372 | ||
| 4071 | u_overlay c-src/emacs/src/lisp.h 2217 | ||
| 4072 | __up c.c 160 | ||
| 4073 | update_accumulator_pred merc-src/accumulator.m /^:- pred update_accumulator_pred(pred_id::in, proc_/ | ||
| 4074 | \uppercaseenumerate tex-src/texinfo.tex /^\\def\\uppercaseenumerate{%$/ | ||
| 4075 | uprintmax_t c-src/emacs/src/lisp.h 149 | ||
| 4076 | uprintmax_t c-src/emacs/src/lisp.h 154 | ||
| 4077 | /U ps-src/rfc1245.ps /^\/U { $/ | ||
| 4078 | usage perl-src/yagrip.pl /^sub usage {$/ | ||
| 4079 | u_save_value c-src/emacs/src/lisp.h 2218 | ||
| 4080 | usecharno c-src/etags.c 210 | ||
| 4081 | used c-src/emacs/src/regex.h 347 | ||
| 4082 | used_syntax c-src/emacs/src/regex.h 398 | ||
| 4083 | USE_LSB_TAG c-src/emacs/src/lisp.h 271 | ||
| 4084 | USE_LSB_TAG c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (bool, USE_LSB_TAG)$/ | ||
| 4085 | USE_PTHREAD c-src/emacs/src/gmalloc.c 25 | ||
| 4086 | user_cmp_function c-src/emacs/src/lisp.h 1814 | ||
| 4087 | UserEdit pyt-src/server.py /^class UserEdit(Frame):$/ | ||
| 4088 | user_error c-src/emacs/src/keyboard.c /^user_error (const char *msg)$/ | ||
| 4089 | user_hash_function c-src/emacs/src/lisp.h 1811 | ||
| 4090 | User pyt-src/server.py /^class User:$/ | ||
| 4091 | user_signal_info c-src/emacs/src/keyboard.c 7235 | ||
| 4092 | user_signals c-src/emacs/src/keyboard.c 7250 | ||
| 4093 | USE_SAFE_ALLOCA c-src/emacs/src/lisp.h 4560 | ||
| 4094 | USE_STACK_CONS c-src/emacs/src/lisp.h 4689 | ||
| 4095 | USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4652 | ||
| 4096 | USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4658 | ||
| 4097 | USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4659 | ||
| 4098 | USE_STACK_STRING c-src/emacs/src/lisp.h 4691 | ||
| 4099 | usfreelock_ptr/t ada-src/etags-test-for.ada /^ type usfreelock_ptr is access$/ | ||
| 4100 | Vabbrev_start_location_buffer c-src/abbrev.c 66 | ||
| 4101 | Vabbrev_start_location c-src/abbrev.c 63 | ||
| 4102 | Vabbrev_table_name_list c-src/abbrev.c 43 | ||
| 4103 | VALBITS c-src/emacs/src/lisp.h 246 | ||
| 4104 | valcell c-src/emacs/src/lisp.h 2357 | ||
| 4105 | val c-src/emacs/src/lisp.h 3027 | ||
| 4106 | val c-src/emacs/src/lisp.h 691 | ||
| 4107 | val c-src/getopt.h 84 | ||
| 4108 | validate php-src/lce_functions.php /^ function validate($value)$/ | ||
| 4109 | valid c-src/etags.c 220 | ||
| 4110 | valid c-src/etags.c 2502 | ||
| 4111 | valloc c-src/emacs/src/gmalloc.c /^valloc (size_t size)$/ | ||
| 4112 | VALMASK c-src/emacs/src/lisp.h 829 | ||
| 4113 | VALMASK c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (EMACS_INT, VALMASK)$/ | ||
| 4114 | VAL_MAX c-src/emacs/src/lisp.h 263 | ||
| 4115 | val prol-src/natded.prolog /^val(X) --> ['['], valseq(X), [']'].$/ | ||
| 4116 | valseq prol-src/natded.prolog /^valseq([Val|Vals]) --> val(Val), plusvalseq(Vals)./ | ||
| 4117 | ValToNmStr pas-src/common.pas /^function ValToNmStr; (*($/ | ||
| 4118 | value c-src/emacs/src/lisp.h 687 | ||
| 4119 | value y-src/cccp.y 112 | ||
| 4120 | varargs tex-src/texinfo.tex /^\\defvarargs {#2}\\endgroup %$/ | ||
| 4121 | varargs tex-src/texinfo.tex /^\\defvarargs {#3}\\endgroup %$/ | ||
| 4122 | var c-src/emacs/src/keyboard.c 11023 | ||
| 4123 | var c-src/emacs/src/lisp.h 3137 | ||
| 4124 | varset 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}}$/ | ||
| 4127 | vcopy c-src/emacs/src/lisp.h /^vcopy (Lisp_Object v, ptrdiff_t offset, Lisp_Objec/ | ||
| 4128 | VECSIZE c-src/emacs/src/lisp.h /^#define VECSIZE(type) \\$/ | ||
| 4129 | vectorlike_header c-src/emacs/src/lisp.h 1343 | ||
| 4130 | VECTORLIKEP c-src/emacs/src/lisp.h /^# define VECTORLIKEP(x) lisp_h_VECTORLIKEP (x)$/ | ||
| 4131 | VECTORP c-src/emacs/src/lisp.h /^VECTORP (Lisp_Object x)$/ | ||
| 4132 | verde cp-src/c.C 40 | ||
| 4133 | verify_ascii c-src/emacs/src/lisp.h /^# define verify_ascii(str) (str)$/ | ||
| 4134 | verify-tags-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar verify-tags-table-function nil$/ | ||
| 4135 | VERSION c-src/etags.c 789 | ||
| 4136 | VERSION erl-src/gs_dialog.erl /^-define(VERSION, '2001.1101').$/ | ||
| 4137 | VERSION objc-src/PackInsp.m 34 | ||
| 4138 | Vfundamental_mode_abbrev_table c-src/abbrev.c 52 | ||
| 4139 | Vglobal_abbrev_table c-src/abbrev.c 48 | ||
| 4140 | VHDLFLAGS make-src/Makefile /^VHDLFLAGS=--language=none --regex='\/[ \\t]*\\(ARCHIT/ | ||
| 4141 | vignore c-src/etags.c 2417 | ||
| 4142 | \vindex tex-src/texinfo.tex /^\\def\\vindex {\\vrindex}$/ | ||
| 4143 | visit-tags-table-buffer el-src/emacs/lisp/progmodes/etags.el /^(defun visit-tags-table-buffer (&optional cont)$/ | ||
| 4144 | visit-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun visit-tags-table (file &optional local)$/ | ||
| 4145 | Vlast_abbrev c-src/abbrev.c 70 | ||
| 4146 | Vlast_abbrev_text c-src/abbrev.c 75 | ||
| 4147 | Vlispy_mouse_stem c-src/emacs/src/keyboard.c 5172 | ||
| 4148 | void c-src/emacs/src/lisp.h /^INLINE void (check_cons_list) (void) { lisp_h_chec/ | ||
| 4149 | voidfuncptr c-src/emacs/src/lisp.h 2108 | ||
| 4150 | voidval 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/ | ||
| 4154 | waiting_for_input c-src/emacs/src/keyboard.c 150 | ||
| 4155 | WAIT_READING_MAX c-src/emacs/src/lisp.h 4281 | ||
| 4156 | WAIT_READING_MAX c-src/emacs/src/lisp.h 4283 | ||
| 4157 | wait_status_ptr_t c.c 161 | ||
| 4158 | WARNINGS make-src/Makefile /^WARNINGS=-pedantic -Wall -Wpointer-arith -Winline / | ||
| 4159 | warning y-src/cccp.y /^warning (msg)$/ | ||
| 4160 | /wbytes ps-src/rfc1245.ps /^\/wbytes { $/ | ||
| 4161 | WCHAR_TYPE_SIZE y-src/cccp.y 99 | ||
| 4162 | weak_alias c-src/emacs/src/gmalloc.c /^weak_alias (free, cfree)$/ | ||
| 4163 | weak c-src/emacs/src/lisp.h 1830 | ||
| 4164 | web ftp publish make-src/Makefile /^web ftp publish:$/ | ||
| 4165 | what c-src/etags.c 252 | ||
| 4166 | wheel_syms c-src/emacs/src/keyboard.c 4628 | ||
| 4167 | where cp-src/clheir.hpp 77 | ||
| 4168 | where c-src/emacs/src/lisp.h 2348 | ||
| 4169 | where c-src/emacs/src/lisp.h 2980 | ||
| 4170 | where_in_registry cp-src/clheir.hpp 15 | ||
| 4171 | WHITE cp-src/screen.hpp 27 | ||
| 4172 | /wh ps-src/rfc1245.ps /^\/wh { $/ | ||
| 4173 | WINDOW_CONFIGURATIONP c-src/emacs/src/lisp.h /^WINDOW_CONFIGURATIONP (Lisp_Object a)$/ | ||
| 4174 | WINDOWP c-src/emacs/src/lisp.h /^WINDOWP (Lisp_Object a)$/ | ||
| 4175 | WINDOWSNT c-src/etags.c 101 | ||
| 4176 | WINDOWSNT c-src/etags.c 102 | ||
| 4177 | windowWillClose objcpp-src/SimpleCalc.M /^- windowWillClose:sender$/ | ||
| 4178 | wipe_kboard c-src/emacs/src/keyboard.c /^wipe_kboard (KBOARD *kb)$/ | ||
| 4179 | womboid c-src/h.h 63 | ||
| 4180 | womboid c-src/h.h 75 | ||
| 4181 | word_size c-src/emacs/src/lisp.h 1473 | ||
| 4182 | WorkingDays cp-src/functions.cpp /^int WorkingDays(Date a, Date b){$/ | ||
| 4183 | WORKING objc-src/PackInsp.m 368 | ||
| 4184 | /W ps-src/rfc1245.ps /^\/W { $/ | ||
| 4185 | write1= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ | ||
| 4186 | write2= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ | ||
| 4187 | write_abbrev c-src/abbrev.c /^write_abbrev (sym, stream)$/ | ||
| 4188 | writebreaklex prol-src/natded.prolog /^writebreaklex([]).$/ | ||
| 4189 | writebreak prol-src/natded.prolog /^writebreak([]).$/ | ||
| 4190 | writecat prol-src/natded.prolog /^writecat(np(ind(sng),nm(_)),np,[],[]):-!.$/ | ||
| 4191 | write_classname c-src/etags.c /^write_classname (linebuffer *cn, const char *quali/ | ||
| 4192 | write_lex_cat prol-src/natded.prolog /^write_lex_cat(File):-$/ | ||
| 4193 | write_lex prol-src/natded.prolog /^write_lex(File):-$/ | ||
| 4194 | writelist prol-src/natded.prolog /^writelist([der(Ws)|Ws2]):-$/ | ||
| 4195 | writelistsubs prol-src/natded.prolog /^writelistsubs([],X):-$/ | ||
| 4196 | Write_Lock/p ada-src/2ataspri.adb /^ procedure Write_Lock (L : in out Lock; Ceiling_/ | ||
| 4197 | Write_Lock/p ada-src/2ataspri.ads /^ procedure Write_Lock (L : in out Lock; Ceiling_/ | ||
| 4198 | writenamestring pas-src/common.pas /^procedure writenamestring;(*($/ | ||
| 4199 | write php-src/lce_functions.php /^ function write()$/ | ||
| 4200 | write php-src/lce_functions.php /^ function write($save="yes")$/ | ||
| 4201 | writesubs prol-src/natded.prolog /^writesubs([]).$/ | ||
| 4202 | writesups prol-src/natded.prolog /^writesups([]).$/ | ||
| 4203 | write_xyc cp-src/screen.cpp /^void write_xyc(int x, int y, char c)$/ | ||
| 4204 | written 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}$/ | ||
| 4208 | XBOOL_VECTOR c-src/emacs/src/lisp.h /^XBOOL_VECTOR (Lisp_Object a)$/ | ||
| 4209 | XBUFFER c-src/emacs/src/lisp.h /^XBUFFER (Lisp_Object a)$/ | ||
| 4210 | XBUFFER_OBJFWD c-src/emacs/src/lisp.h /^XBUFFER_OBJFWD (union Lisp_Fwd *a)$/ | ||
| 4211 | xcar_addr c-src/emacs/src/lisp.h /^xcar_addr (Lisp_Object c)$/ | ||
| 4212 | XCAR c-src/emacs/src/lisp.h /^# define XCAR(c) lisp_h_XCAR (c)$/ | ||
| 4213 | x c.c 153 | ||
| 4214 | x c.c 179 | ||
| 4215 | x c.c 188 | ||
| 4216 | x c.c 189 | ||
| 4217 | xcdr_addr c-src/emacs/src/lisp.h /^xcdr_addr (Lisp_Object c)$/ | ||
| 4218 | XCDR c-src/emacs/src/lisp.h /^# define XCDR(c) lisp_h_XCDR (c)$/ | ||
| 4219 | XCHAR_TABLE c-src/emacs/src/lisp.h /^XCHAR_TABLE (Lisp_Object a)$/ | ||
| 4220 | XCHG_0 c-src/sysdep.h 47 | ||
| 4221 | XCHG_1 c-src/sysdep.h 48 | ||
| 4222 | XCHG_2 c-src/sysdep.h 49 | ||
| 4223 | XCHG_3 c-src/sysdep.h 50 | ||
| 4224 | XCHG_4 c-src/sysdep.h 51 | ||
| 4225 | XCHG_5 c-src/sysdep.h 52 | ||
| 4226 | XCONS c-src/emacs/src/lisp.h /^# define XCONS(a) lisp_h_XCONS (a)$/ | ||
| 4227 | x cp-src/c.C 53 | ||
| 4228 | x cp-src/c.C 80 | ||
| 4229 | x cp-src/clheir.hpp 49 | ||
| 4230 | x cp-src/clheir.hpp 58 | ||
| 4231 | x cp-src/conway.hpp 7 | ||
| 4232 | x cp-src/fail.C 10 | ||
| 4233 | x cp-src/fail.C 44 | ||
| 4234 | X c-src/h.h 100 | ||
| 4235 | XDEFUN c.c /^XDEFUN ("x-get-selection-internal", Fx_get_selecti/ | ||
| 4236 | xdiff make-src/Makefile /^xdiff: ETAGS EXTAGS ${infiles}$/ | ||
| 4237 | XFASTINT c-src/emacs/src/lisp.h /^# define XFASTINT(a) lisp_h_XFASTINT (a)$/ | ||
| 4238 | XFASTINT c-src/emacs/src/lisp.h /^XFASTINT (Lisp_Object a)$/ | ||
| 4239 | XFINALIZER c-src/emacs/src/lisp.h /^XFINALIZER (Lisp_Object a)$/ | ||
| 4240 | XFLOAT c-src/emacs/src/lisp.h /^XFLOAT (Lisp_Object a)$/ | ||
| 4241 | XFLOAT_DATA c-src/emacs/src/lisp.h /^XFLOAT_DATA (Lisp_Object f)$/ | ||
| 4242 | XFLOATINT c-src/emacs/src/lisp.h /^XFLOATINT (Lisp_Object n)$/ | ||
| 4243 | XFWDTYPE c-src/emacs/src/lisp.h /^XFWDTYPE (union Lisp_Fwd *a)$/ | ||
| 4244 | x-get-selection-internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/ | ||
| 4245 | x-get-selection-internal c.c /^ Fx_get_selection_internal, Sx_get_selection/ | ||
| 4246 | XHASH c-src/emacs/src/lisp.h /^# define XHASH(a) lisp_h_XHASH (a)$/ | ||
| 4247 | XHASH_TABLE c-src/emacs/src/lisp.h /^XHASH_TABLE (Lisp_Object a)$/ | ||
| 4248 | XIL c-src/emacs/src/lisp.h /^# define XIL(i) lisp_h_XIL (i)$/ | ||
| 4249 | XINT c-src/emacs/src/lisp.h /^# define XINT(a) lisp_h_XINT (a)$/ | ||
| 4250 | XINT c-src/emacs/src/lisp.h /^XINT (Lisp_Object a)$/ | ||
| 4251 | XINTPTR 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}$/ | ||
| 4256 | XLI_BUILTIN_LISPSYM c-src/emacs/src/lisp.h /^#define XLI_BUILTIN_LISPSYM(iname) TAG_SYMOFFSET (/ | ||
| 4257 | XLI c-src/emacs/src/lisp.h /^# define XLI(o) lisp_h_XLI (o)$/ | ||
| 4258 | xmalloc c-src/etags.c /^xmalloc (size_t size)$/ | ||
| 4259 | XMARKER c-src/emacs/src/lisp.h /^XMARKER (Lisp_Object a)$/ | ||
| 4260 | XMISCANY c-src/emacs/src/lisp.h /^XMISCANY (Lisp_Object a)$/ | ||
| 4261 | XMISC c-src/emacs/src/lisp.h /^XMISC (Lisp_Object a)$/ | ||
| 4262 | XMISCTYPE c-src/emacs/src/lisp.h /^XMISCTYPE (Lisp_Object a)$/ | ||
| 4263 | xnew c-src/etags.c /^#define xnew(n, Type) ((Type *) xmalloc ((n) / | ||
| 4264 | XOVERLAY c-src/emacs/src/lisp.h /^XOVERLAY (Lisp_Object a)$/ | ||
| 4265 | XPNTR c-src/emacs/src/lisp.h /^# define XPNTR(a) lisp_h_XPNTR (a)$/ | ||
| 4266 | XPROCESS 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{$/ | ||
| 4269 | xrealloc c-src/etags.c /^xrealloc (void *ptr, size_t size)$/ | ||
| 4270 | xref-etags-location el-src/emacs/lisp/progmodes/etags.el /^(defclass xref-etags-location (xref-location)$/ | ||
| 4271 | xref-location-line el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-line ((l xref-etags-lo/ | ||
| 4272 | xref-location-marker el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-marker ((l xref-etags-/ | ||
| 4273 | xref-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%$/ | ||
| 4276 | xrnew c-src/etags.c /^#define xrnew(op, n, Type) ((op) = (Type *) xreall/ | ||
| 4277 | XSAVE_FUNCPOINTER c-src/emacs/src/lisp.h /^XSAVE_FUNCPOINTER (Lisp_Object obj, int n)$/ | ||
| 4278 | XSAVE_INTEGER c-src/emacs/src/lisp.h /^XSAVE_INTEGER (Lisp_Object obj, int n)$/ | ||
| 4279 | XSAVE_OBJECT c-src/emacs/src/lisp.h /^XSAVE_OBJECT (Lisp_Object obj, int n)$/ | ||
| 4280 | XSAVE_POINTER c-src/emacs/src/lisp.h /^XSAVE_POINTER (Lisp_Object obj, int n)$/ | ||
| 4281 | XSAVE_VALUE c-src/emacs/src/lisp.h /^XSAVE_VALUE (Lisp_Object a)$/ | ||
| 4282 | XSETBOOL_VECTOR c-src/emacs/src/lisp.h /^#define XSETBOOL_VECTOR(a, b) (XSETPSEUDOVECTOR (a/ | ||
| 4283 | XSETBUFFER c-src/emacs/src/lisp.h /^#define XSETBUFFER(a, b) (XSETPSEUDOVECTOR (a, b, / | ||
| 4284 | XSETCDR c-src/emacs/src/lisp.h /^XSETCDR (Lisp_Object c, Lisp_Object n)$/ | ||
| 4285 | XSETCHAR_TABLE c-src/emacs/src/lisp.h /^#define XSETCHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a,/ | ||
| 4286 | XSETCOMPILED c-src/emacs/src/lisp.h /^#define XSETCOMPILED(a, b) (XSETPSEUDOVECTOR (a, b/ | ||
| 4287 | XSETCONS c-src/emacs/src/lisp.h /^#define XSETCONS(a, b) ((a) = make_lisp_ptr (b, Li/ | ||
| 4288 | XSETFASTINT c-src/emacs/src/lisp.h /^#define XSETFASTINT(a, b) ((a) = make_natnum (b))$/ | ||
| 4289 | XSETFLOAT c-src/emacs/src/lisp.h /^#define XSETFLOAT(a, b) ((a) = make_lisp_ptr (b, L/ | ||
| 4290 | XSET_HASH_TABLE c-src/emacs/src/lisp.h /^#define XSET_HASH_TABLE(VAR, PTR) \\$/ | ||
| 4291 | XSETINT c-src/emacs/src/lisp.h /^#define XSETINT(a, b) ((a) = make_number (b))$/ | ||
| 4292 | XSETMISC c-src/emacs/src/lisp.h /^#define XSETMISC(a, b) ((a) = make_lisp_ptr (b, Li/ | ||
| 4293 | XSETPROCESS c-src/emacs/src/lisp.h /^#define XSETPROCESS(a, b) (XSETPSEUDOVECTOR (a, b,/ | ||
| 4294 | XSETPSEUDOVECTOR c-src/emacs/src/lisp.h /^#define XSETPSEUDOVECTOR(a, b, code) \\$/ | ||
| 4295 | XSETPVECTYPE c-src/emacs/src/lisp.h /^#define XSETPVECTYPE(v, code) \\$/ | ||
| 4296 | XSETPVECTYPESIZE c-src/emacs/src/lisp.h /^#define XSETPVECTYPESIZE(v, code, lispsize, restsi/ | ||
| 4297 | XSETSTRING c-src/emacs/src/lisp.h /^#define XSETSTRING(a, b) ((a) = make_lisp_ptr (b, / | ||
| 4298 | XSETSUB_CHAR_TABLE c-src/emacs/src/lisp.h /^#define XSETSUB_CHAR_TABLE(a, b) (XSETPSEUDOVECTOR/ | ||
| 4299 | XSETSUBR c-src/emacs/src/lisp.h /^#define XSETSUBR(a, b) (XSETPSEUDOVECTOR (a, b, PV/ | ||
| 4300 | XSETSYMBOL c-src/emacs/src/lisp.h /^#define XSETSYMBOL(a, b) ((a) = make_lisp_symbol (/ | ||
| 4301 | XSETTERMINAL c-src/emacs/src/lisp.h /^#define XSETTERMINAL(a, b) (XSETPSEUDOVECTOR (a, b/ | ||
| 4302 | XSETTYPED_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define XSETTYPED_PSEUDOVECTOR(a, b, size, code) / | ||
| 4303 | XSETVECTOR c-src/emacs/src/lisp.h /^#define XSETVECTOR(a, b) ((a) = make_lisp_ptr (b, / | ||
| 4304 | XSETWINDOW_CONFIGURATION c-src/emacs/src/lisp.h /^#define XSETWINDOW_CONFIGURATION(a, b) \\$/ | ||
| 4305 | XSETWINDOW c-src/emacs/src/lisp.h /^#define XSETWINDOW(a, b) (XSETPSEUDOVECTOR (a, b, / | ||
| 4306 | XSTRING c-src/emacs/src/lisp.h /^XSTRING (Lisp_Object a)$/ | ||
| 4307 | XSUB_CHAR_TABLE c-src/emacs/src/lisp.h /^XSUB_CHAR_TABLE (Lisp_Object a)$/ | ||
| 4308 | XSUBR c-src/emacs/src/lisp.h /^XSUBR (Lisp_Object a)$/ | ||
| 4309 | XSYMBOL c-src/emacs/src/lisp.h /^# define XSYMBOL(a) lisp_h_XSYMBOL (a)$/ | ||
| 4310 | XSYMBOL c-src/emacs/src/lisp.h /^XSYMBOL (Lisp_Object a)$/ | ||
| 4311 | XTERMINAL c-src/emacs/src/lisp.h /^XTERMINAL (Lisp_Object a)$/ | ||
| 4312 | x tex-src/texinfo.tex /^\\refx{#1-snt}{} [\\printednodename], page\\tie\\refx{/ | ||
| 4313 | XTYPE c-src/emacs/src/lisp.h /^# define XTYPE(a) lisp_h_XTYPE (a)$/ | ||
| 4314 | XTYPE c-src/emacs/src/lisp.h /^XTYPE (Lisp_Object a)$/ | ||
| 4315 | XUNTAG c-src/emacs/src/lisp.h /^# define XUNTAG(a, type) lisp_h_XUNTAG (a, type)$/ | ||
| 4316 | XUNTAG c-src/emacs/src/lisp.h /^XUNTAG (Lisp_Object a, int type)$/ | ||
| 4317 | XWINDOW c-src/emacs/src/lisp.h /^XWINDOW (Lisp_Object a)$/ | ||
| 4318 | XX cp-src/x.cc 1 | ||
| 4319 | xx make-src/Makefile /^xx="this line is here because of a fontlock bug$/ | ||
| 4320 | xyz ruby-src/test1.ru /^ alias_method :xyz,$/ | ||
| 4321 | Xyzzy ruby-src/test1.ru 13 | ||
| 4322 | YACC c-src/etags.c 2199 | ||
| 4323 | Yacc_entries c-src/etags.c /^Yacc_entries (FILE *inf)$/ | ||
| 4324 | Yacc_help c-src/etags.c 693 | ||
| 4325 | Yacc_suffixes c-src/etags.c 691 | ||
| 4326 | \Yappendixletterandtype tex-src/texinfo.tex /^\\def\\Yappendixletterandtype{%$/ | ||
| 4327 | y cp-src/clheir.hpp 49 | ||
| 4328 | y cp-src/clheir.hpp 58 | ||
| 4329 | y cp-src/conway.hpp 7 | ||
| 4330 | Y c-src/h.h 100 | ||
| 4331 | YELLOW cp-src/screen.hpp 26 | ||
| 4332 | /yen ps-src/rfc1245.ps /^\/yen \/.notdef \/.notdef \/.notdef \/.notdef \/.notdef / | ||
| 4333 | y-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{%$/ | ||
| 4338 | YSRC make-src/Makefile /^YSRC=parse.y parse.c atest.y cccp.c cccp.y$/ | ||
| 4339 | \Ytitle tex-src/texinfo.tex /^\\def\\Ytitle{\\thischapter}$/ | ||
| 4340 | YYABORT /usr/share/bison/bison.simple 153 | ||
| 4341 | YYABORT /usr/share/bison/bison.simple 154 | ||
| 4342 | YYACCEPT /usr/share/bison/bison.simple 152 | ||
| 4343 | YYACCEPT /usr/share/bison/bison.simple 153 | ||
| 4344 | yyalloc /usr/share/bison/bison.simple 83 | ||
| 4345 | yyalloc /usr/share/bison/bison.simple 84 | ||
| 4346 | YYBACKUP /usr/share/bison/bison.simple /^#define YYBACKUP(Token, Value) \\$/ | ||
| 4347 | YYBISON y-src/cccp.c 4 | ||
| 4348 | YYBISON y-src/parse.c 4 | ||
| 4349 | yyclearin /usr/share/bison/bison.simple 149 | ||
| 4350 | yyclearin /usr/share/bison/bison.simple 150 | ||
| 4351 | yydebug /usr/share/bison/bison.simple 237 | ||
| 4352 | yydebug /usr/share/bison/bison.simple 238 | ||
| 4353 | YY_DECL_NON_LSP_VARIABLES /usr/share/bison/bison.simple 374 | ||
| 4354 | YY_DECL_VARIABLES /usr/share/bison/bison.simple 385 | ||
| 4355 | YY_DECL_VARIABLES /usr/share/bison/bison.simple 391 | ||
| 4356 | YYDPRINTF /usr/share/bison/bison.simple /^# define YYDPRINTF(Args) \\$/ | ||
| 4357 | YYDPRINTF /usr/share/bison/bison.simple /^# define YYDPRINTF(Args)$/ | ||
| 4358 | YYEMPTY /usr/share/bison/bison.simple 150 | ||
| 4359 | YYEMPTY /usr/share/bison/bison.simple 151 | ||
| 4360 | YYEOF /usr/share/bison/bison.simple 151 | ||
| 4361 | YYEOF /usr/share/bison/bison.simple 152 | ||
| 4362 | YYERRCODE /usr/share/bison/bison.simple 178 | ||
| 4363 | YYERRCODE /usr/share/bison/bison.simple 179 | ||
| 4364 | yyerrhandle /usr/share/bison/bison.simple 848 | ||
| 4365 | yyerrlab1 /usr/share/bison/bison.simple 823 | ||
| 4366 | yyerrok /usr/share/bison/bison.simple 148 | ||
| 4367 | yyerrok /usr/share/bison/bison.simple 149 | ||
| 4368 | YYERROR /usr/share/bison/bison.simple 154 | ||
| 4369 | YYERROR /usr/share/bison/bison.simple 155 | ||
| 4370 | yyerror y-src/cccp.y /^yyerror (s)$/ | ||
| 4371 | yyerrstatus /usr/share/bison/bison.simple 846 | ||
| 4372 | YYFAIL /usr/share/bison/bison.simple 158 | ||
| 4373 | YYFAIL /usr/share/bison/bison.simple 159 | ||
| 4374 | YYFPRINTF /usr/share/bison/bison.simple 225 | ||
| 4375 | YYFPRINTF /usr/share/bison/bison.simple 226 | ||
| 4376 | YYINITDEPTH /usr/share/bison/bison.simple 244 | ||
| 4377 | YYINITDEPTH /usr/share/bison/bison.simple 245 | ||
| 4378 | YYLEX /usr/share/bison/bison.simple 200 | ||
| 4379 | YYLEX /usr/share/bison/bison.simple 201 | ||
| 4380 | YYLEX /usr/share/bison/bison.simple 202 | ||
| 4381 | YYLEX /usr/share/bison/bison.simple 203 | ||
| 4382 | YYLEX /usr/share/bison/bison.simple 206 | ||
| 4383 | YYLEX /usr/share/bison/bison.simple 207 | ||
| 4384 | YYLEX /usr/share/bison/bison.simple 208 | ||
| 4385 | YYLEX /usr/share/bison/bison.simple 209 | ||
| 4386 | YYLEX /usr/share/bison/bison.simple 212 | ||
| 4387 | YYLEX /usr/share/bison/bison.simple 213 | ||
| 4388 | yylex y-src/cccp.y /^yylex ()$/ | ||
| 4389 | YYLLOC_DEFAULT /usr/share/bison/bison.simple /^# define YYLLOC_DEFAULT(Current, Rhs, N) \\$/ | ||
| 4390 | yylsp /usr/share/bison/bison.simple 748 | ||
| 4391 | yylsp /usr/share/bison/bison.simple 921 | ||
| 4392 | yyls /usr/share/bison/bison.simple 88 | ||
| 4393 | yyls /usr/share/bison/bison.simple 89 | ||
| 4394 | YYMAXDEPTH /usr/share/bison/bison.simple 255 | ||
| 4395 | YYMAXDEPTH /usr/share/bison/bison.simple 256 | ||
| 4396 | YYMAXDEPTH /usr/share/bison/bison.simple 259 | ||
| 4397 | YYMAXDEPTH /usr/share/bison/bison.simple 260 | ||
| 4398 | yymemcpy /usr/share/bison/bison.simple 264 | ||
| 4399 | yymemcpy /usr/share/bison/bison.simple 265 | ||
| 4400 | yymemcpy /usr/share/bison/bison.simple /^yymemcpy (char *yyto, const char *yyfrom, YYSIZE_T/ | ||
| 4401 | yynewstate /usr/share/bison/bison.simple 763 | ||
| 4402 | yynewstate /usr/share/bison/bison.simple 925 | ||
| 4403 | yyn /usr/share/bison/bison.simple 755 | ||
| 4404 | yyn /usr/share/bison/bison.simple 861 | ||
| 4405 | yyn /usr/share/bison/bison.simple 895 | ||
| 4406 | yyn /usr/share/bison/bison.simple 903 | ||
| 4407 | YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 351 | ||
| 4408 | YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 354 | ||
| 4409 | YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 358 | ||
| 4410 | YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 352 | ||
| 4411 | YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 355 | ||
| 4412 | YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 359 | ||
| 4413 | yyparse /usr/share/bison/bison.simple /^yyparse (YYPARSE_PARAM_ARG)$/ | ||
| 4414 | YYPOPSTACK /usr/share/bison/bison.simple 445 | ||
| 4415 | YYPOPSTACK /usr/share/bison/bison.simple 447 | ||
| 4416 | YYRECOVERING /usr/share/bison/bison.simple /^#define YYRECOVERING() (!!yyerrstatus)$/ | ||
| 4417 | yyresult /usr/share/bison/bison.simple 932 | ||
| 4418 | yyresult /usr/share/bison/bison.simple 939 | ||
| 4419 | yyresult /usr/share/bison/bison.simple 947 | ||
| 4420 | yyreturn /usr/share/bison/bison.simple 933 | ||
| 4421 | yyreturn /usr/share/bison/bison.simple 940 | ||
| 4422 | YYSIZE_T /usr/share/bison/bison.simple 128 | ||
| 4423 | YYSIZE_T /usr/share/bison/bison.simple 129 | ||
| 4424 | YYSIZE_T /usr/share/bison/bison.simple 131 | ||
| 4425 | YYSIZE_T /usr/share/bison/bison.simple 132 | ||
| 4426 | YYSIZE_T /usr/share/bison/bison.simple 136 | ||
| 4427 | YYSIZE_T /usr/share/bison/bison.simple 137 | ||
| 4428 | YYSIZE_T /usr/share/bison/bison.simple 140 | ||
| 4429 | YYSIZE_T /usr/share/bison/bison.simple 141 | ||
| 4430 | YYSIZE_T /usr/share/bison/bison.simple 145 | ||
| 4431 | YYSIZE_T /usr/share/bison/bison.simple 146 | ||
| 4432 | YYSIZE_T /usr/share/bison/bison.simple 51 | ||
| 4433 | YYSIZE_T /usr/share/bison/bison.simple 52 | ||
| 4434 | YYSIZE_T /usr/share/bison/bison.simple 56 | ||
| 4435 | YYSIZE_T /usr/share/bison/bison.simple 57 | ||
| 4436 | YYSIZE_T /usr/share/bison/bison.simple 71 | ||
| 4437 | YYSIZE_T /usr/share/bison/bison.simple 72 | ||
| 4438 | YYSIZE_T /usr/share/bison/bison.simple 75 | ||
| 4439 | YYSIZE_T /usr/share/bison/bison.simple 76 | ||
| 4440 | yyss /usr/share/bison/bison.simple 85 | ||
| 4441 | yyss /usr/share/bison/bison.simple 86 | ||
| 4442 | YYSTACK_ALLOC /usr/share/bison/bison.simple 50 | ||
| 4443 | YYSTACK_ALLOC /usr/share/bison/bison.simple 51 | ||
| 4444 | YYSTACK_ALLOC /usr/share/bison/bison.simple 55 | ||
| 4445 | YYSTACK_ALLOC /usr/share/bison/bison.simple 56 | ||
| 4446 | YYSTACK_ALLOC /usr/share/bison/bison.simple 59 | ||
| 4447 | YYSTACK_ALLOC /usr/share/bison/bison.simple 60 | ||
| 4448 | YYSTACK_ALLOC /usr/share/bison/bison.simple 78 | ||
| 4449 | YYSTACK_ALLOC /usr/share/bison/bison.simple 79 | ||
| 4450 | YYSTACK_BYTES /usr/share/bison/bison.simple /^# define YYSTACK_BYTES(N) \\$/ | ||
| 4451 | YYSTACK_FREE /usr/share/bison/bison.simple 79 | ||
| 4452 | YYSTACK_FREE /usr/share/bison/bison.simple 80 | ||
| 4453 | YYSTACK_FREE /usr/share/bison/bison.simple /^# define YYSTACK_FREE(Ptr) do { \/* empty *\/; } wh/ | ||
| 4454 | YYSTACK_GAP_MAX /usr/share/bison/bison.simple 93 | ||
| 4455 | YYSTACK_GAP_MAX /usr/share/bison/bison.simple 94 | ||
| 4456 | YYSTACK_RELOCATE /usr/share/bison/bison.simple 548 | ||
| 4457 | YYSTACK_RELOCATE /usr/share/bison/bison.simple /^# define YYSTACK_RELOCATE(Type, Stack) \\$/ | ||
| 4458 | yystate /usr/share/bison/bison.simple 757 | ||
| 4459 | yystate /usr/share/bison/bison.simple 761 | ||
| 4460 | yystate /usr/share/bison/bison.simple 875 | ||
| 4461 | yystate /usr/share/bison/bison.simple 924 | ||
| 4462 | YYSTD /usr/share/bison/bison.simple /^# define YYSTD(x) std::x$/ | ||
| 4463 | YYSTD /usr/share/bison/bison.simple /^# define YYSTD(x) x$/ | ||
| 4464 | yystpcpy /usr/share/bison/bison.simple 316 | ||
| 4465 | yystpcpy /usr/share/bison/bison.simple 317 | ||
| 4466 | yystpcpy /usr/share/bison/bison.simple /^yystpcpy (char *yydest, const char *yysrc)$/ | ||
| 4467 | yystrlen /usr/share/bison/bison.simple 293 | ||
| 4468 | yystrlen /usr/share/bison/bison.simple 294 | ||
| 4469 | yystrlen /usr/share/bison/bison.simple /^yystrlen (const char *yystr)$/ | ||
| 4470 | YYSTYPE y-src/parse.y 72 | ||
| 4471 | YYSTYPE y-src/parse.y 73 | ||
| 4472 | YYTERROR /usr/share/bison/bison.simple 177 | ||
| 4473 | YYTERROR /usr/share/bison/bison.simple 178 | ||
| 4474 | yyvsp /usr/share/bison/bison.simple 746 | ||
| 4475 | yyvsp /usr/share/bison/bison.simple 919 | ||
| 4476 | yyvs /usr/share/bison/bison.simple 86 | ||
| 4477 | yyvs /usr/share/bison/bison.simple 87 | ||
| 4478 | z c.c 144 | ||
| 4479 | z c.c 164 | ||
| 4480 | z cp-src/clheir.hpp 49 | ||
| 4481 | z cp-src/clheir.hpp 58 | ||
| 4482 | Z 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 | ||
| 64 | ediff%: ETAGS.good% ETAGS ${infiles} | 65 | ediff%: 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} | |||
| 67 | cdiff: CTAGS.good CTAGS ${infiles} | 68 | cdiff: 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 | ||
| 71 | ctags_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 | |||
| 70 | ETAGS: ${infiles} | 81 | ETAGS: ${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 @@ | |||
| 1 | test_crlf1 test_crlf.c /^void test_crlf1()$/ | ||
| 2 | test_crlf2 tset_crlf.c /^void test_crlf2()$/ | ||