source: branches/0.15.x/abcl/src/org/armedbear/lisp/autoloads.lisp

Last change on this file was 12000, checked in by ehuelsmann, 15 years ago

Backport r11992, 11993 and 11999: Cells support in MOP package.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 11.3 KB
Line 
1;;; autoloads.lisp
2;;;
3;;; Copyright (C) 2003-2008 Peter Graves
4;;; $Id: autoloads.lisp 12000 2009-06-06 19:40:42Z ehuelsmann $
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 with-file-compilation) "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 class-slots slot-definition-name))
194(autoload '(class-precedence-list class-slots slot-definition-name) "clos")
195
196
197;; Java interface.
198(in-package "JAVA")
199(export 'jregister-handler "JAVA")
200(autoload 'jregister-handler "java")
201(export 'jinterface-implementation "JAVA")
202(autoload 'jinterface-implementation "java")
203(export 'jmake-invocation-handler "JAVA")
204(autoload 'jmake-invocation-handler "java")
205(export 'jmake-proxy "JAVA")
206(autoload 'jmake-proxy "java")
207(export 'jproperty-value "JAVA")
208(autoload 'jproperty-value "java")
209(export 'jobject-class "JAVA")
210(autoload 'jobject-class "java")
211(export 'jclass-superclass "JAVA")
212(autoload 'jclass-superclass "java")
213(export 'jclass-interfaces "JAVA")
214(autoload 'jclass-interfaces "java")
215(export 'jclass-interface-p "JAVA")
216(autoload 'jclass-interface-p "java")
217(export 'jclass-superclass-p "JAVA")
218(autoload 'jclass-superclass-p "java")
219(export 'jclass-array-p "JAVA")
220(autoload 'jclass-array-p "java")
221(export 'jarray-component-type "JAVA")
222(autoload 'jarray-component-type "java")
223(export 'jarray-length "JAVA")
224(autoload 'jarray-length "java")
225(export 'jnew-array-from-array "JAVA")
226(autoload 'jnew-array-from-array "java")
227(export 'jclass-constructors "JAVA")
228(autoload 'jclass-constructors "java")
229(export 'jconstructor-params "JAVA")
230(autoload 'jconstructor-params "java")
231(export 'jclass-field "JAVA")
232(autoload 'jclass-field "java")
233(export 'jclass-fields "JAVA")
234(autoload 'jclass-fields "java")
235(export 'jfield-type "JAVA")
236(autoload 'jfield-type "java")
237(export 'jfield-name "JAVA")
238(autoload 'jfield-name "java")
239(export 'jclass-methods "JAVA")
240(autoload 'jclass-methods "java")
241(export 'jmethod-params "JAVA")
242(autoload 'jmethod-params "java")
243(export 'jmethod-name "JAVA")
244(autoload 'jmethod-name "java")
245(export 'jinstance-of-p "JAVA")
246(autoload 'jinstance-of-p "java")
247(export 'jmember-static-p "JAVA")
248(autoload 'jmember-static-p "java")
249(export 'jmember-public-p "JAVA")
250(autoload 'jmember-public-p "java")
251(export 'jmember-protected-p "JAVA")
252(autoload 'jmember-protected-p "java")
253(export 'jnew-runtime-class "JAVA")
254(autoload 'jnew-runtime-class "runtime-class")
255(export 'jredefine-method "JAVA")
256(autoload 'jredefine-method "runtime-class")
257(export 'jruntime-class-exists-p "JAVA")
258(autoload 'jruntime-class-exists-p "runtime-class")
259
260;; Profiler.
261(in-package "PROFILER")
262(export '(*granularity* show-call-counts with-profiling))
263(autoload 'show-call-counts "profiler")
264(autoload-macro 'with-profiling "profiler")
265
266;; Extensions.
267(in-package "EXTENSIONS")
268(export 'simple-search)
269(autoload 'simple-search "search")
270(export 'run-shell-command)
271(autoload 'run-shell-command)
272
273(export 'make-socket)
274(autoload 'make-socket "socket")
275(export 'make-server-socket)
276(autoload 'make-server-socket "socket")
277(export 'server-socket-close)
278(autoload 'server-socket-close "socket")
279(export 'socket-accept)
280(autoload 'socket-accept "socket")
281(export 'socket-close)
282(autoload 'socket-close "socket")
283(export 'get-socket-stream)
284(autoload 'get-socket-stream "socket")
285(export 'socket-peer-port)
286(autoload 'socket-peer-port "socket")
287(export 'socket-local-port)
288(autoload 'socket-local-port "socket")
289(export 'socket-local-address)
290(autoload 'socket-local-address "socket")
291(export 'socket-peer-address)
292(autoload 'socket-peer-address "socket")
293
294(export '(grovel-java-definitions compile-system))
295(autoload '(grovel-java-definitions compile-system) "compile-system")
296(export 'with-thread-lock)
297(autoload-macro 'with-thread-lock)
298(export 'aver)
299(autoload-macro 'aver)
300(autoload 'sys::%failed-aver "aver")
301(export 'collect)
302(autoload-macro 'collect)
303(export 'with-mutex)
304(autoload-macro 'with-mutex)
305(export 'compile-file-if-needed)
306(autoload 'compile-file-if-needed "compile-file")
307(export 'describe-compiler-policy)
308(autoload 'describe-compiler-policy)
309(export 'macroexpand-all)
310(autoload 'macroexpand-all)
311
312;; JVM compiler.
313(in-package "JVM")
314(export '(jvm-compile-package))
315(autoload '%with-compilation-unit "jvm")
316
317(in-package "LISP")
318(export 'compiler-let)
319(autoload 'compiler-let)
Note: See TracBrowser for help on using the repository browser.