1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
|
;;; loaddefs.el --- automatically extracted autoloads
;;
;;; Code:
;;;### (autoloads (wisent-python-default-setup) "semantic/wisent/python"
;;;;;; "wisent/python.el" "30ccc1224a421b0a8cdad3568bf3897a")
;;; Generated autoloads from wisent/python.el
(autoload 'wisent-python-default-setup "semantic/wisent/python" "\
Setup buffer for parse.
\(fn)" nil nil)
(add-hook 'python-mode-hook 'wisent-python-default-setup)
;;;***
;;;### (autoloads (wisent-javascript-setup-parser) "semantic/wisent/javascript"
;;;;;; "wisent/javascript.el" "3a0737171426b551a19d283eda4d0690")
;;; Generated autoloads from wisent/javascript.el
(autoload 'wisent-javascript-setup-parser "semantic/wisent/javascript" "\
Setup buffer for parse.
\(fn)" nil nil)
;;;***
;;;### (autoloads (wisent-java-default-setup) "semantic/wisent/java-tags"
;;;;;; "wisent/java-tags.el" "3ff709675d693dff99fe3682e7432c2a")
;;; Generated autoloads from wisent/java-tags.el
(autoload 'wisent-java-default-setup "semantic/wisent/java-tags" "\
Hook run to setup Semantic in `java-mode'.
Use the alternate LALR(1) parser.
\(fn)" nil nil)
;;;***
;;;### (autoloads (semantic-symref-symbol semantic-symref) "semantic/symref/list"
;;;;;; "symref/list.el" "8626ea207a49b9f8b35c8b785161f9ff")
;;; Generated autoloads from symref/list.el
(autoload 'semantic-symref "semantic/symref/list" "\
Find references to the current tag.
This command uses the currently configured references tool within the
current project to find references to the current tag. The
references are the organized by file and the name of the function
they are used in.
Display the references in`semantic-symref-results-mode'.
\(fn)" t nil)
(autoload 'semantic-symref-symbol "semantic/symref/list" "\
Find references to the symbol SYM.
This command uses the currently configured references tool within the
current project to find references to the input SYM. The
references are the organized by file and the name of the function
they are used in.
Display the references in`semantic-symref-results-mode'.
\(fn SYM)" t nil)
;;;***
;;;### (autoloads (semantic-symref-tool-idutils) "semantic/symref/idutils"
;;;;;; "symref/idutils.el" "252f6d89ea9f248a97840cc4a71e17b7")
;;; Generated autoloads from symref/idutils.el
(eieio-defclass-autoload 'semantic-symref-tool-idutils '(semantic-symref-tool-baseclass) "semantic/symref/idutils" "A symref tool implementation using ID Utils.\nThe udutils command set can be used to generate lists of tags in a way\nsimilar to that of `grep'. This tool will parse the output to generate\nthe hit list.\n\nSee the function `cedet-idutils-search' for more details.")
;;;***
;;;### (autoloads (semantic-symref-tool-grep) "semantic/symref/grep"
;;;;;; "symref/grep.el" "2c121217f1026d5fb49046fb04bf9dcf")
;;; Generated autoloads from symref/grep.el
(eieio-defclass-autoload 'semantic-symref-tool-grep '(semantic-symref-tool-baseclass) "semantic/symref/grep" "A symref tool implementation using grep.\nThis tool uses EDE to find he root of the project, then executes\nfind-grep in the project. The output is parsed for hits\nand those hits returned.")
;;;***
;;;### (autoloads (semantic-symref-tool-global) "semantic/symref/global"
;;;;;; "symref/global.el" "c6d552272bae336751b2393a0ea6479b")
;;; Generated autoloads from symref/global.el
(eieio-defclass-autoload 'semantic-symref-tool-global '(semantic-symref-tool-baseclass) "semantic/symref/global" "A symref tool implementation using GNU Global.\nThe GNU Global command can be used to generate lists of tags in a way\nsimilar to that of `grep'. This tool will parse the output to generate\nthe hit list.\n\nSee the function `cedet-gnu-global-search' for more details.")
;;;***
;;;### (autoloads (semantic-symref-tool-cscope) "semantic/symref/cscope"
;;;;;; "symref/cscope.el" "3cd16e6f1c59b3b87d9300894e8a83d6")
;;; Generated autoloads from symref/cscope.el
(eieio-defclass-autoload 'semantic-symref-tool-cscope '(semantic-symref-tool-baseclass) "semantic/symref/cscope" "A symref tool implementation using CScope.\nThe CScope command can be used to generate lists of tags in a way\nsimilar to that of `grep'. This tool will parse the output to generate\nthe hit list.\n\nSee the function `cedet-cscope-search' for more details.")
;;;***
;;;### (autoloads (global-semantic-decoration-mode) "semantic/decorate/mode"
;;;;;; "decorate/mode.el" "163ab56fd4971c483649f1a3d60327a7")
;;; Generated autoloads from decorate/mode.el
(autoload 'global-semantic-decoration-mode "semantic/decorate/mode" "\
Toggle global use of option `semantic-decoration-mode'.
Decoration mode turns on all active decorations as specified
by `semantic-decoration-styles'.
If ARG is positive, enable, if it is negative, disable.
If ARG is nil, then toggle.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads (semantic-decoration-unparsed-include-do-reset
;;;;;; semantic-decoration-include-visit) "semantic/decorate/include"
;;;;;; "decorate/include.el" "6e09b8f109f3113d336a32c62b25f608")
;;; Generated autoloads from decorate/include.el
(autoload 'semantic-decoration-include-visit "semantic/decorate/include" "\
Visit the included file at point.
\(fn)" t nil)
(autoload 'semantic-decoration-unparsed-include-do-reset "semantic/decorate/include" "\
Do a reset of unparsed includes in the current buffer.
\(fn)" nil nil)
;;;***
;;;### (autoloads (semantic-default-scheme-setup) "semantic/bovine/scm"
;;;;;; "bovine/scm.el" "1bfb1812a4d9a6353452a53ec4c82d44")
;;; Generated autoloads from bovine/scm.el
(autoload 'semantic-default-scheme-setup "semantic/bovine/scm" "\
Setup hook function for Emacs Lisp files and Semantic.
\(fn)" nil nil)
;;;***
;;;### (autoloads (semantic-default-make-setup) "semantic/bovine/make"
;;;;;; "bovine/make.el" "38f6ca1b1d7455da3bf1435059722ed1")
;;; Generated autoloads from bovine/make.el
(autoload 'semantic-default-make-setup "semantic/bovine/make" "\
Set up a Makefile buffer for parsing with semantic.
\(fn)" nil nil)
;;;***
;;;### (autoloads (semantic-gcc-setup) "semantic/bovine/gcc" "bovine/gcc.el"
;;;;;; "42123085a285f11b71df2da699643cb4")
;;; Generated autoloads from bovine/gcc.el
(autoload 'semantic-gcc-setup "semantic/bovine/gcc" "\
Setup Semantic C/C++ parsing based on GCC output.
\(fn)" t nil)
;;;***
;;;### (autoloads (semantic-c-add-preprocessor-symbol semantic-default-c-setup)
;;;;;; "semantic/bovine/c" "bovine/c.el" "846547a3d88f37454a64ab3ec27e16a3")
;;; Generated autoloads from bovine/c.el
(autoload 'semantic-default-c-setup "semantic/bovine/c" "\
Set up a buffer for semantic parsing of the C language.
\(fn)" nil nil)
(autoload 'semantic-c-add-preprocessor-symbol "semantic/bovine/c" "\
Add a preprocessor symbol SYM with a REPLACEMENT value.
\(fn SYM REPLACEMENT)" t nil)
;;;***
;;;### (autoloads (semantic-analyze-proto-impl-toggle semantic-analyze-current-tag)
;;;;;; "semantic/analyze/refs" "analyze/refs.el" "84173901bd453c8583e9b14479e04d7e")
;;; Generated autoloads from analyze/refs.el
(autoload 'semantic-analyze-current-tag "semantic/analyze/refs" "\
Analyze the tag under point.
\(fn)" t nil)
(autoload 'semantic-analyze-proto-impl-toggle "semantic/analyze/refs" "\
Toggle between the implementation, and a prototype of tag under point.
\(fn)" t nil)
;;;***
;;;### (autoloads (semantic-analyze-possible-completions semantic-analyze-type-constants)
;;;;;; "semantic/analyze/complete" "analyze/complete.el" "059292b94f06a6d09f1f0a1047e3fe6f")
;;; Generated autoloads from analyze/complete.el
(autoload 'semantic-analyze-type-constants "semantic/analyze/complete" "\
For the tag TYPE, return any constant symbols of TYPE.
Used as options when completing.
\(fn TYPE)" nil nil)
(autoload 'semantic-analyze-possible-completions "semantic/analyze/complete" "\
Return a list of semantic tags which are possible completions.
CONTEXT is either a position (such as point), or a precalculated
context. Passing in a context is useful if the caller also needs
to access parts of the analysis.
Completions run through the following filters:
* Elements currently in scope
* Constants currently in scope
* Elements match the :prefix in the CONTEXT.
* Type of the completion matches the type of the context.
Context type matching can identify the following:
* No specific type
* Assignment into a variable of some type.
* Argument to a function with type constraints.
When called interactively, displays the list of possible completions
in a buffer.
\(fn CONTEXT)" t nil)
;;;***
;;;### (autoloads (semantic-calculate-scope) "semantic/scope" "scope.el"
;;;;;; "f01b24523f34170e75789c13afbcf27d")
;;; Generated autoloads from scope.el
(autoload 'semantic-calculate-scope "semantic/scope" "\
Calculate the scope at POINT.
If POINT is not provided, then use the current location of point.
The class returned from the scope calculation is variable
`semantic-scope-cache'.
\(fn &optional POINT)" t nil)
;;;***
;;;### (autoloads (global-semantic-mru-bookmark-mode) "semantic/mru-bookmark"
;;;;;; "mru-bookmark.el" "c80c8bb6ee9f1f18110b3517724e64ea")
;;; Generated autoloads from mru-bookmark.el
(autoload 'global-semantic-mru-bookmark-mode "semantic/mru-bookmark" "\
Toggle global use of option `semantic-mru-bookmark-mode'.
If ARG is positive, enable, if it is negative, disable.
If ARG is nil, then toggle.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads (semantic-lex) "semantic/lex" "lex.el" "fcb6b964612d616ec2ff727dd581390b")
;;; Generated autoloads from lex.el
(autoload 'semantic-lex "semantic/lex" "\
Lexically analyze text in the current buffer between START and END.
Optional argument DEPTH indicates at what level to scan over entire
lists. The last argument, LENGTH specifies that `semantic-lex'
should only return LENGTH tokens. The return value is a token stream.
Each element is a list, such of the form
(symbol start-expression . end-expression)
where SYMBOL denotes the token type.
See `semantic-lex-tokens' variable for details on token types. END
does not mark the end of the text scanned, only the end of the
beginning of text scanned. Thus, if a string extends past END, the
end of the return token will be larger than END. To truly restrict
scanning, use `narrow-to-region'.
\(fn START END &optional DEPTH LENGTH)" nil nil)
;;;***
;;;### (autoloads (semantic-lex-spp-table-write-slot-value) "semantic/lex-spp"
;;;;;; "lex-spp.el" "454a537acdc2d1f05127905d246d6ff0")
;;; Generated autoloads from lex-spp.el
(autoload 'semantic-lex-spp-table-write-slot-value "semantic/lex-spp" "\
Write out the VALUE of a slot for EIEIO.
The VALUE is a spp lexical table.
\(fn VALUE)" nil nil)
;;;***
;;;### (autoloads (semantic-create-imenu-index semantic-imenu-expand-type-members
;;;;;; semantic-imenu-bucketize-file semantic-imenu-summary-function)
;;;;;; "semantic/imenu" "imenu.el" "1352a601487f8adb868ef1cfc3c18873")
;;; Generated autoloads from imenu.el
(defvar semantic-imenu-summary-function 'semantic-format-tag-abbreviate "\
*Function to use when creating items in Imenu.
Some useful functions are found in `semantic-format-tag-functions'.")
(custom-autoload 'semantic-imenu-summary-function "semantic/imenu" t)
(defvar semantic-imenu-bucketize-file t "\
*Non-nil if tags in a file are to be grouped into buckets.")
(custom-autoload 'semantic-imenu-bucketize-file "semantic/imenu" t)
(defvar semantic-imenu-expand-type-members t "\
*Non-nil if types should have submenus with members in them.")
(custom-autoload 'semantic-imenu-expand-type-members "semantic/imenu" t)
(defvar semantic-imenu-expandable-tag-classes '(type) "\
List of expandable tag classes.
Tags of those classes will be given submenu with children.
By default, a `type' has interesting children. In Texinfo, however, a
`section' has interesting children.")
(autoload 'semantic-create-imenu-index "semantic/imenu" "\
Create an imenu index for any buffer which supports Semantic.
Uses the output of the Semantic parser to create the index.
Optional argument STREAM is an optional stream of tags used to create menus.
\(fn &optional STREAM)" nil nil)
;;;***
;;;### (autoloads (global-semantic-idle-scheduler-mode semantic-idle-scheduler-mode
;;;;;; global-semantic-idle-scheduler-mode) "semantic/idle" "idle.el"
;;;;;; "64168e0c28fd86ed0cf5385fc7022d9d")
;;; Generated autoloads from idle.el
(defvar global-semantic-idle-scheduler-mode nil "\
*If non-nil, enable global use of idle-scheduler mode.")
(custom-autoload 'global-semantic-idle-scheduler-mode "semantic/idle" nil)
(autoload 'semantic-idle-scheduler-mode "semantic/idle" "\
Minor mode to auto parse buffer following a change.
When this mode is off, a buffer is only rescanned for tokens when
some command requests the list of available tokens. When idle-scheduler
is enabled, Emacs periodically checks to see if the buffer is out of
date, and reparses while the user is idle (not typing.)
With prefix argument ARG, turn on if positive, otherwise off. The
minor mode can be turned on only if semantic feature is available and
the current buffer was set up for parsing. Return non-nil if the
minor mode is enabled.
\(fn &optional ARG)" t nil)
(autoload 'global-semantic-idle-scheduler-mode "semantic/idle" "\
Toggle global use of option `semantic-idle-scheduler-mode'.
The idle scheduler will automatically reparse buffers in idle time,
and then schedule other jobs setup with `semantic-idle-scheduler-add'.
If ARG is positive, enable, if it is negative, disable.
If ARG is nil, then toggle.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads (semantic-ia-describe-class semantic-ia-show-doc
;;;;;; semantic-ia-fast-mouse-jump semantic-ia-fast-jump semantic-ia-show-summary
;;;;;; semantic-ia-complete-tip semantic-ia-complete-symbol) "semantic/ia"
;;;;;; "ia.el" "591468e9f6677fa14be32dce924a433c")
;;; Generated autoloads from ia.el
(autoload 'semantic-ia-complete-symbol "semantic/ia" "\
Complete the current symbol at POS.
If POS is nil, default to point.
Completion options are calculated with `semantic-analyze-possible-completions'.
\(fn &optional POS)" t nil)
(autoload 'semantic-ia-complete-tip "semantic/ia" "\
Pop up a tooltip for completion at POINT.
\(fn POINT)" t nil)
(autoload 'semantic-ia-show-summary "semantic/ia" "\
Display a summary for the symbol under POINT.
\(fn POINT)" t nil)
(autoload 'semantic-ia-fast-jump "semantic/ia" "\
Jump to the tag referred to by the code at POINT.
Uses `semantic-analyze-current-context' output to identify an accurate
origin of the code at point.
\(fn POINT)" t nil)
(autoload 'semantic-ia-fast-mouse-jump "semantic/ia" "\
Jump to the tag referred to by the point clicked on.
See `semantic-ia-fast-jump' for details on how it works.
This command is meant to be bound to a mouse event.
\(fn EVT)" t nil)
(autoload 'semantic-ia-show-doc "semantic/ia" "\
Display the code-level documentation for the symbol at POINT.
\(fn POINT)" t nil)
(autoload 'semantic-ia-describe-class "semantic/ia" "\
Display all known parts for the datatype TYPENAME.
If the type in question is a class, all methods and other accessible
parts of the parent classes are displayed.
\(fn TYPENAME)" t nil)
;;;***
;;;### (autoloads (semantic-speedbar-analysis) "semantic/ia-sb" "ia-sb.el"
;;;;;; "1ca7979dd6c7a7ad8a736dcb540ad2c7")
;;; Generated autoloads from ia-sb.el
(autoload 'semantic-speedbar-analysis "semantic/ia-sb" "\
Start Speedbar in semantic analysis mode.
The analyzer displays information about the current context, plus a smart
list of possible completions.
\(fn)" t nil)
;;;***
;;;### (autoloads (semantic-default-html-setup) "semantic/html" "html.el"
;;;;;; "5f2a895d6b9e2e801b8907380b1ce250")
;;; Generated autoloads from html.el
(autoload 'semantic-default-html-setup "semantic/html" "\
Set up a buffer for parsing of HTML files.
\(fn)" nil nil)
;;;***
;;;### (autoloads (semantic-format-tag-concise-prototype semantic-format-tag-prototype
;;;;;; semantic-format-tag-summarize semantic-format-tag-name) "semantic/format"
;;;;;; "format.el" "53961789c32253b2fd9c496aef576e15")
;;; Generated autoloads from format.el
(autoload 'semantic-format-tag-name "semantic/format" "\
Return the name string describing TAG.
The name is the shortest possible representation.
Optional argument PARENT is the parent type if TAG is a detail.
Optional argument COLOR means highlight the prototype with font-lock colors.
\(fn TAG &optional PARENT COLOR)" nil nil)
(autoload 'semantic-format-tag-summarize "semantic/format" "\
Summarize TAG in a reasonable way.
Optional argument PARENT is the parent type if TAG is a detail.
Optional argument COLOR means highlight the prototype with font-lock colors.
\(fn TAG &optional PARENT COLOR)" nil nil)
(autoload 'semantic-format-tag-prototype "semantic/format" "\
Return a prototype for TAG.
This function should be overloaded, though it need not be used.
This is because it can be used to create code by language independent
tools.
Optional argument PARENT is the parent type if TAG is a detail.
Optional argument COLOR means highlight the prototype with font-lock colors.
\(fn TAG &optional PARENT COLOR)" nil nil)
(autoload 'semantic-format-tag-concise-prototype "semantic/format" "\
Return a concise prototype for TAG.
Optional argument PARENT is the parent type if TAG is a detail.
Optional argument COLOR means highlight the prototype with font-lock colors.
\(fn TAG &optional PARENT COLOR)" nil nil)
;;;***
;;;### (autoloads (semantic-find-tags-by-scope-protection semantic-find-first-tag-by-name
;;;;;; semantic-current-tag-parent semantic-current-tag semantic-find-tag-parent-by-overlay
;;;;;; semantic-find-tag-by-overlay-prev semantic-find-tag-by-overlay-next
;;;;;; semantic-find-tag-by-overlay-in-region semantic-find-tag-by-overlay)
;;;;;; "semantic/find" "find.el" "250f4f6bb9c1d5f260c02eb70cdd9ed8")
;;; Generated autoloads from find.el
(autoload 'semantic-find-tag-by-overlay "semantic/find" "\
Find all tags covering POSITIONORMARKER by using overlays.
If POSITIONORMARKER is nil, use the current point.
Optional BUFFER is used if POSITIONORMARKER is a number, otherwise the current
buffer is used. This finds all tags covering the specified position
by checking for all overlays covering the current spot. They are then sorted
from largest to smallest via the start location.
\(fn &optional POSITIONORMARKER BUFFER)" nil nil)
(autoload 'semantic-find-tag-by-overlay-in-region "semantic/find" "\
Find all tags which exist in whole or in part between START and END.
Uses overlays to determine position.
Optional BUFFER argument specifies the buffer to use.
\(fn START END &optional BUFFER)" nil nil)
(autoload 'semantic-find-tag-by-overlay-next "semantic/find" "\
Find the next tag after START in BUFFER.
If START is in an overlay, find the tag which starts next,
not the current tag.
\(fn &optional START BUFFER)" nil nil)
(autoload 'semantic-find-tag-by-overlay-prev "semantic/find" "\
Find the next tag before START in BUFFER.
If START is in an overlay, find the tag which starts next,
not the current tag.
\(fn &optional START BUFFER)" nil nil)
(autoload 'semantic-find-tag-parent-by-overlay "semantic/find" "\
Find the parent of TAG by overlays.
Overlays are a fast way of finding this information for active buffers.
\(fn TAG)" nil nil)
(autoload 'semantic-current-tag "semantic/find" "\
Return the current tag in the current buffer.
If there are more than one in the same location, return the
smallest tag. Return nil if there is no tag here.
\(fn)" nil nil)
(autoload 'semantic-current-tag-parent "semantic/find" "\
Return the current tags parent in the current buffer.
A tag's parent would be a containing structure, such as a type
containing a field. Return nil if there is no parent.
\(fn)" nil nil)
(autoload 'semantic-find-first-tag-by-name "semantic/find" "\
Find the first tag with NAME in TABLE.
NAME is a string.
TABLE is a semantic tags table. See `semantic-something-to-tag-table'.
This routine uses `assoc' to quickly find the first matching entry.
\(fn NAME &optional TABLE)" nil nil)
(autoload 'semantic-find-tags-by-scope-protection "semantic/find" "\
Find all tags accessable by SCOPEPROTECTION.
SCOPEPROTECTION is a symbol which can be returned by the method
`semantic-tag-protection'. A hard-coded order is used to determine a match.
PARENT is a tag representing the PARENT slot needed for
`semantic-tag-protection'.
TABLE is a list of tags (a subset of PARENT members) to scan. If TABLE is nil,
the type members of PARENT are used.
See `semantic-tag-protected-p' for details on which tags are returned.
\(fn SCOPEPROTECTION PARENT &optional TABLE)" nil nil)
;;;***
;;;### (autoloads (semantic-change-function) "semantic/edit" "edit.el"
;;;;;; "67dcb62513ae9748bb876294e4f8f4ee")
;;; Generated autoloads from edit.el
(autoload 'semantic-change-function "semantic/edit" "\
Provide a mechanism for semantic tag management.
Argument START, END, and LENGTH specify the bounds of the change.
\(fn START END LENGTH)" nil nil)
(defalias 'semantic-parse-changes-default 'semantic-edits-incremental-parser)
;;;***
;;;### (autoloads (semantic-documentation-for-tag) "semantic/doc"
;;;;;; "doc.el" "5a7040674bc8a8db3b4f63262585de48")
;;; Generated autoloads from doc.el
(autoload 'semantic-documentation-for-tag "semantic/doc" "\
Find documentation from TAG and return it as a clean string.
TAG might have DOCUMENTATION set in it already. If not, there may be
some documentation in a comment preceding TAG's definition which we
can look for. When appropriate, this can be overridden by a language specific
enhancement.
Optional argument NOSNARF means to only return the lexical analyzer token for it.
If nosnarf if 'lex, then only return the lex token.
\(fn &optional TAG NOSNARF)" nil nil)
;;;***
;;;### (autoloads (semantic-customize-system-include-path semantic-reset-system-include
;;;;;; semantic-remove-system-include semantic-add-system-include)
;;;;;; "semantic/dep" "dep.el" "88e2339a2a3094e1cb9fe1eb51130375")
;;; Generated autoloads from dep.el
(autoload 'semantic-add-system-include "semantic/dep" "\
Add a system include DIR to path for MODE.
Modifies a mode-local version of `semantic-dependency-system-include-path'.
Changes made by this function are not persistent.
\(fn DIR &optional MODE)" t nil)
(autoload 'semantic-remove-system-include "semantic/dep" "\
Add a system include DIR to path for MODE.
Modifies a mode-local version of`semantic-dependency-system-include-path'.
Changes made by this function are not persistent.
\(fn DIR &optional MODE)" t nil)
(autoload 'semantic-reset-system-include "semantic/dep" "\
Reset the system include list to empty for MODE.
Modifies a mode-local version of
`semantic-dependency-system-include-path'.
\(fn &optional MODE)" t nil)
(autoload 'semantic-customize-system-include-path "semantic/dep" "\
Customize the include path for this `major-mode'.
To create a customizable include path for a major MODE, use the
macro `defcustom-mode-local-semantic-dependency-system-include-path'.
\(fn &optional MODE)" t nil)
;;;***
;;;### (autoloads nil "semantic/debug" "debug.el" "af8c9f611caa756b97d17d7d4801ecee")
;;; Generated autoloads from debug.el
(defvar semantic-debug-parser-source nil "\
For any buffer, the file name (no path) of the parser.
This would be a parser for a specific language, not the source
to one of the parser generators.")
(make-variable-buffer-local 'semantic-debug-parser-source)
(defvar semantic-debug-parser-class nil "\
Class to create when building a debug parser object.")
(make-variable-buffer-local 'semantic-debug-parser-class)
;;;***
;;;### (autoloads (semanticdb-file-table-object) "semantic/db" "db.el"
;;;;;; "15c07ae50fec5ebca6a38c93f0501bf3")
;;; Generated autoloads from db.el
(defvar semanticdb-current-database nil "\
For a given buffer, this is the currently active database.")
(defvar semanticdb-current-table nil "\
For a given buffer, this is the currently active database table.")
(autoload 'semanticdb-file-table-object "semantic/db" "\
Return a semanticdb table belonging to FILE, make it up to date.
If file has database tags available in the database, return it.
If file does not have tags available, and DONTLOAD is nil,
then load the tags for FILE, and create a new table object for it.
DONTLOAD does not affect the creation of new database objects.
\(fn FILE &optional DONTLOAD)" nil nil)
;;;***
;;;### (autoloads (semanticdb-typecache-find semanticdb-database-typecache
;;;;;; semanticdb-typecache) "semantic/db-typecache" "db-typecache.el"
;;;;;; "1b092f225fe6298a8bc145bbfbeb7249")
;;; Generated autoloads from db-typecache.el
(eieio-defclass-autoload 'semanticdb-typecache 'nil "semantic/db-typecache" "Structure for maintaining a typecache.")
(eieio-defclass-autoload 'semanticdb-database-typecache '(semanticdb-abstract-db-cache) "semantic/db-typecache" "Structure for maintaining a typecache.")
(autoload 'semanticdb-typecache-find "semantic/db-typecache" "\
Search the typecache for TYPE in PATH.
If type is a string, split the string, and search for the parts.
If type is a list, treat the type as a pre-split string.
PATH can be nil for the current buffer, or a semanticdb table.
FIND-FILE-MATCH is non-nil to force all found tags to be loaded into a buffer.
\(fn TYPE &optional PATH FIND-FILE-MATCH)" nil nil)
;;;***
;;;### (autoloads (global-semanticdb-minor-mode semanticdb-minor-mode-p)
;;;;;; "semantic/db-mode" "db-mode.el" "cb88864460da7b903a3734dd004c48f7")
;;; Generated autoloads from db-mode.el
(autoload 'semanticdb-minor-mode-p "semantic/db-mode" "\
Return non-nil if `semanticdb-minor-mode' is active.
\(fn)" nil nil)
(defvar global-semanticdb-minor-mode nil "\
Non-nil if Global-Semanticdb minor mode is enabled.
See the command `global-semanticdb-minor-mode' for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `global-semanticdb-minor-mode'.")
(custom-autoload 'global-semanticdb-minor-mode "semantic/db-mode" nil)
(autoload 'global-semanticdb-minor-mode "semantic/db-mode" "\
Toggle Semantic DB mode.
With ARG, turn Semantic DB mode on if ARG is positive, off otherwise.
In Semantic DB mode, Semantic parsers store results in a
database, which can be saved for future Emacs sessions.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads (semanticdb-enable-gnu-global-databases) "semantic/db-global"
;;;;;; "db-global.el" "332b5d8418761d987f160320abb3ff46")
;;; Generated autoloads from db-global.el
(autoload 'semanticdb-enable-gnu-global-databases "semantic/db-global" "\
Enable the use of the GNU Global SemanticDB back end for all files of MODE.
This will add an instance of a GNU Global database to each buffer
in a GNU Global supported hierarchy.
\(fn MODE)" t nil)
;;;***
;;;### (autoloads (semanticdb-find-tags-by-class semanticdb-find-tags-for-completion
;;;;;; semanticdb-find-tags-by-name-regexp semanticdb-find-tags-by-name
;;;;;; semanticdb-find-result-nth-in-buffer semanticdb-find-result-nth
;;;;;; semanticdb-find-result-length semanticdb-strip-find-results
;;;;;; semanticdb-find-adebug-lost-includes semanticdb-find-test-translate-path
;;;;;; semanticdb-find-table-for-include semanticdb-find-translate-path
;;;;;; semanticdb-find-default-throttle) "semantic/db-find" "db-find.el"
;;;;;; "ca25fb96642b61b3f517f0f5a2760c5e")
;;; Generated autoloads from db-find.el
(defvar semanticdb-find-default-throttle '(local project unloaded system recursive) "\
The default throttle for `semanticdb-find' routines.
The throttle controls how detailed the list of database
tables is for a symbol lookup. The value is a list with
the following keys:
`file' - The file the search is being performed from.
This option is here for completeness only, and
is assumed to always be on.
`local' - Tables from the same local directory are included.
This includes files directly referenced by a file name
which might be in a different directory.
`project' - Tables from the same local project are included
If `project' is specified, then `local' is assumed.
`unloaded' - If a table is not in memory, load it. If it is not cached
on disk either, get the source, parse it, and create
the table.
`system' - Tables from system databases. These are specifically
tables from system header files, or language equivalent.
`recursive' - For include based searches, includes tables referenced
by included files.
`omniscience' - Included system databases which are omniscience, or
somehow know everything. Omniscience databases are found
in `semanticdb-project-system-databases'.
The Emacs Lisp system DB is an omniscience database.")
(custom-autoload 'semanticdb-find-default-throttle "semantic/db-find" t)
(autoload 'semanticdb-find-translate-path "semantic/db-find" "\
Translate PATH into a list of semantic tables.
Path translation involves identifying the PATH input argument
in one of the following ways:
nil - Take the current buffer, and use it's include list
buffer - Use that buffer's include list.
filename - Use that file's include list. If the file is not
in a buffer, see of there is a semanticdb table for it. If
not, read that file into a buffer.
tag - Get that tag's buffer of file file. See above.
table - Search that table, and it's include list.
find result - Search the results of a previous find.
In addition, once the base path is found, there is the possibility of
each added table adding yet more tables to the path, so this routine
can return a lengthy list.
If argument BRUTISH is non-nil, then instead of using the include
list, use all tables found in the parent project of the table
identified by translating PATH. Such searches use brute force to
scan every available table.
The return value is a list of objects of type `semanticdb-table' or
their children. In the case of passing in a find result, the result
is returned unchanged.
This routine uses `semanticdb-find-table-for-include' to translate
specific include tags into a semanticdb table.
Note: When searching using a non-brutish method, the list of
included files will be cached between runs. Database-references
are used to track which files need to have their include lists
refreshed when things change. See `semanticdb-ref-test'.
Note for overloading: If you opt to overload this function for your
major mode, and your routine takes a long time, be sure to call
(semantic-throw-on-input 'your-symbol-here)
so that it can be called from the idle work handler.
\(fn PATH BRUTISH)" nil nil)
(autoload 'semanticdb-find-table-for-include "semantic/db-find" "\
For a single INCLUDETAG found in TABLE, find a `semanticdb-table' object
INCLUDETAG is a semantic TAG of class 'include.
TABLE is a semanticdb table that identifies where INCLUDETAG came from.
TABLE is optional if INCLUDETAG has an overlay of :filename attribute.
\(fn INCLUDETAG &optional TABLE)" nil nil)
(autoload 'semanticdb-find-test-translate-path "semantic/db-find" "\
Call and output results of `semanticdb-find-translate-path'.
With ARG non-nil, specify a BRUTISH translation.
See `semanticdb-find-default-throttle' and `semanticdb-project-roots'
for details on how this list is derived.
\(fn &optional ARG)" t nil)
(autoload 'semanticdb-find-adebug-lost-includes "semantic/db-find" "\
Translate the current path, then display the lost includes.
Examines the variable `semanticdb-find-lost-includes'.
\(fn)" t nil)
(autoload 'semanticdb-strip-find-results "semantic/db-find" "\
Strip a semanticdb search RESULTS to exclude objects.
This makes it appear more like the results of a `semantic-find-' call.
Optional FIND-FILE-MATCH loads all files associated with RESULTS
into buffers. This has the side effect of enabling `semantic-tag-buffer' to
return a value.
If FIND-FILE-MATCH is 'name, then only the filename is stored
in each tag instead of loading each file into a buffer.
If the input RESULTS are not going to be used again, and if
FIND-FILE-MATCH is nil, you can use `semanticdb-fast-strip-find-results'
instead.
\(fn RESULTS &optional FIND-FILE-MATCH)" nil nil)
(autoload 'semanticdb-find-result-length "semantic/db-find" "\
Number of tags found in RESULT.
\(fn RESULT)" nil nil)
(autoload 'semanticdb-find-result-nth "semantic/db-find" "\
In RESULT, return the Nth search result.
This is a 0 based search result, with the first match being element 0.
The returned value is a cons cell: (TAG . TABLE) where TAG
is the tag at the Nth position. TABLE is the semanticdb table where
the TAG was found. Sometimes TABLE can be nil.
\(fn RESULT N)" nil nil)
(autoload 'semanticdb-find-result-nth-in-buffer "semantic/db-find" "\
In RESULT, return the Nth search result.
Like `semanticdb-find-result-nth', except that only the TAG
is returned, and the buffer it is found it will be made current.
If the result tag has no position information, the originating buffer
is still made current.
\(fn RESULT N)" nil nil)
(autoload 'semanticdb-find-tags-by-name "semantic/db-find" "\
Search for all tags matching NAME on PATH.
See `semanticdb-find-translate-path' for details on PATH.
FIND-FILE-MATCH indicates that any time a match is found, the file
associated with that tag should be loaded into a buffer.
\(fn NAME &optional PATH FIND-FILE-MATCH)" nil nil)
(autoload 'semanticdb-find-tags-by-name-regexp "semantic/db-find" "\
Search for all tags matching REGEXP on PATH.
See `semanticdb-find-translate-path' for details on PATH.
FIND-FILE-MATCH indicates that any time a match is found, the file
associated with that tag should be loaded into a buffer.
\(fn REGEXP &optional PATH FIND-FILE-MATCH)" nil nil)
(autoload 'semanticdb-find-tags-for-completion "semantic/db-find" "\
Search for all tags matching PREFIX on PATH.
See `semanticdb-find-translate-path' for details on PATH.
FIND-FILE-MATCH indicates that any time a match is found, the file
associated with that tag should be loaded into a buffer.
\(fn PREFIX &optional PATH FIND-FILE-MATCH)" nil nil)
(autoload 'semanticdb-find-tags-by-class "semantic/db-find" "\
Search for all tags of CLASS on PATH.
See `semanticdb-find-translate-path' for details on PATH.
FIND-FILE-MATCH indicates that any time a match is found, the file
associated with that tag should be loaded into a buffer.
\(fn CLASS &optional PATH FIND-FILE-MATCH)" nil nil)
;;;***
;;;### (autoloads (semanticdb-project-database-file) "semantic/db-file"
;;;;;; "db-file.el" "32bed43bf66dd380e61f03bc4dd522d8")
;;; Generated autoloads from db-file.el
(eieio-defclass-autoload 'semanticdb-project-database-file '(semanticdb-project-database eieio-persistent) "semantic/db-file" "Database of file tables saved to disk.")
;;;***
;;;### (autoloads (semantic-ctxt-current-mode) "semantic/ctxt" "ctxt.el"
;;;;;; "cc2f97390d8ab76ceff934c87d44a870")
;;; Generated autoloads from ctxt.el
(autoload 'semantic-ctxt-current-mode "semantic/ctxt" "\
Return the major mode active at POINT.
POINT defaults to the value of point in current buffer.
You should override this function in multiple mode buffers to
determine which major mode apply at point.
\(fn &optional POINT)" nil nil)
;;;***
;;;### (autoloads (semantic-complete-self-insert semantic-complete-analyze-inline-idle
;;;;;; semantic-complete-analyze-inline semantic-complete-analyze-and-replace
;;;;;; semantic-complete-jump semantic-complete-jump-local) "semantic/complete"
;;;;;; "complete.el" "bc374fa28f724233efd2d57c3a71f003")
;;; Generated autoloads from complete.el
(autoload 'semantic-complete-jump-local "semantic/complete" "\
Jump to a semantic symbol.
\(fn)" t nil)
(autoload 'semantic-complete-jump "semantic/complete" "\
Jump to a semantic symbol.
\(fn)" t nil)
(autoload 'semantic-complete-analyze-and-replace "semantic/complete" "\
Perform prompt completion to do in buffer completion.
`semantic-analyze-possible-completions' is used to determine the
possible values.
The minibuffer is used to perform the completion.
The result is inserted as a replacement of the text that was there.
\(fn)" t nil)
(autoload 'semantic-complete-analyze-inline "semantic/complete" "\
Perform prompt completion to do in buffer completion.
`semantic-analyze-possible-completions' is used to determine the
possible values.
The function returns immediately, leaving the buffer in a mode that
will perform the completion.
Configure `semantic-complete-inline-analyzer-displayor-class' to change
how completion options are displayed.
\(fn)" t nil)
(autoload 'semantic-complete-analyze-inline-idle "semantic/complete" "\
Perform prompt completion to do in buffer completion.
`semantic-analyze-possible-completions' is used to determine the
possible values.
The function returns immediately, leaving the buffer in a mode that
will perform the completion.
Configure `semantic-complete-inline-analyzer-idle-displayor-class'
to change how completion options are displayed.
\(fn)" t nil)
(autoload 'semantic-complete-self-insert "semantic/complete" "\
Like `self-insert-command', but does completion afterwards.
ARG is passed to `self-insert-command'. If ARG is nil,
use `semantic-complete-analyze-inline' to complete.
\(fn ARG)" t nil)
;;;***
;;;### (autoloads (semantic-bovinate-stream) "semantic/bovine" "bovine.el"
;;;;;; "f34c26194ce015f7b3c093e3fd4ba250")
;;; Generated autoloads from bovine.el
(autoload 'semantic-bovinate-stream "semantic/bovine" "\
Bovinate STREAM, starting at the first NONTERMINAL rule.
Use `bovine-toplevel' if NONTERMINAL is not provided.
This is the core routine for converting a stream into a table.
Return the list (STREAM SEMANTIC-STREAM) where STREAM are those
elements of STREAM that have not been used. SEMANTIC-STREAM is the
list of semantic tokens found.
\(fn STREAM &optional NONTERMINAL)" nil nil)
(defalias 'semantic-parse-stream-default 'semantic-bovinate-stream)
;;;***
;;;### (autoloads (semantic-analyze-current-context) "semantic/analyze"
;;;;;; "analyze.el" "66874d90e554078ab23b115dc6614e6e")
;;; Generated autoloads from analyze.el
(autoload 'semantic-analyze-current-context "semantic/analyze" "\
Analyze the current context at optional POSITION.
If called interactively, display interesting information about POSITION
in a separate buffer.
Returns an object based on symbol `semantic-analyze-context'.
This function can be overriden with the symbol `analyze-context'.
When overriding this function, your override will be called while
cursor is at POSITION. In addition, your function will not be called
if a cached copy of the return object is found.
\(fn &optional POSITION)" t nil)
;;;***
;;;### (autoloads (senator-transpose-tags-down senator-transpose-tags-up
;;;;;; senator-copy-tag-to-register senator-yank-tag senator-kill-tag
;;;;;; senator-copy-tag senator-go-to-up-reference senator-previous-tag
;;;;;; senator-next-tag senator-step-at-start-end-tag-classes senator-step-at-tag-classes)
;;;;;; "semantic/senator" "senator.el" "9700ffc3ba97714a2e0a6e5d9becc274")
;;; Generated autoloads from senator.el
(defvar senator-step-at-tag-classes nil "\
List of tag classes recognized by Senator's navigation commands.
A tag class is a symbol, such as `variable', `function', or `type'.
As a special exception, if the value is nil, Senator's navigation
commands recognize all tag classes.")
(custom-autoload 'senator-step-at-tag-classes "semantic/senator" t)
(make-variable-buffer-local 'senator-step-at-tag-classes)
(defvar senator-step-at-start-end-tag-classes nil "\
List of tag classes at which Senator's navigation commands should stop.
A tag class is a symbol, such as `variable', `function', or `type'.
The navigation commands stop at the start and end of each tag
class in this list, provided the tag class is recognized (see
`senator-step-at-tag-classes').
As a special exception, if the value is nil, the navigation
commands stop at the beginning of every tag.
If t, the navigation commands stop at the start and end of any
tag, where possible.")
(custom-autoload 'senator-step-at-start-end-tag-classes "semantic/senator" t)
(make-variable-buffer-local 'senator-step-at-start-end-tag-classes)
(autoload 'senator-next-tag "semantic/senator" "\
Navigate to the next Semantic tag.
Return the tag or nil if at end of buffer.
\(fn)" t nil)
(autoload 'senator-previous-tag "semantic/senator" "\
Navigate to the previous Semantic tag.
Return the tag or nil if at beginning of buffer.
\(fn)" t nil)
(autoload 'senator-go-to-up-reference "semantic/senator" "\
Move up one reference from the current TAG.
A \"reference\" could be any interesting feature of TAG.
In C++, a function may have a 'parent' which is non-local.
If that parent which is only a reference in the function tag
is found, we can jump to it.
Some tags such as includes have other reference features.
\(fn &optional TAG)" t nil)
(autoload 'senator-copy-tag "semantic/senator" "\
Take the current tag, and place it in the tag ring.
\(fn)" t nil)
(autoload 'senator-kill-tag "semantic/senator" "\
Take the current tag, place it in the tag ring, and kill it.
Killing the tag removes the text for that tag, and places it into
the kill ring. Retrieve that text with \\[yank].
\(fn)" t nil)
(autoload 'senator-yank-tag "semantic/senator" "\
Yank a tag from the tag ring.
The form the tag takes is different depending on where it is being
yanked to.
\(fn)" t nil)
(autoload 'senator-copy-tag-to-register "semantic/senator" "\
Copy the current tag into REGISTER.
Optional argument KILL-FLAG will delete the text of the tag to the
kill ring.
\(fn REGISTER &optional KILL-FLAG)" t nil)
(autoload 'senator-transpose-tags-up "semantic/senator" "\
Transpose the current tag, and the preceding tag.
\(fn)" t nil)
(autoload 'senator-transpose-tags-down "semantic/senator" "\
Transpose the current tag, and the following tag.
\(fn)" t nil)
;;;***
;;;### (autoloads (semantic-tag-external-member-parent semantic-flatten-tags-table)
;;;;;; "semantic/sort" "sort.el" "3ec73a4d627064b2bd6380029ad60dd9")
;;; Generated autoloads from sort.el
(autoload 'semantic-flatten-tags-table "semantic/sort" "\
Flatten the tags table TABLE.
All tags in TABLE, and all components of top level tags
in TABLE will appear at the top level of list.
Tags promoted to the top of the list will still appear
unmodified as components of their parent tags.
\(fn &optional TABLE)" nil nil)
(autoload 'semantic-tag-external-member-parent "semantic/sort" "\
Return a parent for TAG when TAG is an external member.
TAG is an external member if it is defined at a toplevel and
has some sort of label defining a parent. The parent return will
be a string.
The default behavior, if not overridden with
`tag-member-parent' gets the 'parent extra
specifier of TAG.
If this function is overridden, use
`semantic-tag-external-member-parent-default' to also
include the default behavior, and merely extend your own.
\(fn TAG)" nil nil)
;;;***
;;;### (autoloads (semantic-symref-find-text semantic-symref-find-file-references-by-name
;;;;;; semantic-symref-find-tags-by-completion semantic-symref-find-tags-by-regexp
;;;;;; semantic-symref-find-tags-by-name semantic-symref-find-references-by-name)
;;;;;; "semantic/symref" "symref.el" "d850173cc4010dc997cc0384d8c270a3")
;;; Generated autoloads from symref.el
(autoload 'semantic-symref-find-references-by-name "semantic/symref" "\
Find a list of references to NAME in the current project.
Optional SCOPE specifies which file set to search. Defaults to 'project.
Refers to `semantic-symref-tool', to determine the reference tool to use
for the current buffer.
Returns an object of class `semantic-symref-result'.
TOOL-RETURN is an optional symbol, which will be assigned the tool used
to perform the search. This was added for use by a test harness.
\(fn NAME &optional SCOPE TOOL-RETURN)" t nil)
(autoload 'semantic-symref-find-tags-by-name "semantic/symref" "\
Find a list of references to NAME in the current project.
Optional SCOPE specifies which file set to search. Defaults to 'project.
Refers to `semantic-symref-tool', to determine the reference tool to use
for the current buffer.
Returns an object of class `semantic-symref-result'.
\(fn NAME &optional SCOPE)" t nil)
(autoload 'semantic-symref-find-tags-by-regexp "semantic/symref" "\
Find a list of references to NAME in the current project.
Optional SCOPE specifies which file set to search. Defaults to 'project.
Refers to `semantic-symref-tool', to determine the reference tool to use
for the current buffer.
Returns an object of class `semantic-symref-result'.
\(fn NAME &optional SCOPE)" t nil)
(autoload 'semantic-symref-find-tags-by-completion "semantic/symref" "\
Find a list of references to NAME in the current project.
Optional SCOPE specifies which file set to search. Defaults to 'project.
Refers to `semantic-symref-tool', to determine the reference tool to use
for the current buffer.
Returns an object of class `semantic-symref-result'.
\(fn NAME &optional SCOPE)" t nil)
(autoload 'semantic-symref-find-file-references-by-name "semantic/symref" "\
Find a list of references to NAME in the current project.
Optional SCOPE specifies which file set to search. Defaults to 'project.
Refers to `semantic-symref-tool', to determine the reference tool to use
for the current buffer.
Returns an object of class `semantic-symref-result'.
\(fn NAME &optional SCOPE)" t nil)
(autoload 'semantic-symref-find-text "semantic/symref" "\
Find a list of occurrences of TEXT in the current project.
TEXT is a regexp formatted for use with egrep.
Optional SCOPE specifies which file set to search. Defaults to 'project.
Refers to `semantic-symref-tool', to determine the reference tool to use
for the current buffer.
Returns an object of class `semantic-symref-result'.
\(fn TEXT &optional SCOPE)" t nil)
;;;***
;;;### (autoloads (semantic-dependency-tag-file semantic-go-to-tag)
;;;;;; "semantic/tag-file" "tag-file.el" "9addeeb34c0400247f3fea6099be527f")
;;; Generated autoloads from tag-file.el
(autoload 'semantic-go-to-tag "semantic/tag-file" "\
Go to the location of TAG.
TAG may be a stripped element, in which case PARENT specifies a
parent tag that has position information.
PARENT can also be a `semanticdb-table' object.
\(fn TAG &optional PARENT)" nil nil)
(autoload 'semantic-dependency-tag-file "semantic/tag-file" "\
Find the filename represented from TAG.
Depends on `semantic-dependency-include-path' for searching. Always searches
`.' first, then searches additional paths.
\(fn &optional TAG)" nil nil)
;;;***
;;;### (autoloads (semantic-tag-prototype-p) "semantic/tag-ls" "tag-ls.el"
;;;;;; "a30e0a1b78742728e49d20b9e59a82ab")
;;; Generated autoloads from tag-ls.el
(autoload 'semantic-tag-prototype-p "semantic/tag-ls" "\
Return non nil if TAG is a prototype.
For some laguages, such as C, a prototype is a declaration of
something without an implementation.
\(fn TAG)" nil nil)
;;;***
;;;### (autoloads (semantic-tag-write-list-slot-value) "semantic/tag-write"
;;;;;; "tag-write.el" "e122e29a570109c94846afbf6403aee3")
;;; Generated autoloads from tag-write.el
(autoload 'semantic-tag-write-list-slot-value "semantic/tag-write" "\
Write out the VALUE of a slot for EIEIO.
The VALUE is a list of tags.
\(fn VALUE)" nil nil)
;;;***
;;;### (autoloads (semantic-tag-components) "semantic/tag" "tag.el"
;;;;;; "3685916e15a2f52ded31b29a22bd40ea")
;;; Generated autoloads from tag.el
(autoload 'semantic-tag-components "semantic/tag" "\
Return a list of components for TAG.
A Component is a part of TAG which itself may be a TAG.
Examples include the elements of a structure in a
tag of class `type, or the list of arguments to a
tag of class 'function.
\(fn TAG)" nil nil)
;;;***
;;;### (autoloads (semantic-highlight-func-mode global-semantic-highlight-func-mode
;;;;;; global-semantic-highlight-func-mode semantic-stickyfunc-mode
;;;;;; global-semantic-stickyfunc-mode global-semantic-stickyfunc-mode
;;;;;; semantic-show-parser-state-mode global-semantic-show-parser-state-mode
;;;;;; global-semantic-show-parser-state-mode semantic-show-unmatched-syntax-mode
;;;;;; global-semantic-show-unmatched-syntax-mode global-semantic-show-unmatched-syntax-mode
;;;;;; semantic-highlight-edits-mode global-semantic-highlight-edits-mode
;;;;;; global-semantic-highlight-edits-mode) "semantic/util-modes"
;;;;;; "util-modes.el" "c0f3de5d4dfdd24398c4222bb606b35e")
;;; Generated autoloads from util-modes.el
(autoload 'global-semantic-highlight-edits-mode "semantic/util-modes" "\
Toggle global use of option `semantic-highlight-edits-mode'.
If ARG is positive, enable, if it is negative, disable.
If ARG is nil, then toggle.
\(fn &optional ARG)" t nil)
(defvar global-semantic-highlight-edits-mode nil "\
If non-nil enable global use of variable `semantic-highlight-edits-mode'.
When this mode is enabled, changes made to a buffer are highlighted
until the buffer is reparsed.")
(custom-autoload 'global-semantic-highlight-edits-mode "semantic/util-modes" nil)
(autoload 'semantic-highlight-edits-mode "semantic/util-modes" "\
Minor mode for highlighting changes made in a buffer.
Changes are tracked by semantic so that the incremental parser can work
properly.
This mode will highlight those changes as they are made, and clear them
when the incremental parser accounts for those edits.
With prefix argument ARG, turn on if positive, otherwise off. The
minor mode can be turned on only if semantic feature is available and
the current buffer was set up for parsing. Return non-nil if the
minor mode is enabled.
\(fn &optional ARG)" t nil)
(autoload 'global-semantic-show-unmatched-syntax-mode "semantic/util-modes" "\
Toggle global use of option `semantic-show-unmatched-syntax-mode'.
If ARG is positive, enable, if it is negative, disable.
If ARG is nil, then toggle.
\(fn &optional ARG)" t nil)
(defvar global-semantic-show-unmatched-syntax-mode nil "\
If non-nil, enable global use of `semantic-show-unmatched-syntax-mode'.
When this mode is enabled, syntax in the current buffer which the
semantic parser cannot match is highlighted with a red underline.")
(custom-autoload 'global-semantic-show-unmatched-syntax-mode "semantic/util-modes" nil)
(autoload 'semantic-show-unmatched-syntax-mode "semantic/util-modes" "\
Minor mode to highlight unmatched lexical syntax tokens.
When a parser executes, some elements in the buffer may not match any
parser rules. These text characters are considered unmatched syntax.
Often time, the display of unmatched syntax can expose coding
problems before the compiler is run.
With prefix argument ARG, turn on if positive, otherwise off. The
minor mode can be turned on only if semantic feature is available and
the current buffer was set up for parsing. Return non-nil if the
minor mode is enabled.
\\{semantic-show-unmatched-syntax-mode-map}
\(fn &optional ARG)" t nil)
(defvar global-semantic-show-parser-state-mode nil "\
If non-nil enable global use of `semantic-show-parser-state-mode'.
When enabled, the current parse state of the current buffer is displayed
in the mode line. See `semantic-show-parser-state-marker' for details
on what is displayed.")
(custom-autoload 'global-semantic-show-parser-state-mode "semantic/util-modes" nil)
(autoload 'global-semantic-show-parser-state-mode "semantic/util-modes" "\
Toggle global use of option `semantic-show-parser-state-mode'.
If ARG is positive, enable, if it is negative, disable.
If ARG is nil, then toggle.
\(fn &optional ARG)" t nil)
(autoload 'semantic-show-parser-state-mode "semantic/util-modes" "\
Minor mode for displaying parser cache state in the modeline.
The cache can be in one of three states. They are
Up to date, Partial reparse needed, and Full reparse needed.
The state is indicated in the modeline with the following characters:
`-' -> The cache is up to date.
`!' -> The cache requires a full update.
`~' -> The cache needs to be incrementally parsed.
`%' -> The cache is not currently parseable.
`@' -> Auto-parse in progress (not set here.)
With prefix argument ARG, turn on if positive, otherwise off. The
minor mode can be turned on only if semantic feature is available and
the current buffer was set up for parsing. Return non-nil if the
minor mode is enabled.
\(fn &optional ARG)" t nil)
(autoload 'global-semantic-stickyfunc-mode "semantic/util-modes" "\
Toggle global use of option `semantic-stickyfunc-mode'.
If ARG is positive, enable, if it is negative, disable.
If ARG is nil, then toggle.
\(fn &optional ARG)" t nil)
(defvar global-semantic-stickyfunc-mode nil "\
If non-nil, enable global use of `semantic-stickyfunc-mode'.
This minor mode only works for Emacs 21 or later.
When enabled, the header line is enabled, and the first line
of the current function or method is displayed in it.
This makes it appear that the first line of that tag is
`sticky' to the top of the window.")
(custom-autoload 'global-semantic-stickyfunc-mode "semantic/util-modes" nil)
(autoload 'semantic-stickyfunc-mode "semantic/util-modes" "\
Minor mode to show the title of a tag in the header line.
Enables/disables making the header line of functions sticky.
A function (or other tag class specified by
`semantic-stickyfunc-sticky-classes') has a header line, meaning the
first line which describes the rest of the construct. This first
line is what is displayed in the header line.
With prefix argument ARG, turn on if positive, otherwise off. The
minor mode can be turned on only if semantic feature is available and
the current buffer was set up for parsing. Return non-nil if the
minor mode is enabled.
\(fn &optional ARG)" t nil)
(autoload 'global-semantic-highlight-func-mode "semantic/util-modes" "\
Toggle global use of option `semantic-highlight-func-mode'.
If ARG is positive, enable, if it is negative, disable.
If ARG is nil, then toggle.
\(fn &optional ARG)" t nil)
(defvar global-semantic-highlight-func-mode nil "\
If non-nil, enable global use of `semantic-highlight-func-mode'.
When enabled, the first line of the current tag is highlighted.")
(custom-autoload 'global-semantic-highlight-func-mode "semantic/util-modes" nil)
(autoload 'semantic-highlight-func-mode "semantic/util-modes" "\
Minor mode to highlight the first line of the current tag.
Enables/disables making the current function's first line light up.
A function (or other tag class specified by
`semantic-stickyfunc-sticky-classes') is highlighted, meaning the
first line which describes the rest of the construct.
See `semantic-stickyfunc-mode' for putting a function in the
header line. This mode recycles the stickyfunc configuration
classes list.
With prefix argument ARG, turn on if positive, otherwise off. The
minor mode can be turned on only if semantic feature is available and
the current buffer was set up for parsing. Return non-nil if the
minor mode is enabled.
\(fn &optional ARG)" t nil)
;;;***
(provide 'loaddefs)
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; loaddefs.el ends here
|