diff options
| author | Eli Zaretskii | 2021-06-10 16:55:04 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2021-06-10 16:57:03 +0300 |
| commit | af4cccb8d98516ae96a3ebdc9a9eb7d7d8d5c1c5 (patch) | |
| tree | cfc7462c073e3726b7dfdd112fa7a768fb92ec82 | |
| parent | e27b531d5a61e37d5e7d453663f3ec1a08a76fb9 (diff) | |
| download | emacs-af4cccb8d98516ae96a3ebdc9a9eb7d7d8d5c1c5.tar.gz emacs-af4cccb8d98516ae96a3ebdc9a9eb7d7d8d5c1c5.zip | |
Support mercury in 'ctags' as well
The previous lack of support was due to incorrect calls to 'make_tag'
in 'mercury_pr', which caused 'pfnote' to refrain from adding Mercury
tags to the list of recorded tags.
* lib-src/etags.c (mercury_pr): Pass the correct NAME and NAMELEN
arguments to 'make_tag'.
* test/manual/etags/CTAGS.good: Adjust to the above change.
| -rw-r--r-- | lib-src/etags.c | 21 | ||||
| -rw-r--r-- | test/manual/etags/CTAGS.good | 114 |
2 files changed, 132 insertions, 3 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c index e5bd36c782f..9f20e44caf4 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -6399,7 +6399,7 @@ mercury_decl (char *s, size_t pos) | |||
| 6399 | { | 6399 | { |
| 6400 | if (strcmp (buf, "pred") != 0 && strcmp (buf, "func") != 0) /* Bad syntax. */ | 6400 | if (strcmp (buf, "pred") != 0 && strcmp (buf, "func") != 0) /* Bad syntax. */ |
| 6401 | return 0; | 6401 | return 0; |
| 6402 | is_mercury_quantifier = false; /* Beset to base value. */ | 6402 | is_mercury_quantifier = false; /* Reset to base value. */ |
| 6403 | found_decl_tag = true; | 6403 | found_decl_tag = true; |
| 6404 | } | 6404 | } |
| 6405 | else | 6405 | else |
| @@ -6530,7 +6530,7 @@ mercury_pr (char *s, char *last, ptrdiff_t lastlen) | |||
| 6530 | len0 = skip_spaces (s + 2) - s; | 6530 | len0 = skip_spaces (s + 2) - s; |
| 6531 | } | 6531 | } |
| 6532 | 6532 | ||
| 6533 | size_t len = mercury_decl (s , len0); | 6533 | size_t len = mercury_decl (s, len0); |
| 6534 | if (len == 0) return 0; | 6534 | if (len == 0) return 0; |
| 6535 | len += len0; | 6535 | len += len0; |
| 6536 | 6536 | ||
| @@ -6545,7 +6545,22 @@ mercury_pr (char *s, char *last, ptrdiff_t lastlen) | |||
| 6545 | the first line. */ | 6545 | the first line. */ |
| 6546 | || is_mercury_type) | 6546 | || is_mercury_type) |
| 6547 | { | 6547 | { |
| 6548 | make_tag (s, 0, true, s, len, lineno, linecharno); | 6548 | char *name = skip_non_spaces (s + len0); |
| 6549 | size_t namelen; | ||
| 6550 | if (name >= s + len) | ||
| 6551 | { | ||
| 6552 | name = s; | ||
| 6553 | namelen = len; | ||
| 6554 | } | ||
| 6555 | else | ||
| 6556 | { | ||
| 6557 | name = skip_spaces (name); | ||
| 6558 | namelen = len - (name - s); | ||
| 6559 | } | ||
| 6560 | /* Remove trailing non-name characters. */ | ||
| 6561 | while (namelen > 0 && notinname (name[namelen - 1])) | ||
| 6562 | namelen--; | ||
| 6563 | make_tag (name, namelen, true, s, len, lineno, linecharno); | ||
| 6549 | return len; | 6564 | return len; |
| 6550 | } | 6565 | } |
| 6551 | 6566 | ||
diff --git a/test/manual/etags/CTAGS.good b/test/manual/etags/CTAGS.good index 3cffd6d25ef..e265836fd2b 100644 --- a/test/manual/etags/CTAGS.good +++ b/test/manual/etags/CTAGS.good | |||
| @@ -2461,8 +2461,47 @@ abs/f ada-src/etags-test-for.ada /^ function "abs" (Right : Complex) return | |||
| 2461 | absolute_dirname c-src/etags.c /^absolute_dirname (char *file, char *dir)$/ | 2461 | absolute_dirname c-src/etags.c /^absolute_dirname (char *file, char *dir)$/ |
| 2462 | absolute_filename c-src/etags.c /^absolute_filename (char *file, char *dir)$/ | 2462 | absolute_filename c-src/etags.c /^absolute_filename (char *file, char *dir)$/ |
| 2463 | abt cp-src/c.C 55 | 2463 | abt cp-src/c.C 55 |
| 2464 | acc_pred_info merc-src/accumulator.m /^:- pred acc_pred_info(list(mer_type)::in, list(pro/ | ||
| 2465 | acc_proc_info merc-src/accumulator.m /^:- pred acc_proc_info(list(prog_var)::in, prog_var/ | ||
| 2466 | acc_unification merc-src/accumulator.m /^:- pred acc_unification(pair(prog_var)::in, hlds_g/ | ||
| 2467 | acc_var_subst_init merc-src/accumulator.m /^:- pred acc_var_subst_init(list(prog_var)::in,$/ | ||
| 2464 | accent_key_syms c-src/emacs/src/keyboard.c 4625 | 2468 | accent_key_syms c-src/emacs/src/keyboard.c 4625 |
| 2465 | access_keymap_keyremap c-src/emacs/src/keyboard.c /^access_keymap_keyremap (Lisp_Object map, Lisp_Obje/ | 2469 | access_keymap_keyremap c-src/emacs/src/keyboard.c /^access_keymap_keyremap (Lisp_Object map, Lisp_Obje/ |
| 2470 | accu_assoc merc-src/accumulator.m /^:- pred accu_assoc(module_info::in, vartypes::in, / | ||
| 2471 | accu_assoc merc-src/accumulator.m /^:- type accu_assoc$/ | ||
| 2472 | accu_base merc-src/accumulator.m /^:- type accu_base$/ | ||
| 2473 | accu_before merc-src/accumulator.m /^:- pred accu_before(module_info::in, vartypes::in,/ | ||
| 2474 | accu_case merc-src/accumulator.m /^:- type accu_case$/ | ||
| 2475 | accu_construct merc-src/accumulator.m /^:- pred accu_construct(module_info::in, vartypes::/ | ||
| 2476 | accu_construct_assoc merc-src/accumulator.m /^:- pred accu_construct_assoc(module_info::in, vart/ | ||
| 2477 | accu_create_goal merc-src/accumulator.m /^:- pred accu_create_goal(accu_goal_id::in, list(pr/ | ||
| 2478 | accu_divide_base_case merc-src/accumulator.m /^:- pred accu_divide_base_case(module_info::in, var/ | ||
| 2479 | accu_goal_id merc-src/accumulator.m /^:- type accu_goal_id$/ | ||
| 2480 | accu_goal_list merc-src/accumulator.m /^:- func accu_goal_list(list(accu_goal_id), accu_go/ | ||
| 2481 | accu_goal_store merc-src/accumulator.m /^:- type accu_goal_store == goal_store(accu_goal_id/ | ||
| 2482 | accu_has_heuristic merc-src/accumulator.m /^:- pred accu_has_heuristic(module_name::in, string/ | ||
| 2483 | accu_heuristic merc-src/accumulator.m /^:- pred accu_heuristic(module_name::in, string::in/ | ||
| 2484 | accu_is_associative merc-src/accumulator.m /^:- pred accu_is_associative(module_info::in, pred_/ | ||
| 2485 | accu_is_update merc-src/accumulator.m /^:- pred accu_is_update(module_info::in, pred_id::i/ | ||
| 2486 | accu_process_assoc_set merc-src/accumulator.m /^:- pred accu_process_assoc_set(module_info::in, ac/ | ||
| 2487 | accu_process_update_set merc-src/accumulator.m /^:- pred accu_process_update_set(module_info::in, a/ | ||
| 2488 | accu_related merc-src/accumulator.m /^:- pred accu_related(module_info::in, vartypes::in/ | ||
| 2489 | accu_rename merc-src/accumulator.m /^:- func accu_rename(list(accu_goal_id), accu_subst/ | ||
| 2490 | accu_sets merc-src/accumulator.m /^:- type accu_sets$/ | ||
| 2491 | accu_sets_init merc-src/accumulator.m /^:- pred accu_sets_init(accu_sets::out) is det.$/ | ||
| 2492 | accu_stage1 merc-src/accumulator.m /^:- pred accu_stage1(module_info::in, vartypes::in,/ | ||
| 2493 | accu_stage1_2 merc-src/accumulator.m /^:- pred accu_stage1_2(module_info::in, vartypes::i/ | ||
| 2494 | accu_stage2 merc-src/accumulator.m /^:- pred accu_stage2(module_info::in, proc_info::in/ | ||
| 2495 | accu_stage3 merc-src/accumulator.m /^:- pred accu_stage3(accu_goal_id::in, list(prog_va/ | ||
| 2496 | accu_standardize merc-src/accumulator.m /^:- pred accu_standardize(hlds_goal::in, hlds_goal:/ | ||
| 2497 | accu_store merc-src/accumulator.m /^:- pred accu_store(accu_case::in, hlds_goal::in,$/ | ||
| 2498 | accu_subst merc-src/accumulator.m /^:- type accu_subst == map(prog_var, prog_var).$/ | ||
| 2499 | accu_substs merc-src/accumulator.m /^:- type accu_substs$/ | ||
| 2500 | accu_substs_init merc-src/accumulator.m /^:- pred accu_substs_init(list(prog_var)::in, prog_/ | ||
| 2501 | accu_top_level merc-src/accumulator.m /^:- pred accu_top_level(top_level::in, hlds_goal::i/ | ||
| 2502 | accu_transform_proc merc-src/accumulator.m /^:- pred accu_transform_proc(pred_proc_id::in, pred/ | ||
| 2503 | accu_update merc-src/accumulator.m /^:- pred accu_update(module_info::in, vartypes::in,/ | ||
| 2504 | accu_warning merc-src/accumulator.m /^:- type accu_warning$/ | ||
| 2466 | act prol-src/natded.prolog /^act(OutForm,OutSyn,Ws):-$/ | 2505 | act prol-src/natded.prolog /^act(OutForm,OutSyn,Ws):-$/ |
| 2467 | action prol-src/natded.prolog /^action(KeyVals):-$/ | 2506 | action prol-src/natded.prolog /^action(KeyVals):-$/ |
| 2468 | active_maps c-src/emacs/src/keyboard.c /^active_maps (Lisp_Object first_event)$/ | 2507 | active_maps c-src/emacs/src/keyboard.c /^active_maps (Lisp_Object first_event)$/ |
| @@ -2534,6 +2573,8 @@ assemby-code-word forth-src/test-forth.fth /^code assemby-code-word ( dunno what | |||
| 2534 | assert c-src/etags.c 135 | 2573 | assert c-src/etags.c 135 |
| 2535 | assert c-src/etags.c /^# define assert(x) ((void) 0)$/ | 2574 | assert c-src/etags.c /^# define assert(x) ((void) 0)$/ |
| 2536 | assign_neighbor cp-src/clheir.hpp /^ void assign_neighbor(int direction, location */ | 2575 | assign_neighbor cp-src/clheir.hpp /^ void assign_neighbor(int direction, location */ |
| 2576 | assoc_list merc-src/accumulator.m /^:- import_module assoc_list.$/ | ||
| 2577 | associativity_assertion merc-src/accumulator.m /^:- pred associativity_assertion(module_info::in, l/ | ||
| 2537 | at_end c-src/etags.c 249 | 2578 | at_end c-src/etags.c 249 |
| 2538 | at_filename c-src/etags.c 247 | 2579 | at_filename c-src/etags.c 247 |
| 2539 | at_language c-src/etags.c 245 | 2580 | at_language c-src/etags.c 245 |
| @@ -2567,6 +2608,8 @@ bas_syn prol-src/natded.prolog /^bas_syn(n(_)).$/ | |||
| 2567 | base c-src/emacs/src/lisp.h 2188 | 2608 | base c-src/emacs/src/lisp.h 2188 |
| 2568 | base cp-src/c.C /^double base (void) const { return rng_base; }$/ | 2609 | base cp-src/c.C /^double base (void) const { return rng_base; }$/ |
| 2569 | base cp-src/Range.h /^ double base (void) const { return rng_base; }$/ | 2610 | base cp-src/Range.h /^ double base (void) const { return rng_base; }$/ |
| 2611 | base_case_ids merc-src/accumulator.m /^:- func base_case_ids(accu_goal_store) = list(accu/ | ||
| 2612 | base_case_ids_set merc-src/accumulator.m /^:- func base_case_ids_set(accu_goal_store) = set(a/ | ||
| 2570 | baz= ruby-src/test1.ru /^ :baz,$/ | 2613 | baz= ruby-src/test1.ru /^ :baz,$/ |
| 2571 | bb c.c 275 | 2614 | bb c.c 275 |
| 2572 | bbb c.c 251 | 2615 | bbb c.c 251 |
| @@ -2604,6 +2647,7 @@ bodyindent tex-src/texinfo.tex /^\\exdentamount=\\defbodyindent$/ | |||
| 2604 | bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by \\defbodyindent \\advance \\righ/ | 2647 | bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by \\defbodyindent \\advance \\righ/ |
| 2605 | bodyindent tex-src/texinfo.tex /^\\exdentamount=\\defbodyindent$/ | 2648 | bodyindent tex-src/texinfo.tex /^\\exdentamount=\\defbodyindent$/ |
| 2606 | bool c.c 222 | 2649 | bool c.c 222 |
| 2650 | bool merc-src/accumulator.m /^:- import_module bool.$/ | ||
| 2607 | bool_header_size c-src/emacs/src/lisp.h 1472 | 2651 | bool_header_size c-src/emacs/src/lisp.h 1472 |
| 2608 | bool_vector_bitref c-src/emacs/src/lisp.h /^bool_vector_bitref (Lisp_Object a, EMACS_INT i)$/ | 2652 | bool_vector_bitref c-src/emacs/src/lisp.h /^bool_vector_bitref (Lisp_Object a, EMACS_INT i)$/ |
| 2609 | bool_vector_bytes c-src/emacs/src/lisp.h /^bool_vector_bytes (EMACS_INT size)$/ | 2653 | bool_vector_bytes c-src/emacs/src/lisp.h /^bool_vector_bytes (EMACS_INT size)$/ |
| @@ -2645,6 +2689,7 @@ c_ext c-src/etags.c 2271 | |||
| 2645 | caccacacca c.c /^caccacacca (a,b,c,d,e,f,g)$/ | 2689 | caccacacca c.c /^caccacacca (a,b,c,d,e,f,g)$/ |
| 2646 | cacheLRUEntry_s c.c 172 | 2690 | cacheLRUEntry_s c.c 172 |
| 2647 | cacheLRUEntry_t c.c 177 | 2691 | cacheLRUEntry_t c.c 177 |
| 2692 | calculate_goal_info merc-src/accumulator.m /^:- pred calculate_goal_info(hlds_goal_expr::in, hl/ | ||
| 2648 | calloc c-src/emacs/src/gmalloc.c 66 | 2693 | calloc c-src/emacs/src/gmalloc.c 66 |
| 2649 | calloc c-src/emacs/src/gmalloc.c 70 | 2694 | calloc c-src/emacs/src/gmalloc.c 70 |
| 2650 | calloc c-src/emacs/src/gmalloc.c /^calloc (size_t nmemb, size_t size)$/ | 2695 | calloc c-src/emacs/src/gmalloc.c /^calloc (size_t nmemb, size_t size)$/ |
| @@ -2665,6 +2710,8 @@ cgrep html-src/software.html /^cgrep$/ | |||
| 2665 | chain c-src/emacs/src/lisp.h 1162 | 2710 | chain c-src/emacs/src/lisp.h 1162 |
| 2666 | chain c-src/emacs/src/lisp.h 2206 | 2711 | chain c-src/emacs/src/lisp.h 2206 |
| 2667 | chain c-src/emacs/src/lisp.h 2396 | 2712 | chain c-src/emacs/src/lisp.h 2396 |
| 2713 | chain_subst merc-src/accumulator.m /^:- func chain_subst(accu_subst, accu_subst) = accu/ | ||
| 2714 | chain_subst_2 merc-src/accumulator.m /^:- pred chain_subst_2(list(A)::in, map(A, B)::in, / | ||
| 2668 | char_bits c-src/emacs/src/lisp.h 2443 | 2715 | char_bits c-src/emacs/src/lisp.h 2443 |
| 2669 | char_table_specials c-src/emacs/src/lisp.h 1692 | 2716 | char_table_specials c-src/emacs/src/lisp.h 1692 |
| 2670 | charpos c-src/emacs/src/lisp.h 2011 | 2717 | charpos c-src/emacs/src/lisp.h 2011 |
| @@ -2707,6 +2754,7 @@ command_loop_1 c-src/emacs/src/keyboard.c /^command_loop_1 (void)$/ | |||
| 2707 | command_loop_2 c-src/emacs/src/keyboard.c /^command_loop_2 (Lisp_Object ignore)$/ | 2754 | command_loop_2 c-src/emacs/src/keyboard.c /^command_loop_2 (Lisp_Object ignore)$/ |
| 2708 | command_loop_level c-src/emacs/src/keyboard.c 195 | 2755 | command_loop_level c-src/emacs/src/keyboard.c 195 |
| 2709 | comment php-src/lce_functions.php /^ function comment($line, $class)$/ | 2756 | comment php-src/lce_functions.php /^ function comment($line, $class)$/ |
| 2757 | commutativity_assertion merc-src/accumulator.m /^:- pred commutativity_assertion(module_info::in,li/ | ||
| 2710 | compile_empty prol-src/natded.prolog /^compile_empty:-$/ | 2758 | compile_empty prol-src/natded.prolog /^compile_empty:-$/ |
| 2711 | compile_lex prol-src/natded.prolog /^compile_lex(File):-$/ | 2759 | compile_lex prol-src/natded.prolog /^compile_lex(File):-$/ |
| 2712 | complete prol-src/natded.prolog /^complete(Cat):-$/ | 2760 | complete prol-src/natded.prolog /^complete(Cat):-$/ |
| @@ -2740,6 +2788,13 @@ create-bar forth-src/test-forth.fth /^: create-bar foo ;$/ | |||
| 2740 | createPOEntries php-src/lce_functions.php /^ function createPOEntries()$/ | 2788 | createPOEntries php-src/lce_functions.php /^ function createPOEntries()$/ |
| 2741 | createWidgets pyt-src/server.py /^ def createWidgets(self, host):$/ | 2789 | createWidgets pyt-src/server.py /^ def createWidgets(self, host):$/ |
| 2742 | createWidgets pyt-src/server.py /^ def createWidgets(self):$/ | 2790 | createWidgets pyt-src/server.py /^ def createWidgets(self):$/ |
| 2791 | create_acc_call merc-src/accumulator.m /^:- func create_acc_call(hlds_goal::in(goal_plain_c/ | ||
| 2792 | create_acc_goal merc-src/accumulator.m /^:- pred create_acc_goal(hlds_goal::in, accu_substs/ | ||
| 2793 | create_new_base_goals merc-src/accumulator.m /^:- func create_new_base_goals(set(accu_goal_id), a/ | ||
| 2794 | create_new_orig_recursive_goals merc-src/accumulator.m /^:- func create_new_orig_recursive_goals(set(accu_g/ | ||
| 2795 | create_new_recursive_goals merc-src/accumulator.m /^:- func create_new_recursive_goals(set(accu_goal_i/ | ||
| 2796 | create_new_var merc-src/accumulator.m /^:- pred create_new_var(prog_var::in, string::in, p/ | ||
| 2797 | create_orig_goal merc-src/accumulator.m /^:- pred create_orig_goal(hlds_goal::in, accu_subst/ | ||
| 2743 | cscInitTime cp-src/c.C 7 | 2798 | cscInitTime cp-src/c.C 7 |
| 2744 | cscSegmentationTime cp-src/c.C 8 | 2799 | cscSegmentationTime cp-src/c.C 8 |
| 2745 | cstack c-src/etags.c 2523 | 2800 | cstack c-src/etags.c 2523 |
| @@ -3104,6 +3159,8 @@ gcpro c-src/emacs/src/lisp.h 3042 | |||
| 3104 | gcpro c-src/emacs/src/lisp.h 3132 | 3159 | gcpro c-src/emacs/src/lisp.h 3132 |
| 3105 | gen_help_event c-src/emacs/src/keyboard.c /^gen_help_event (Lisp_Object help, Lisp_Object fram/ | 3160 | gen_help_event c-src/emacs/src/keyboard.c /^gen_help_event (Lisp_Object help, Lisp_Object fram/ |
| 3106 | genalgorithm html-src/algrthms.html /^Generating the Data<\/font><\/i><\/b>$/ | 3161 | genalgorithm html-src/algrthms.html /^Generating the Data<\/font><\/i><\/b>$/ |
| 3162 | generate_warning merc-src/accumulator.m /^:- pred generate_warning(module_info::in, prog_var/ | ||
| 3163 | generate_warnings merc-src/accumulator.m /^:- pred generate_warnings(module_info::in, prog_va/ | ||
| 3107 | generic_object cp-src/clheir.cpp /^generic_object::generic_object(void)$/ | 3164 | generic_object cp-src/clheir.cpp /^generic_object::generic_object(void)$/ |
| 3108 | generic_object cp-src/clheir.hpp 13 | 3165 | generic_object cp-src/clheir.hpp 13 |
| 3109 | getArchs objc-src/PackInsp.m /^-(void)getArchs$/ | 3166 | getArchs objc-src/PackInsp.m /^-(void)getArchs$/ |
| @@ -3172,6 +3229,21 @@ help_char_p c-src/emacs/src/keyboard.c /^help_char_p (Lisp_Object c)$/ | |||
| 3172 | help_form_saved_window_configs c-src/emacs/src/keyboard.c 2156 | 3229 | help_form_saved_window_configs c-src/emacs/src/keyboard.c 2156 |
| 3173 | helpwin pyt-src/server.py /^def helpwin(helpdict):$/ | 3230 | helpwin pyt-src/server.py /^def helpwin(helpdict):$/ |
| 3174 | hide_cursor cp-src/screen.cpp /^void hide_cursor(void)$/ | 3231 | hide_cursor cp-src/screen.cpp /^void hide_cursor(void)$/ |
| 3232 | hlds merc-src/accumulator.m /^:- import_module hlds.$/ | ||
| 3233 | hlds.assertion merc-src/accumulator.m /^:- import_module hlds.assertion.$/ | ||
| 3234 | hlds.goal_util merc-src/accumulator.m /^:- import_module hlds.goal_util.$/ | ||
| 3235 | hlds.hlds_error_util merc-src/accumulator.m /^:- import_module hlds.hlds_error_util.$/ | ||
| 3236 | hlds.hlds_goal merc-src/accumulator.m /^:- import_module hlds.hlds_goal.$/ | ||
| 3237 | hlds.hlds_module merc-src/accumulator.m /^:- import_module hlds.hlds_module.$/ | ||
| 3238 | hlds.hlds_out merc-src/accumulator.m /^:- import_module hlds.hlds_out.$/ | ||
| 3239 | hlds.hlds_out.hlds_out_util merc-src/accumulator.m /^:- import_module hlds.hlds_out.hlds_out_util.$/ | ||
| 3240 | hlds.hlds_pred merc-src/accumulator.m /^:- import_module hlds.hlds_pred.$/ | ||
| 3241 | hlds.hlds_promise merc-src/accumulator.m /^:- import_module hlds.hlds_promise.$/ | ||
| 3242 | hlds.instmap merc-src/accumulator.m /^:- import_module hlds.instmap.$/ | ||
| 3243 | hlds.pred_table merc-src/accumulator.m /^:- import_module hlds.pred_table.$/ | ||
| 3244 | hlds.quantification merc-src/accumulator.m /^:- import_module hlds.quantification.$/ | ||
| 3245 | hlds.status merc-src/accumulator.m /^:- import_module hlds.status.$/ | ||
| 3246 | hlds.vartypes merc-src/accumulator.m /^:- import_module hlds.vartypes.$/ | ||
| 3175 | htmltreelist prol-src/natded.prolog /^htmltreelist([]).$/ | 3247 | htmltreelist prol-src/natded.prolog /^htmltreelist([]).$/ |
| 3176 | hybrid_aligned_alloc c-src/emacs/src/gmalloc.c /^hybrid_aligned_alloc (size_t alignment, size_t siz/ | 3248 | hybrid_aligned_alloc c-src/emacs/src/gmalloc.c /^hybrid_aligned_alloc (size_t alignment, size_t siz/ |
| 3177 | hybrid_calloc c-src/emacs/src/gmalloc.c /^hybrid_calloc (size_t nmemb, size_t size)$/ | 3249 | hybrid_calloc c-src/emacs/src/gmalloc.c /^hybrid_calloc (size_t nmemb, size_t size)$/ |
| @@ -3191,6 +3263,9 @@ ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\ | |||
| 3191 | ialpage tex-src/texinfo.tex /^ \\availdimen@=\\pageheight \\advance\\availdimen@ by/ | 3263 | ialpage tex-src/texinfo.tex /^ \\availdimen@=\\pageheight \\advance\\availdimen@ by/ |
| 3192 | ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\pa/ | 3264 | ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\pa/ |
| 3193 | ialpage= tex-src/texinfo.tex /^ \\output={\\global\\setbox\\partialpage=$/ | 3265 | ialpage= tex-src/texinfo.tex /^ \\output={\\global\\setbox\\partialpage=$/ |
| 3266 | identify_goal_type merc-src/accumulator.m /^:- pred identify_goal_type(pred_id::in, proc_id::i/ | ||
| 3267 | identify_out_and_out_prime merc-src/accumulator.m /^:- pred identify_out_and_out_prime(module_info::in/ | ||
| 3268 | identify_recursive_calls merc-src/accumulator.m /^:- pred identify_recursive_calls(pred_id::in, proc/ | ||
| 3194 | idx c-src/emacs/src/lisp.h 3150 | 3269 | idx c-src/emacs/src/lisp.h 3150 |
| 3195 | ignore_case c-src/etags.c 266 | 3270 | ignore_case c-src/etags.c 266 |
| 3196 | ignore_mouse_drag_p c-src/emacs/src/keyboard.c 1256 | 3271 | ignore_mouse_drag_p c-src/emacs/src/keyboard.c 1256 |
| @@ -3220,6 +3295,7 @@ inita c.c /^static void inita () {}$/ | |||
| 3220 | initb c.c /^static void initb () {}$/ | 3295 | initb c.c /^static void initb () {}$/ |
| 3221 | initial_kboard c-src/emacs/src/keyboard.c 84 | 3296 | initial_kboard c-src/emacs/src/keyboard.c 84 |
| 3222 | initialize-new-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun initialize-new-tags-table ()$/ | 3297 | initialize-new-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun initialize-new-tags-table ()$/ |
| 3298 | initialize_goal_store merc-src/accumulator.m /^:- func initialize_goal_store(list(hlds_goal), ins/ | ||
| 3223 | initialize_random_junk y-src/cccp.y /^initialize_random_junk ()$/ | 3299 | initialize_random_junk y-src/cccp.y /^initialize_random_junk ()$/ |
| 3224 | input-pending-p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/ | 3300 | input-pending-p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/ |
| 3225 | input_available_clear_time c-src/emacs/src/keyboard.c 324 | 3301 | input_available_clear_time c-src/emacs/src/keyboard.c 324 |
| @@ -3235,6 +3311,7 @@ instance_method_exclamation! ruby-src/test.rb /^ def instance_method_excl | |||
| 3235 | instance_method_question? ruby-src/test.rb /^ def instance_method_question?$/ | 3311 | instance_method_question? ruby-src/test.rb /^ def instance_method_question?$/ |
| 3236 | instr y-src/parse.y 81 | 3312 | instr y-src/parse.y 81 |
| 3237 | instruct c-src/etags.c 2527 | 3313 | instruct c-src/etags.c 2527 |
| 3314 | int merc-src/accumulator.m /^:- import_module int.$/ | ||
| 3238 | intNumber go-src/test1.go 13 | 3315 | intNumber go-src/test1.go 13 |
| 3239 | integer c-src/emacs/src/lisp.h 2127 | 3316 | integer c-src/emacs/src/lisp.h 2127 |
| 3240 | integer y-src/cccp.y 112 | 3317 | integer y-src/cccp.y 112 |
| @@ -3257,6 +3334,7 @@ intoken c-src/etags.c /^#define intoken(c) (_itk[CHAR (c)]) \/* c can be in/ | |||
| 3257 | intspec c-src/emacs/src/lisp.h 1688 | 3334 | intspec c-src/emacs/src/lisp.h 1688 |
| 3258 | intvar c-src/emacs/src/lisp.h 2277 | 3335 | intvar c-src/emacs/src/lisp.h 2277 |
| 3259 | invalidate_nodes c-src/etags.c /^invalidate_nodes (fdesc *badfdp, node **npp)$/ | 3336 | invalidate_nodes c-src/etags.c /^invalidate_nodes (fdesc *badfdp, node **npp)$/ |
| 3337 | io merc-src/accumulator.m /^:- import_module io.$/ | ||
| 3260 | ipc3dCSC19 cp-src/c.C 6 | 3338 | ipc3dCSC19 cp-src/c.C 6 |
| 3261 | ipc3dChannelType cp-src/c.C 1 | 3339 | ipc3dChannelType cp-src/c.C 1 |
| 3262 | ipc3dIslandHierarchy cp-src/c.C 1 | 3340 | ipc3dIslandHierarchy cp-src/c.C 1 |
| @@ -3266,6 +3344,7 @@ irregular_location cp-src/clheir.hpp /^ irregular_location(double xi, double | |||
| 3266 | isComment php-src/lce_functions.php /^ function isComment($class)$/ | 3344 | isComment php-src/lce_functions.php /^ function isComment($class)$/ |
| 3267 | isHoliday cp-src/functions.cpp /^bool isHoliday ( Date d ){$/ | 3345 | isHoliday cp-src/functions.cpp /^bool isHoliday ( Date d ){$/ |
| 3268 | isLeap cp-src/functions.cpp /^bool isLeap ( int year ){$/ | 3346 | isLeap cp-src/functions.cpp /^bool isLeap ( int year ){$/ |
| 3347 | is_associative_construction merc-src/accumulator.m /^:- pred is_associative_construction(module_info::i/ | ||
| 3269 | is_curly_brace_form c-src/h.h 54 | 3348 | is_curly_brace_form c-src/h.h 54 |
| 3270 | is_explicit c-src/h.h 49 | 3349 | is_explicit c-src/h.h 49 |
| 3271 | is_func c-src/etags.c 221 | 3350 | is_func c-src/etags.c 221 |
| @@ -3274,6 +3353,7 @@ is_idchar y-src/cccp.y 948 | |||
| 3274 | is_idstart y-src/cccp.y 950 | 3353 | is_idstart y-src/cccp.y 950 |
| 3275 | is_muldiv_operation cp-src/c.C /^is_muldiv_operation(pc)$/ | 3354 | is_muldiv_operation cp-src/c.C /^is_muldiv_operation(pc)$/ |
| 3276 | is_ordset prol-src/ordsets.prolog /^is_ordset(X) :- var(X), !, fail.$/ | 3355 | is_ordset prol-src/ordsets.prolog /^is_ordset(X) :- var(X), !, fail.$/ |
| 3356 | is_recursive_case merc-src/accumulator.m /^:- pred is_recursive_case(list(hlds_goal)::in, pre/ | ||
| 3277 | iso_lispy_function_keys c-src/emacs/src/keyboard.c 5151 | 3357 | iso_lispy_function_keys c-src/emacs/src/keyboard.c 5151 |
| 3278 | isoperator prol-src/natded.prolog /^isoperator(Char):-$/ | 3358 | isoperator prol-src/natded.prolog /^isoperator(Char):-$/ |
| 3279 | isoptab prol-src/natded.prolog /^isoptab('%').$/ | 3359 | isoptab prol-src/natded.prolog /^isoptab('%').$/ |
| @@ -3370,6 +3450,10 @@ letter: tex-src/texinfo.tex /^\\xdef\\thischapter{Appendix \\appendixletter: \\n | |||
| 3370 | level c-src/emacs/src/lisp.h 3153 | 3450 | level c-src/emacs/src/lisp.h 3153 |
| 3371 | lex prol-src/natded.prolog /^lex(W,SynOut,Sem):-$/ | 3451 | lex prol-src/natded.prolog /^lex(W,SynOut,Sem):-$/ |
| 3372 | lexptr y-src/cccp.y 332 | 3452 | lexptr y-src/cccp.y 332 |
| 3453 | libs merc-src/accumulator.m /^:- import_module libs.$/ | ||
| 3454 | libs.globals merc-src/accumulator.m /^:- import_module libs.globals.$/ | ||
| 3455 | libs.optimization_options merc-src/accumulator.m /^:- import_module libs.optimization_options.$/ | ||
| 3456 | libs.options merc-src/accumulator.m /^:- import_module libs.options.$/ | ||
| 3373 | licenze html-src/softwarelibero.html /^Licenze d'uso di un programma$/ | 3457 | licenze html-src/softwarelibero.html /^Licenze d'uso di un programma$/ |
| 3374 | limit cp-src/Range.h /^ double limit (void) const { return rng_limit; }$/ | 3458 | limit cp-src/Range.h /^ double limit (void) const { return rng_limit; }$/ |
| 3375 | line c-src/etags.c 2493 | 3459 | line c-src/etags.c 2493 |
| @@ -3427,6 +3511,7 @@ lispy_modifier_list c-src/emacs/src/keyboard.c /^lispy_modifier_list (int modifi | |||
| 3427 | lispy_multimedia_keys c-src/emacs/src/keyboard.c 4962 | 3511 | lispy_multimedia_keys c-src/emacs/src/keyboard.c 4962 |
| 3428 | lispy_wheel_names c-src/emacs/src/keyboard.c 5174 | 3512 | lispy_wheel_names c-src/emacs/src/keyboard.c 5174 |
| 3429 | list c-src/emacs/src/gmalloc.c 186 | 3513 | list c-src/emacs/src/gmalloc.c 186 |
| 3514 | list merc-src/accumulator.m /^:- import_module list.$/ | ||
| 3430 | list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun list-tags (file &optional _next-match)$/ | 3515 | list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun list-tags (file &optional _next-match)$/ |
| 3431 | list-tags-function el-src/emacs/lisp/progmodes/etags.el /^(defvar list-tags-function nil$/ | 3516 | list-tags-function el-src/emacs/lisp/progmodes/etags.el /^(defvar list-tags-function nil$/ |
| 3432 | list2i c-src/emacs/src/lisp.h /^list2i (EMACS_INT x, EMACS_INT y)$/ | 3517 | list2i c-src/emacs/src/lisp.h /^list2i (EMACS_INT x, EMACS_INT y)$/ |
| @@ -3443,6 +3528,7 @@ local_if_set c-src/emacs/src/lisp.h 2338 | |||
| 3443 | location cp-src/clheir.hpp 33 | 3528 | location cp-src/clheir.hpp 33 |
| 3444 | location cp-src/clheir.hpp /^ location() { }$/ | 3529 | location cp-src/clheir.hpp /^ location() { }$/ |
| 3445 | lookup y-src/cccp.y /^lookup (name, len, hash)$/ | 3530 | lookup y-src/cccp.y /^lookup (name, len, hash)$/ |
| 3531 | lookup_call merc-src/accumulator.m /^:- pred lookup_call(accu_goal_store::in, accu_goal/ | ||
| 3446 | lowcase c-src/etags.c /^#define lowcase(c) tolower (CHAR (c))$/ | 3532 | lowcase c-src/etags.c /^#define lowcase(c) tolower (CHAR (c))$/ |
| 3447 | lucid_event_type_list_p c-src/emacs/src/keyboard.c /^lucid_event_type_list_p (Lisp_Object object)$/ | 3533 | lucid_event_type_list_p c-src/emacs/src/keyboard.c /^lucid_event_type_list_p (Lisp_Object object)$/ |
| 3448 | mabort c-src/emacs/src/gmalloc.c /^mabort (enum mcheck_status status)$/ | 3534 | mabort c-src/emacs/src/gmalloc.c /^mabort (enum mcheck_status status)$/ |
| @@ -3488,6 +3574,7 @@ mallochook c-src/emacs/src/gmalloc.c /^mallochook (size_t size)$/ | |||
| 3488 | man manpage make-src/Makefile /^man manpage: etags.1.man$/ | 3574 | man manpage make-src/Makefile /^man manpage: etags.1.man$/ |
| 3489 | mao c-src/h.h 101 | 3575 | mao c-src/h.h 101 |
| 3490 | map c-src/emacs/src/keyboard.c 8748 | 3576 | map c-src/emacs/src/keyboard.c 8748 |
| 3577 | map merc-src/accumulator.m /^:- import_module map.$/ | ||
| 3491 | map_word prol-src/natded.prolog /^map_word([[_]|Ws],Exp):-$/ | 3578 | map_word prol-src/natded.prolog /^map_word([[_]|Ws],Exp):-$/ |
| 3492 | mapping html-src/algrthms.html /^Mapping the Channel Symbols$/ | 3579 | mapping html-src/algrthms.html /^Mapping the Channel Symbols$/ |
| 3493 | mapsyn prol-src/natded.prolog /^mapsyn(A\/B,AM\/BM):-$/ | 3580 | mapsyn prol-src/natded.prolog /^mapsyn(A\/B,AM\/BM):-$/ |
| @@ -3501,15 +3588,19 @@ max_args c-src/emacs/src/lisp.h 1686 | |||
| 3501 | max_num_directions cp-src/clheir.hpp 31 | 3588 | max_num_directions cp-src/clheir.hpp 31 |
| 3502 | max_num_generic_objects cp-src/clheir.cpp 9 | 3589 | max_num_generic_objects cp-src/clheir.cpp 9 |
| 3503 | maxargs c-src/emacs/src/lisp.h 2831 | 3590 | maxargs c-src/emacs/src/lisp.h 2831 |
| 3591 | maybe merc-src/accumulator.m /^:- import_module maybe.$/ | ||
| 3504 | maybe_gc c-src/emacs/src/lisp.h /^maybe_gc (void)$/ | 3592 | maybe_gc c-src/emacs/src/lisp.h /^maybe_gc (void)$/ |
| 3505 | mcCSC cp-src/c.C 6 | 3593 | mcCSC cp-src/c.C 6 |
| 3506 | mcheck c-src/emacs/src/gmalloc.c /^mcheck (void (*func) (enum mcheck_status))$/ | 3594 | mcheck c-src/emacs/src/gmalloc.c /^mcheck (void (*func) (enum mcheck_status))$/ |
| 3507 | mcheck_status c-src/emacs/src/gmalloc.c 283 | 3595 | mcheck_status c-src/emacs/src/gmalloc.c 283 |
| 3508 | mcheck_used c-src/emacs/src/gmalloc.c 2012 | 3596 | mcheck_used c-src/emacs/src/gmalloc.c 2012 |
| 3597 | mdbcomp merc-src/accumulator.m /^:- import_module mdbcomp.$/ | ||
| 3598 | mdbcomp.sym_name merc-src/accumulator.m /^:- import_module mdbcomp.sym_name.$/ | ||
| 3509 | me22b lua-src/test.lua /^ local function test.me22b (one)$/ | 3599 | me22b lua-src/test.lua /^ local function test.me22b (one)$/ |
| 3510 | me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ | 3600 | me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ |
| 3511 | memalign c-src/emacs/src/gmalloc.c /^memalign (size_t alignment, size_t size)$/ | 3601 | memalign c-src/emacs/src/gmalloc.c /^memalign (size_t alignment, size_t size)$/ |
| 3512 | member prol-src/natded.prolog /^member(X,[X|_]).$/ | 3602 | member prol-src/natded.prolog /^member(X,[X|_]).$/ |
| 3603 | member_lessthan_goalid merc-src/accumulator.m /^:- pred member_lessthan_goalid(accu_goal_store::in/ | ||
| 3513 | memclear c-src/emacs/src/lisp.h /^memclear (void *p, ptrdiff_t nbytes)$/ | 3604 | memclear c-src/emacs/src/lisp.h /^memclear (void *p, ptrdiff_t nbytes)$/ |
| 3514 | menu_bar_item c-src/emacs/src/keyboard.c /^menu_bar_item (Lisp_Object key, Lisp_Object item, / | 3605 | menu_bar_item c-src/emacs/src/keyboard.c /^menu_bar_item (Lisp_Object key, Lisp_Object item, / |
| 3515 | menu_bar_items c-src/emacs/src/keyboard.c /^menu_bar_items (Lisp_Object old)$/ | 3606 | menu_bar_items c-src/emacs/src/keyboard.c /^menu_bar_items (Lisp_Object old)$/ |
| @@ -3780,6 +3871,7 @@ pMu c-src/emacs/src/lisp.h 151 | |||
| 3780 | pMu c-src/emacs/src/lisp.h 156 | 3871 | pMu c-src/emacs/src/lisp.h 156 |
| 3781 | p_next c-src/etags.c 258 | 3872 | p_next c-src/etags.c 258 |
| 3782 | pagesize c-src/emacs/src/gmalloc.c 1703 | 3873 | pagesize c-src/emacs/src/gmalloc.c 1703 |
| 3874 | pair merc-src/accumulator.m /^:- import_module pair.$/ | ||
| 3783 | parent c-src/emacs/src/keyboard.c 8745 | 3875 | parent c-src/emacs/src/keyboard.c 8745 |
| 3784 | parent c-src/emacs/src/lisp.h 1590 | 3876 | parent c-src/emacs/src/lisp.h 1590 |
| 3785 | parse prol-src/natded.prolog /^parse(Ws,Cat):-$/ | 3877 | parse prol-src/natded.prolog /^parse(Ws,Cat):-$/ |
| @@ -3797,6 +3889,12 @@ parse_return y-src/parse.y 74 | |||
| 3797 | parse_return_error y-src/cccp.y 70 | 3889 | parse_return_error y-src/cccp.y 70 |
| 3798 | parse_solitary_modifier c-src/emacs/src/keyboard.c /^parse_solitary_modifier (Lisp_Object symbol)$/ | 3890 | parse_solitary_modifier c-src/emacs/src/keyboard.c /^parse_solitary_modifier (Lisp_Object symbol)$/ |
| 3799 | parse_tool_bar_item c-src/emacs/src/keyboard.c /^parse_tool_bar_item (Lisp_Object key, Lisp_Object / | 3891 | parse_tool_bar_item c-src/emacs/src/keyboard.c /^parse_tool_bar_item (Lisp_Object key, Lisp_Object / |
| 3892 | parse_tree merc-src/accumulator.m /^:- import_module parse_tree.$/ | ||
| 3893 | parse_tree.error_util merc-src/accumulator.m /^:- import_module parse_tree.error_util.$/ | ||
| 3894 | parse_tree.prog_data merc-src/accumulator.m /^:- import_module parse_tree.prog_data.$/ | ||
| 3895 | parse_tree.prog_mode merc-src/accumulator.m /^:- import_module parse_tree.prog_mode.$/ | ||
| 3896 | parse_tree.prog_util merc-src/accumulator.m /^:- import_module parse_tree.prog_util.$/ | ||
| 3897 | parse_tree.set_of_var merc-src/accumulator.m /^:- import_module parse_tree.set_of_var.$/ | ||
| 3800 | pat c-src/etags.c 262 | 3898 | pat c-src/etags.c 262 |
| 3801 | pattern c-src/etags.c 260 | 3899 | pattern c-src/etags.c 260 |
| 3802 | pdlcount c-src/emacs/src/lisp.h 3046 | 3900 | pdlcount c-src/emacs/src/lisp.h 3046 |
| @@ -3989,6 +4087,7 @@ removeexp prol-src/natded.prolog /^removeexp(E,E,'NIL'):-!.$/ | |||
| 3989 | reorder_modifiers c-src/emacs/src/keyboard.c /^reorder_modifiers (Lisp_Object symbol)$/ | 4087 | reorder_modifiers c-src/emacs/src/keyboard.c /^reorder_modifiers (Lisp_Object symbol)$/ |
| 3990 | request c.c /^request request (a, b)$/ | 4088 | request c.c /^request request (a, b)$/ |
| 3991 | requeued_events_pending_p c-src/emacs/src/keyboard.c /^requeued_events_pending_p (void)$/ | 4089 | requeued_events_pending_p c-src/emacs/src/keyboard.c /^requeued_events_pending_p (void)$/ |
| 4090 | require merc-src/accumulator.m /^:- import_module require.$/ | ||
| 3992 | required_argument c-src/getopt.h 90 | 4091 | required_argument c-src/getopt.h 90 |
| 3993 | reset-this-command-lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/ | 4092 | reset-this-command-lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/ |
| 3994 | restore_getcjmp c-src/emacs/src/keyboard.c /^restore_getcjmp (sys_jmp_buf temp)$/ | 4093 | restore_getcjmp c-src/emacs/src/keyboard.c /^restore_getcjmp (sys_jmp_buf temp)$/ |
| @@ -4061,6 +4160,7 @@ separator_names c-src/emacs/src/keyboard.c 7372 | |||
| 4061 | serializeToVars php-src/lce_functions.php /^ function serializeToVars($prefix)$/ | 4160 | serializeToVars php-src/lce_functions.php /^ function serializeToVars($prefix)$/ |
| 4062 | serializeToVars php-src/lce_functions.php /^ function serializeToVars($prefix)$/ | 4161 | serializeToVars php-src/lce_functions.php /^ function serializeToVars($prefix)$/ |
| 4063 | set cp-src/conway.hpp /^ void set(void) { alive = 1; }$/ | 4162 | set cp-src/conway.hpp /^ void set(void) { alive = 1; }$/ |
| 4163 | set merc-src/accumulator.m /^:- import_module set.$/ | ||
| 4064 | set-input-interrupt-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/ | 4164 | set-input-interrupt-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/ |
| 4065 | set-input-meta-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/ | 4165 | set-input-meta-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/ |
| 4066 | set-input-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/ | 4166 | set-input-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/ |
| @@ -4088,11 +4188,14 @@ set_sub_char_table_contents c-src/emacs/src/lisp.h /^set_sub_char_table_contents | |||
| 4088 | set_symbol_function c-src/emacs/src/lisp.h /^set_symbol_function (Lisp_Object sym, Lisp_Object / | 4188 | set_symbol_function c-src/emacs/src/lisp.h /^set_symbol_function (Lisp_Object sym, Lisp_Object / |
| 4089 | set_symbol_next c-src/emacs/src/lisp.h /^set_symbol_next (Lisp_Object sym, struct Lisp_Symb/ | 4189 | set_symbol_next c-src/emacs/src/lisp.h /^set_symbol_next (Lisp_Object sym, struct Lisp_Symb/ |
| 4090 | set_symbol_plist c-src/emacs/src/lisp.h /^set_symbol_plist (Lisp_Object sym, Lisp_Object pli/ | 4190 | set_symbol_plist c-src/emacs/src/lisp.h /^set_symbol_plist (Lisp_Object sym, Lisp_Object pli/ |
| 4191 | set_upto merc-src/accumulator.m /^:- func set_upto(accu_case, int) = set(accu_goal_i/ | ||
| 4091 | set_waiting_for_input c-src/emacs/src/keyboard.c /^set_waiting_for_input (struct timespec *time_to_cl/ | 4192 | set_waiting_for_input c-src/emacs/src/keyboard.c /^set_waiting_for_input (struct timespec *time_to_cl/ |
| 4092 | setref tex-src/texinfo.tex /^\\expandafter\\expandafter\\expandafter\\appendixsetre/ | 4193 | setref tex-src/texinfo.tex /^\\expandafter\\expandafter\\expandafter\\appendixsetre/ |
| 4093 | setup cp-src/c.C 5 | 4194 | setup cp-src/c.C 5 |
| 4094 | shift cp-src/functions.cpp /^void Date::shift ( void ){\/\/Shift this date to pre/ | 4195 | shift cp-src/functions.cpp /^void Date::shift ( void ){\/\/Shift this date to pre/ |
| 4095 | shouldLoad objc-src/PackInsp.m /^-(BOOL)shouldLoad$/ | 4196 | shouldLoad objc-src/PackInsp.m /^-(BOOL)shouldLoad$/ |
| 4197 | should_attempt_accu_transform merc-src/accumulator.m /^:- pred should_attempt_accu_transform(module_info:/ | ||
| 4198 | should_attempt_accu_transform_2 merc-src/accumulator.m /^:- pred should_attempt_accu_transform_2(module_inf/ | ||
| 4096 | should_see_this_array_type cp-src/c.C 156 | 4199 | should_see_this_array_type cp-src/c.C 156 |
| 4097 | should_see_this_function_pointer cp-src/c.C 153 | 4200 | should_see_this_function_pointer cp-src/c.C 153 |
| 4098 | should_see_this_one_enclosed_in_extern_C cp-src/c.C 149 | 4201 | should_see_this_one_enclosed_in_extern_C cp-src/c.C 149 |
| @@ -4122,6 +4225,7 @@ skip_non_spaces c-src/etags.c /^skip_non_spaces (char *cp)$/ | |||
| 4122 | skip_spaces c-src/etags.c /^skip_spaces (char *cp)$/ | 4225 | skip_spaces c-src/etags.c /^skip_spaces (char *cp)$/ |
| 4123 | snarf-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar snarf-tag-function nil$/ | 4226 | snarf-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar snarf-tag-function nil$/ |
| 4124 | snone c-src/etags.c 2443 | 4227 | snone c-src/etags.c 2443 |
| 4228 | solutions merc-src/accumulator.m /^:- import_module solutions.$/ | ||
| 4125 | some_mouse_moved c-src/emacs/src/keyboard.c /^some_mouse_moved (void)$/ | 4229 | some_mouse_moved c-src/emacs/src/keyboard.c /^some_mouse_moved (void)$/ |
| 4126 | space tex-src/texinfo.tex /^ {#2\\labelspace #1}\\dotfill\\doshortpageno{#3}}%/ | 4230 | space tex-src/texinfo.tex /^ {#2\\labelspace #1}\\dotfill\\doshortpageno{#3}}%/ |
| 4127 | space tex-src/texinfo.tex /^ \\dosubsubsecentry{#2.#3.#4.#5\\labelspace#1}{#6}}/ | 4231 | space tex-src/texinfo.tex /^ \\dosubsubsecentry{#2.#3.#4.#5\\labelspace#1}{#6}}/ |
| @@ -4171,10 +4275,12 @@ step cp-src/conway.hpp /^ void step(void) { alive = next_alive; }$/ | |||
| 4171 | step cp-src/clheir.hpp /^ virtual void step(void) { }$/ | 4275 | step cp-src/clheir.hpp /^ virtual void step(void) { }$/ |
| 4172 | step_everybody cp-src/clheir.cpp /^void step_everybody(void)$/ | 4276 | step_everybody cp-src/clheir.cpp /^void step_everybody(void)$/ |
| 4173 | stop_polling c-src/emacs/src/keyboard.c /^stop_polling (void)$/ | 4277 | stop_polling c-src/emacs/src/keyboard.c /^stop_polling (void)$/ |
| 4278 | store_info merc-src/accumulator.m /^:- type store_info$/ | ||
| 4174 | store_user_signal_events c-src/emacs/src/keyboard.c /^store_user_signal_events (void)$/ | 4279 | store_user_signal_events c-src/emacs/src/keyboard.c /^store_user_signal_events (void)$/ |
| 4175 | str go-src/test1.go 9 | 4280 | str go-src/test1.go 9 |
| 4176 | strcaseeq c-src/etags.c /^#define strcaseeq(s,t) (assert ((s)!=NULL && (t)!=/ | 4281 | strcaseeq c-src/etags.c /^#define strcaseeq(s,t) (assert ((s)!=NULL && (t)!=/ |
| 4177 | streq c-src/etags.c /^#define streq(s,t) (assert ((s)!=NULL || (t)!=NULL/ | 4282 | streq c-src/etags.c /^#define streq(s,t) (assert ((s)!=NULL || (t)!=NULL/ |
| 4283 | string merc-src/accumulator.m /^:- import_module string.$/ | ||
| 4178 | string_intervals c-src/emacs/src/lisp.h /^string_intervals (Lisp_Object s)$/ | 4284 | string_intervals c-src/emacs/src/lisp.h /^string_intervals (Lisp_Object s)$/ |
| 4179 | stripLine php-src/lce_functions.php /^ function stripLine($line, $class)$/ | 4285 | stripLine php-src/lce_functions.php /^ function stripLine($line, $class)$/ |
| 4180 | stripname pas-src/common.pas /^function stripname; (* ($/ | 4286 | stripname pas-src/common.pas /^function stripname; (* ($/ |
| @@ -4314,6 +4420,7 @@ tee ruby-src/test1.ru /^ attr_accessor :tee$/ | |||
| 4314 | tee= ruby-src/test1.ru /^ attr_accessor :tee$/ | 4420 | tee= ruby-src/test1.ru /^ attr_accessor :tee$/ |
| 4315 | temporarily_switch_to_single_kboard c-src/emacs/src/keyboard.c /^temporarily_switch_to_single_kboard (struct frame / | 4421 | temporarily_switch_to_single_kboard c-src/emacs/src/keyboard.c /^temporarily_switch_to_single_kboard (struct frame / |
| 4316 | tend c-src/etags.c 2432 | 4422 | tend c-src/etags.c 2432 |
| 4423 | term merc-src/accumulator.m /^:- import_module term.$/ | ||
| 4317 | terminate objc-src/Subprocess.m /^- terminate:sender$/ | 4424 | terminate objc-src/Subprocess.m /^- terminate:sender$/ |
| 4318 | terminateInput objc-src/Subprocess.m /^- terminateInput$/ | 4425 | terminateInput objc-src/Subprocess.m /^- terminateInput$/ |
| 4319 | test c-src/emacs/src/lisp.h 1871 | 4426 | test c-src/emacs/src/lisp.h 1871 |
| @@ -4365,6 +4472,7 @@ tool_bar_items c-src/emacs/src/keyboard.c /^tool_bar_items (Lisp_Object reuse, i | |||
| 4365 | tool_bar_items_vector c-src/emacs/src/keyboard.c 7965 | 4472 | tool_bar_items_vector c-src/emacs/src/keyboard.c 7965 |
| 4366 | toolkit_menubar_in_use c-src/emacs/src/keyboard.c /^toolkit_menubar_in_use (struct frame *f)$/ | 4473 | toolkit_menubar_in_use c-src/emacs/src/keyboard.c /^toolkit_menubar_in_use (struct frame *f)$/ |
| 4367 | top-level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, / | 4474 | top-level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, / |
| 4475 | top_level merc-src/accumulator.m /^:- type top_level$/ | ||
| 4368 | top_level_1 c-src/emacs/src/keyboard.c /^top_level_1 (Lisp_Object ignore)$/ | 4476 | top_level_1 c-src/emacs/src/keyboard.c /^top_level_1 (Lisp_Object ignore)$/ |
| 4369 | top_level_2 c-src/emacs/src/keyboard.c /^top_level_2 (void)$/ | 4477 | top_level_2 c-src/emacs/src/keyboard.c /^top_level_2 (void)$/ |
| 4370 | total_keys c-src/emacs/src/keyboard.c 97 | 4478 | total_keys c-src/emacs/src/keyboard.c 97 |
| @@ -4376,6 +4484,9 @@ tpcmd c-src/h.h 15 | |||
| 4376 | track-mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/ | 4484 | track-mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/ |
| 4377 | tracking_off c-src/emacs/src/keyboard.c /^tracking_off (Lisp_Object old_value)$/ | 4485 | tracking_off c-src/emacs/src/keyboard.c /^tracking_off (Lisp_Object old_value)$/ |
| 4378 | traffic_light cp-src/conway.cpp /^void traffic_light(int x, int y)$/ | 4486 | traffic_light cp-src/conway.cpp /^void traffic_light(int x, int y)$/ |
| 4487 | transform_hlds.accumulator merc-src/accumulator.m /^:- module transform_hlds.accumulator.$/ | ||
| 4488 | transform_hlds.accumulator merc-src/accumulator.m /^:- end_module transform_hlds.accumulator.$/ | ||
| 4489 | transform_hlds.goal_store merc-src/accumulator.m /^:- import_module transform_hlds.goal_store.$/ | ||
| 4379 | translate c-src/emacs/src/regex.h 361 | 4490 | translate c-src/emacs/src/regex.h 361 |
| 4380 | treats cp-src/c.C 131 | 4491 | treats cp-src/c.C 131 |
| 4381 | tt prol-src/natded.prolog /^tt:-$/ | 4492 | tt prol-src/natded.prolog /^tt:-$/ |
| @@ -4421,12 +4532,14 @@ unblock_input c-src/emacs/src/keyboard.c /^unblock_input (void)$/ | |||
| 4421 | unblock_input_to c-src/emacs/src/keyboard.c /^unblock_input_to (int level)$/ | 4532 | unblock_input_to c-src/emacs/src/keyboard.c /^unblock_input_to (int level)$/ |
| 4422 | unchar c-src/h.h 99 | 4533 | unchar c-src/h.h 99 |
| 4423 | unexpand-abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/ | 4534 | unexpand-abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/ |
| 4535 | univ merc-src/accumulator.m /^:- import_module univ.$/ | ||
| 4424 | unread_switch_frame c-src/emacs/src/keyboard.c 204 | 4536 | unread_switch_frame c-src/emacs/src/keyboard.c 204 |
| 4425 | unsignedp y-src/cccp.y 112 | 4537 | unsignedp y-src/cccp.y 112 |
| 4426 | unwind c-src/emacs/src/lisp.h 2962 | 4538 | unwind c-src/emacs/src/lisp.h 2962 |
| 4427 | unwind_int c-src/emacs/src/lisp.h 2972 | 4539 | unwind_int c-src/emacs/src/lisp.h 2972 |
| 4428 | unwind_ptr c-src/emacs/src/lisp.h 2967 | 4540 | unwind_ptr c-src/emacs/src/lisp.h 2967 |
| 4429 | unwind_void c-src/emacs/src/lisp.h 2976 | 4541 | unwind_void c-src/emacs/src/lisp.h 2976 |
| 4542 | update_accumulator_pred merc-src/accumulator.m /^:- pred update_accumulator_pred(pred_id::in, proc_/ | ||
| 4430 | uprintmax_t c-src/emacs/src/lisp.h 149 | 4543 | uprintmax_t c-src/emacs/src/lisp.h 149 |
| 4431 | uprintmax_t c-src/emacs/src/lisp.h 154 | 4544 | uprintmax_t c-src/emacs/src/lisp.h 154 |
| 4432 | usage perl-src/yagrip.pl /^sub usage {$/ | 4545 | usage perl-src/yagrip.pl /^sub usage {$/ |
| @@ -4458,6 +4571,7 @@ varargs tex-src/texinfo.tex /^\\defvarargs {#3}\\endgroup %$/ | |||
| 4458 | varargs tex-src/texinfo.tex /^\\defvarargs {#3}\\endgroup %$/ | 4571 | varargs tex-src/texinfo.tex /^\\defvarargs {#3}\\endgroup %$/ |
| 4459 | varargs tex-src/texinfo.tex /^\\defvarargs {#2}\\endgroup %$/ | 4572 | varargs tex-src/texinfo.tex /^\\defvarargs {#2}\\endgroup %$/ |
| 4460 | varargs tex-src/texinfo.tex /^\\defvarargs {#2}\\endgroup %$/ | 4573 | varargs tex-src/texinfo.tex /^\\defvarargs {#2}\\endgroup %$/ |
| 4574 | varset merc-src/accumulator.m /^:- import_module varset.$/ | ||
| 4461 | vcopy c-src/emacs/src/lisp.h /^vcopy (Lisp_Object v, ptrdiff_t offset, Lisp_Objec/ | 4575 | vcopy c-src/emacs/src/lisp.h /^vcopy (Lisp_Object v, ptrdiff_t offset, Lisp_Objec/ |
| 4462 | vectorlike_header c-src/emacs/src/lisp.h 1343 | 4576 | vectorlike_header c-src/emacs/src/lisp.h 1343 |
| 4463 | verde cp-src/c.C 40 | 4577 | verde cp-src/c.C 40 |