source: trunk/abcl/src/org/armedbear/lisp/autoloads.lisp @ 11590

Last change on this file since 11590 was 11590, checked in by astalla, 14 years ago

Merged the scripting branch, providing JSR-223 support and other new
features. JSR-233 is only built if the necessary javax.script.* classes
are found in the CLASSPATH.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 11.1 KB
Line 
1;;; autoloads.lisp
2;;;
3;;; Copyright (C) 2003-2008 Peter Graves
4;;; $Id: autoloads.lisp 11590 2009-01-25 23:34:24Z astalla $
5;;;
6;;; This program is free software; you can redistribute it and/or
7;;; modify it under the terms of the GNU General Public License
8;;; as published by the Free Software Foundation; either version 2
9;;; of the License, or (at your option) any later version.
10;;;
11;;; This program is distributed in the hope that it will be useful,
12;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with this program; if not, write to the Free Software
18;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19;;;
20;;; As a special exception, the copyright holders of this library give you
21;;; permission to link this library with independent modules to produce an
22;;; executable, regardless of the license terms of these independent
23;;; modules, and to copy and distribute the resulting executable under
24;;; terms of your choice, provided that you also meet, for each linked
25;;; independent module, the terms and conditions of the license of that
26;;; module.  An independent module is a module which is not derived from
27;;; or based on this library.  If you modify this library, you may extend
28;;; this exception to your version of the library, but you are not
29;;; obligated to do so.  If you do not wish to do so, delete this
30;;; exception statement from your version.
31
32(in-package "SYSTEM")
33
34(autoload '(char/= char> char>= char-not-equal)
35          "chars")
36(autoload '(string-upcase string-downcase string-capitalize
37            nstring-upcase nstring-downcase nstring-capitalize
38            string= string/= string-equal string-not-equal
39            string< string>
40            string<= string>=
41            string-lessp string-greaterp
42            string-not-lessp string-not-greaterp
43            string-left-trim string-right-trim string-trim)
44          "strings")
45(autoload 'copy-symbol)
46(autoload '(open parse-integer))
47(autoload '(sort stable-sort merge) "sort")
48(autoload 'tree-equal)
49(autoload 'make-hash-table)
50(autoload 'list-length)
51(autoload 'revappend)
52(autoload '(butlast nbutlast) "butlast")
53(autoload 'ldiff)
54(autoload '(subst subst-if subst-if-not nsubst nsubst-if nsubst-if-not)
55          "subst")
56(autoload '(sublis nsublis) "sublis")
57(autoload '(member-if member-if-not) "member-if")
58(autoload 'tailp)
59(autoload 'adjoin)
60(autoload '(union nunion
61            intersection nintersection
62            set-difference nset-difference
63            set-exclusive-or nset-exclusive-or
64            subsetp)
65          "sets")
66(autoload '(assoc assoc-if assoc-if-not rassoc rassoc-if rassoc-if-not
67            acons pairlis copy-alist)
68          "assoc")
69(autoload '(mapcan mapl maplist mapcon) "map1")
70(autoload 'make-sequence)
71(autoload '(copy-seq fill replace))
72(autoload '(map map-into))
73(autoload 'reduce)
74(autoload '(delete delete-if delete-if-not) "delete")
75(autoload '(remove remove-if remove-if-not) "remove")
76(autoload '(remove-duplicates delete-duplicates))
77(autoload '(substitute substitute-if substitute-if-not) "substitute")
78(autoload '(nsubstitute nsubstitute-if nsubstitute-if-not) "nsubstitute")
79(autoload '(position position-if position-if-not find find-if find-if-not
80            list-find* vector-find*)
81          "find")
82(autoload '(count count-if count-if-not) "count")
83(autoload '(mismatch search))
84(autoload 'make-string)
85(autoload 'directory "directory")
86(autoload '(signum round ffloor fceiling fround rationalize gcd isqrt
87            float-precision decode-float conjugate phase)
88          "numbers")
89(autoload 'boole)
90(export '%ldb '#:system)
91(autoload '(byte byte-size byte-position %ldb ldb ldb-test dpb) "ldb")
92(autoload 'lcm)
93(autoload '(apropos apropos-list) "apropos")
94(autoload '(y-or-n-p yes-or-no-p) "query")
95(autoload '(decode-universal-time get-decoded-time encode-universal-time)
96          "time")
97(autoload 'gentemp)
98(autoload '(bit-and bit-ior bit-xor bit-eqv bit-nand bit-nor bit-andc1
99            bit-andc2 bit-orc1 bit-orc2 bit-not)
100          "bit-array-ops")
101(autoload 'deposit-field)
102(autoload 'mask-field)
103(autoload '(ensure-class ensure-generic-function make-condition
104            mop::ensure-method
105            define-method-combination
106            %defgeneric
107            canonicalize-direct-superclasses)
108          "clos")
109(export '(ensure-class subclassp %defgeneric canonicalize-direct-superclasses)
110        '#:system)
111(autoload '(inspect istep) "inspect")
112(autoload 'enough-namestring)
113(autoload 'upgraded-complex-part-type)
114
115(autoload '(tpl::top-level-loop) "top-level")
116
117(autoload 'hash-table-iterator-function "with-hash-table-iterator")
118(autoload-macro 'with-hash-table-iterator)
119
120(autoload 'package-iterator-function "with-package-iterator")
121(autoload-macro 'with-package-iterator)
122
123(autoload-macro 'remf)
124(autoload-macro 'check-type)
125(autoload-macro 'deftype)
126(autoload 'expand-deftype "deftype")
127(autoload-macro '(defclass defgeneric defmethod define-condition) "clos")
128(autoload-macro 'with-standard-io-syntax)
129(autoload 'sys::%with-standard-io-syntax "with-standard-io-syntax")
130(autoload-macro 'psetf)
131(autoload-macro 'rotatef)
132(autoload-macro 'shiftf)
133
134(autoload-macro 'do-all-symbols)
135(autoload-macro '(trace untrace) "trace")
136(autoload '(sys::list-traced-functions sys::trace-1 sys::untrace-1 sys::untrace-all) "trace")
137(autoload 'sys::%define-symbol-macro "define-symbol-macro")
138(autoload-macro 'define-symbol-macro)
139(autoload-macro 'with-slots)
140(autoload-macro 'with-accessors)
141(autoload-macro '(sys::%print-unreadable-object print-unreadable-object)
142                "print-unreadable-object")
143(autoload 'print-object)
144(autoload-macro '(prog prog*) "prog")
145(export 'concatenate-to-string '#:system)
146(autoload '(concatenate-to-string concatenate) "concatenate")
147(autoload 'parse-lambda-list)
148(autoload-macro 'assert)
149(autoload '(sys::assert-error sys::assert-prompt) "assert")
150(autoload-macro 'with-input-from-string)
151(autoload-macro 'with-output-to-string)
152(autoload 'ensure-directories-exist)
153(autoload 'coerce)
154(autoload 'read-from-string)
155(autoload 'read-sequence)
156(autoload 'write-sequence)
157(autoload 'make-load-form-saving-slots)
158(autoload 'compile-file)
159(autoload 'compile-file-pathname)
160
161(autoload 'format "format")
162(autoload-macro 'formatter "format")
163
164(autoload '(write-byte read-byte) "byte-io")
165(autoload-macro 'with-open-file)
166(autoload '(pathname-host pathname-device pathname-directory pathname-name
167            pathname-type wild-pathname-p pathname-match-p translate-pathname
168            logical-pathname-translations translate-logical-pathname
169            load-logical-pathname-translations logical-pathname
170            parse-namestring)
171          "pathnames")
172(autoload 'make-string-output-stream)
173(autoload 'find-all-symbols)
174(autoload 'dribble)
175(autoload-macro 'step)
176(autoload 'load)
177(autoload 'compile "jvm")
178(autoload-macro 'with-compilation-unit "jvm")
179
180(autoload-macro '(case ccase ecase typecase ctypecase etypecase) "case")
181(autoload-macro '(and cond dolist dotimes
182                  do-symbols do-external-symbols
183                  multiple-value-bind multiple-value-list multiple-value-setq
184                  nth-value
185                  or))
186(autoload-macro '(do do*) "do")
187
188(autoload 'ed)
189(autoload 'describe)
190(autoload 'disassemble)
191
192(in-package "MOP")
193(export 'class-precedence-list)
194(autoload 'class-precedence-list "clos")
195
196;; Java interface.
197(in-package "JAVA")
198(export 'jregister-handler "JAVA")
199(autoload 'jregister-handler "java")
200(export 'jinterface-implementation "JAVA")
201(autoload 'jinterface-implementation "java")
202(export 'jmake-invocation-handler "JAVA")
203(autoload 'jmake-invocation-handler "java")
204(export 'jmake-proxy "JAVA")
205(autoload 'jmake-proxy "java")
206(export 'jproperty-value "JAVA")
207(autoload 'jproperty-value "java")
208(export 'jobject-class "JAVA")
209(autoload 'jobject-class "java")
210(export 'jclass-superclass "JAVA")
211(autoload 'jclass-superclass "java")
212(export 'jclass-interfaces "JAVA")
213(autoload 'jclass-interfaces "java")
214(export 'jclass-interface-p "JAVA")
215(autoload 'jclass-interface-p "java")
216(export 'jclass-superclass-p "JAVA")
217(autoload 'jclass-superclass-p "java")
218(export 'jclass-array-p "JAVA")
219(autoload 'jclass-array-p "java")
220(export 'jarray-component-type "JAVA")
221(autoload 'jarray-component-type "java")
222(export 'jarray-length "JAVA")
223(autoload 'jarray-length "java")
224(export 'jnew-array-from-array "JAVA")
225(autoload 'jnew-array-from-array "java")
226(export 'jclass-constructors "JAVA")
227(autoload 'jclass-constructors "java")
228(export 'jconstructor-params "JAVA")
229(autoload 'jconstructor-params "java")
230(export 'jclass-field "JAVA")
231(autoload 'jclass-field "java")
232(export 'jclass-fields "JAVA")
233(autoload 'jclass-fields "java")
234(export 'jfield-type "JAVA")
235(autoload 'jfield-type "java")
236(export 'jfield-name "JAVA")
237(autoload 'jfield-name "java")
238(export 'jclass-methods "JAVA")
239(autoload 'jclass-methods "java")
240(export 'jmethod-params "JAVA")
241(autoload 'jmethod-params "java")
242(export 'jmethod-name "JAVA")
243(autoload 'jmethod-name "java")
244(export 'jinstance-of-p "JAVA")
245(autoload 'jinstance-of-p "java")
246(export 'jmember-static-p "JAVA")
247(autoload 'jmember-static-p "java")
248(export 'jmember-public-p "JAVA")
249(autoload 'jmember-public-p "java")
250(export 'jmember-protected-p "JAVA")
251(autoload 'jmember-protected-p "java")
252(export 'jnew-runtime-class "JAVA")
253(autoload 'jnew-runtime-class "runtime-class")
254(export 'jredefine-method "JAVA")
255(autoload 'jredefine-method "runtime-class")
256(export 'jruntime-class-exists-p "JAVA")
257(autoload 'jruntime-class-exists-p "runtime-class")
258
259;; Profiler.
260(in-package "PROFILER")
261(export '(*granularity* show-call-counts with-profiling))
262(autoload 'show-call-counts "profiler")
263(autoload-macro 'with-profiling "profiler")
264
265;; Extensions.
266(in-package "EXTENSIONS")
267(export 'simple-search)
268(autoload 'simple-search "search")
269(export 'run-shell-command)
270(autoload 'run-shell-command)
271
272(export 'make-socket)
273(autoload 'make-socket "socket")
274(export 'make-server-socket)
275(autoload 'make-server-socket "socket")
276(export 'server-socket-close)
277(autoload 'server-socket-close "socket")
278(export 'socket-accept)
279(autoload 'socket-accept "socket")
280(export 'socket-close)
281(autoload 'socket-close "socket")
282(export 'get-socket-stream)
283(autoload 'get-socket-stream "socket")
284(export 'socket-peer-port)
285(autoload 'socket-peer-port "socket")
286(export 'socket-local-port)
287(autoload 'socket-local-port "socket")
288(export 'socket-local-address)
289(autoload 'socket-local-address "socket")
290(export 'socket-peer-address)
291(autoload 'socket-peer-address "socket")
292
293(export '(grovel-java-definitions compile-system))
294(autoload '(grovel-java-definitions compile-system) "compile-system")
295(export 'with-thread-lock)
296(autoload-macro 'with-thread-lock)
297(export 'aver)
298(autoload-macro 'aver)
299(autoload 'sys::%failed-aver "aver")
300(export 'collect)
301(autoload-macro 'collect)
302(export 'with-mutex)
303(autoload-macro 'with-mutex)
304(export 'compile-file-if-needed)
305(autoload 'compile-file-if-needed "compile-file")
306(export 'describe-compiler-policy)
307(autoload 'describe-compiler-policy)
308
309;; JVM compiler.
310(in-package "JVM")
311(export '(jvm-compile jvm-compile-package))
312(autoload '%with-compilation-unit "jvm")
Note: See TracBrowser for help on using the repository browser.