-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlw-manual-data-8-0-0-0.el
2704 lines (2704 loc) · 230 KB
/
lw-manual-data-8-0-0-0.el
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
(defconst +lw-manual-data-8-0-0-0+
'(("add-sql-stream" "lw/lw-sql-2.htm#LWUGRM)add-sql-stream")
("int32-logtest" "lw/lw-sys-64.htm#LWUGRM)int32-logtest")
("try-compact-in-generation" "lw/lw-hcl-179.htm#LWUGRM)try-compact-in-generation")
("def-named-kb-class" "kw/kw-ref-14.htm#KW)def-named-kb-class" "kw/kw-ref-14.htm#ref_marker-line-516")
("with-prepared-statement" "lw/lw-sql-146.htm#LWUGRM)with-prepared-statement")
("ora-lob-free-temporary" "lw/lw-sql-73.htm#LWUGRM)ora-lob-free-temporary")
("ssl-ctx-pointer" "lw/lw-comm-115.htm#LWUGRM)ssl-ctx-pointer")
("basic-graph-spec" "capi/capi-lw-gt-ref-2.htm#CAPI)basic-graph-spec")
("jobject-ensure-global" "lw/lw-lw-ji-66.htm#LWUGRM)jobject-ensure-global")
("convert-from-foreign-string" "fli/fli-functions-7.htm#FLI)convert-from-foreign-string")
("*debug-print-length*" "lw/lw-dbg-4.htm#LWUGRM)*debug-print-length*")
("get-serial-port-state" "lw/lw-serial-port-2.htm#LWUGRM)get-serial-port-state")
("register-image-translation" "capi/capi-gp-ref-135.htm#CAPI)register-image-translation")
("read-color-db" "capi/capi-color-ref-27.htm#CAPI)read-color-db")
("format-to-system-log" "lw/lw-hcl-199.htm#LWUGRM)format-to-system-log")
("multi-column-list-panel" "capi/capi-capi-ref-259.htm#CAPI)multi-column-list-panel")
("define-declaration" "lw/lw-hcl-57.htm#LWUGRM)define-declaration")
("defsystem" "lw/lw-lispworks-28.htm#lispworks_marker-line-1449" "lw/lw-lispworks-28.htm#LWUGRM)defsystem")
("font-fixed-width-p" "capi/capi-gp-ref-55.htm#CAPI)font-fixed-width-p")
("*default-non-focus-message-timeout*" "capi/capi-capi-ref-66.htm#CAPI)*default-non-focus-message-timeout*")
("def" "lw/lw-dspec-4.htm#LWUGRM)def")
("*directory-link-transparency*" "lw/lw-sys-29.htm#LWUGRM)*directory-link-transparency*")
("create-temp-file" "lw/lw-hcl-44.htm#LWUGRM)create-temp-file")
("com.lispworks.BugFormViewer" "lw/lw-android-java-classes-and-methods-2.htm#LWUGRM)com.lispworks.BugFormViewer")
("set-horizontal-scroll-parameters" "capi/capi-capi-ref-411.htm#CAPI)set-horizontal-scroll-parameters")
("set-list-panel-keyboard-search-reset-time" "capi/capi-capi-ref-414.htm#CAPI)set-list-panel-keyboard-search-reset-time")
("tracking-pinboard-layout" "capi/capi-capi-ref-493.htm#CAPI)tracking-pinboard-layout")
("sqlite-open-blob" "lw/lw-sql-120.htm#LWUGRM)sqlite-open-blob")
("int32-lognot" "lw/lw-sys-64.htm#LWUGRM)int32-lognot")
("pushnew-to-process-private-property" "lw/lw-mp-124.htm#LWUGRM)pushnew-to-process-private-property")
("com.lispworks.Manager.mInitErrorString" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.mInitErrorString")
("get-ip-default-zone-id" "lw/lw-comm-59.htm#LWUGRM)get-ip-default-zone-id")
("jobject-of-class-p" "lw/lw-lw-ji-67.htm#LWUGRM)jobject-of-class-p")
("draw-pinboard-object-highlighted" "capi/capi-capi-ref-103.htm#CAPI)draw-pinboard-object-highlighted")
("ora-lob-copy" "lw/lw-sql-56.htm#LWUGRM)ora-lob-copy")
("augment-environment" "lw/lw-hcl-15.htm#hcl_marker-line-806" "lw/lw-hcl-15.htm#LWUGRM)augment-environment")
("funcall-async-list" "lw/lw-mp-32.htm#LWUGRM)funcall-async-list")
(":utf-32-reversed" "lw/lw-external-format-11.htm#LWUGRM):utf-32-reversed")
("stop-profiling" "lw/lw-hcl-160.htm#hcl_marker-line-8952" "lw/lw-hcl-160.htm#LWUGRM)stop-profiling")
("set-selection" "capi/capi-capi-ref-421.htm#CAPI)set-selection")
("copy-preferences-from-older-version" "lw/lw-sys-19.htm#LWUGRM)copy-preferences-from-older-version")
("ora-lob-is-temporary" "lw/lw-sql-80.htm#LWUGRM)ora-lob-is-temporary")
("fdf-handle-last-access" "lw/lw-hcl-74.htm#LWUGRM)fdf-handle-last-access")
("callIntA" "lw/lw-java-classes-and-methods-1.htm#LWUGRM)com.lispworks.LispCalls.callIntA")
("mark-and-sweep" "lw/lw-hcl-105.htm#LWUGRM)mark-and-sweep")
("draw-circle" "capi/capi-gp-ref-28.htm#CAPI)draw-circle")
("*print-restart-frames*" "lw/lw-dbg-24.htm#LWUGRM)*print-restart-frames*" "lw/lw-dbg-24.htm#dbg_marker-line-1604")
("dde-request*" "lw/lw-win32-dde-client-19.htm#LWUGRM)dde-request*")
("int32+" "lw/lw-sys-57.htm#LWUGRM)int32+")
("reset-profiler" "lw/lw-hcl-128.htm#LWUGRM)reset-profiler")
("funcallable-standard-object" "lw/lw-clos-8.htm#LWUGRM)funcallable-standard-object")
("apropos-color-alias-names" "capi/capi-color-ref-1.htm#CAPI)apropos-color-alias-names")
("extend-current-stack" "lw/lw-hcl-71.htm#hcl_marker-line-3975" "lw/lw-hcl-71.htm#LWUGRM)extend-current-stack")
("apply-in-pane-process-wait-multiple" "capi/capi-capi-ref-9.htm#CAPI)apply-in-pane-process-wait-multiple")
("find-filename-pattern-encoding-match" "lw/lw-sys-40.htm#LWUGRM)find-filename-pattern-encoding-match")
("generalized-time-pprint" "lw/lw-comm-55.htm#LWUGRM)generalized-time-pprint")
("define-foreign-converter" "fli/fli-functions-20.htm#FLI)define-foreign-converter")
("stream-advance-to-column" "lw/lw-streams-11.htm#LWUGRM)stream-advance-to-column")
("get-kb-object" "kw/kw-ref-23.htm#KW)get-kb-object")
("encode-db-standard-timestamp" "lw/lw-sql-32.htm#LWUGRM)encode-db-standard-timestamp")
("product-registry-path" "lw/lw-sys-111.htm#LWUGRM)product-registry-path")
("precompile-regexp" "lw/lw-lispworks-82.htm#lispworks_marker-line-3673" "lw/lw-lispworks-82.htm#LWUGRM)precompile-regexp")
("generate-graph-from-graph-spec" "capi/capi-lw-gt-ref-14.htm#CAPI)generate-graph-from-graph-spec")
("define-layout" "capi/capi-capi-ref-70.htm#CAPI)define-layout")
("*enter-debugger-directly*" "lw/lw-lispworks-40.htm#lispworks_marker-line-2007" "lw/lw-lispworks-40.htm#lispworks_marker-line-1995" "lw/lw-lispworks-40.htm#LWUGRM)*enter-debugger-directly*")
("get-java-virtual-machine" "lw/lw-lw-ji-25.htm#lw-ji_marker-line-1691" "lw/lw-lw-ji-25.htm#LWUGRM)get-java-virtual-machine")
("barrier" "lw/lw-mp-3.htm#LWUGRM)barrier")
("untrace" "lw/lw-common-lisp-55.htm#LWUGRM)untrace")
("process-break" "lw/lw-mp-81.htm#LWUGRM)process-break")
("gesture-spec-meta-bit" "lw/lw-sys-45.htm#LWUGRM)gesture-spec-meta-bit")
("sql-connection-error" "lw/lw-sql-110.htm#LWUGRM)sql-connection-error")
("set-default-remote-debugging-connection" "lw/lw-dbg-33.htm#LWUGRM)set-default-remote-debugging-connection")
("create-index" "lw/lw-sql-10.htm#LWUGRM)create-index")
("dde-poke*" "lw/lw-win32-dde-client-17.htm#LWUGRM)dde-poke*")
("with-exclusive-lock" "lw/lw-mp-148.htm#LWUGRM)with-exclusive-lock")
("deliver-keep-symbols" "deliv/deliv-delivery-ref-3.htm#delivery-ref_:keep-symbols-line-164" "deliv/deliv-delivery-ref-3.htm#DELIV)deliver-keep-symbols")
("labelled-arrow-pinboard-object" "capi/capi-capi-ref-211.htm#CAPI)labelled-arrow-pinboard-object")
("make-array" "lw/lw-common-lisp-26.htm#common-lisp_marker-line-2008" "lw/lw-common-lisp-26.htm#LWUGRM)make-array")
("barrier-block-and-wait" "lw/lw-mp-5.htm#LWUGRM)barrier-block-and-wait")
("analyzing-special-variables-usage" "lw/lw-hcl-6.htm#LWUGRM)analyzing-special-variables-usage")
("timer-name" "lw/lw-mp-144.htm#LWUGRM)timer-name")
("executable-log-file" "lw/lw-dbg-9.htm#LWUGRM)executable-log-file")
("make-barrier" "lw/lw-mp-65.htm#LWUGRM)make-barrier")
("drop-object-collection-item" "capi/capi-capi-ref-106.htm#CAPI)drop-object-collection-item")
("total-allocation" "lw/lw-hcl-169.htm#LWUGRM)total-allocation")
("process-internal-server-p" "lw/lw-mp-88.htm#LWUGRM)process-internal-server-p")
("without-interrupts" "lw/lw-mp-151.htm#LWUGRM)without-interrupts")
("-priority" "kw/kw-ref-48.htm#KW)-priority")
("dde-client-advise-data" "lw/lw-win32-dde-client-5.htm#LWUGRM)dde-client-advise-data")
("listener-pane" "capi/capi-capi-ref-216.htm#CAPI)listener-pane")
("vector-double3" "fli/fli-type-ref-42.htm#FLI)vector-double3")
("unicode-char-lessp" "lw/lw-lispworks-119.htm#LWUGRM)unicode-char-lessp")
("virtual-screen-geometry" "capi/capi-capi-ref-513.htm#CAPI)virtual-screen-geometry")
("convert-integer-to-dynamic-foreign-object" "fli/fli-functions-8.htm#FLI)convert-integer-to-dynamic-foreign-object")
("def-view-class" "lw/lw-sql-19.htm#LWUGRM)def-view-class" "lw/lw-sql-19.htm#sql_marker-line-1183")
("sql-database-data-error" "lw/lw-sql-111.htm#LWUGRM)sql-database-data-error")
("set-default-image-load-function" "capi/capi-gp-ref-138.htm#CAPI)set-default-image-load-function")
("print-profile-list" "lw/lw-hcl-115.htm#hcl_*profiler-print-out-all*-line-6439" "lw/lw-hcl-115.htm#LWUGRM)print-profile-list")
("text-string-p" "lw/lw-lispworks-111.htm#LWUGRM)text-string-p")
("*cache-table-queries-default*" "lw/lw-sql-5.htm#LWUGRM)*cache-table-queries-default*")
("make-inferencing-state" "kw/kw-ref-37.htm#KW)make-inferencing-state")
("int64-logeqv" "lw/lw-sys-76.htm#LWUGRM)int64-logeqv")
("dde-poke" "lw/lw-win32-dde-client-16.htm#LWUGRM)dde-poke")
("*filename-pattern-encoding-matches*" "lw/lw-sys-38.htm#LWUGRM)*filename-pattern-encoding-matches*")
("get-vertical-scroll-parameters" "capi/capi-capi-ref-155.htm#CAPI)get-vertical-scroll-parameters")
("insert-records" "lw/lw-sql-37.htm#LWUGRM)insert-records")
("switch-static-allocation" "lw/lw-hcl-164.htm#LWUGRM)switch-static-allocation")
("delivery-shaker-weak-pointer" "deliv/deliv-delivery-ref-6.htm#DELIV)delivery-shaker-weak-pointer")
("undefcontext" "kw/kw-ref-61.htm#KW)undefcontext")
("with-graphics-mask" "capi/capi-gp-ref-160.htm#CAPI)with-graphics-mask")
("*mt-random-state*" "lw/lw-lispworks-76.htm#LWUGRM)*mt-random-state*")
("java-field-setting-error" "lw/lw-lw-ji-42.htm#LWUGRM)java-field-setting-error")
("enlarge-static" "lw/lw-hcl-67.htm#LWUGRM)enlarge-static")
("int32-to-int64" "lw/lw-sys-66.htm#LWUGRM)int32-to-int64")
("map-all-processes-backtrace" "lw/lw-mp-73.htm#LWUGRM)map-all-processes-backtrace")
("rectangle-bottom" "capi/capi-gp-ref-126.htm#CAPI)rectangle-bottom")
("port-height" "capi/capi-gp-ref-116.htm#CAPI)port-height")
("connect-to-tcp-server" "lw/lw-comm-40.htm#LWUGRM)connect-to-tcp-server")
("commit" "lw/lw-sql-6.htm#LWUGRM)commit")
(":long" "fli/fli-type-ref-24.htm#FLI):long")
("com.lispworks.Manager.getClassLoader" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.getClassLoader")
("allowing-block-interrupts" "lw/lw-mp-1.htm#LWUGRM)allowing-block-interrupts")
("exit-dialog" "capi/capi-capi-ref-138.htm#CAPI)exit-dialog")
("make-typed-aref-vector" "lw/lw-sys-92.htm#sys_marker-line-4247" "lw/lw-sys-92.htm#LWUGRM)make-typed-aref-vector")
("accepting-handle-user-info" "lw/lw-comm-6.htm#LWUGRM)accepting-handle-user-info")
("make-instance" "kw/kw-ref-38.htm#KW)make-instance%20extension%20in%20knowledgeworks" "lw/lw-common-lisp-28.htm#LWUGRM)make-instance")
("simple-char-p" "lw/lw-lispworks-102.htm#LWUGRM)simple-char-p")
("process-reset" "lw/lw-mp-102.htm#LWUGRM)process-reset")
("int64/=" "lw/lw-sys-70.htm#LWUGRM)int64/=")
("fit-object" "capi/capi-lw-gt-ref-6.htm#CAPI)fit-object")
("contain" "capi/capi-capi-ref-54.htm#capi-ref_marker-line-3807" "capi/capi-capi-ref-54.htm#CAPI)contain")
("simple-augmented-string-p" "lw/lw-sys-10.htm#LWUGRM)simple-augmented-string-p")
("get-horizontal-scroll-parameters" "capi/capi-capi-ref-155.htm#CAPI)get-horizontal-scroll-parameters")
("draw-lines" "capi/capi-gp-ref-32.htm#CAPI)draw-lines")
("socket-connection-peer-address" "lw/lw-comm-88.htm#LWUGRM)socket-connection-peer-address")
("stacked-tree-default-color-function" "capi/capi-capi-ref-443.htm#CAPI)stacked-tree-default-color-function")
("check-lisp-calls-initialized" "lw/lw-lw-ji-6.htm#LWUGRM)check-lisp-calls-initialized")
("merge-ef-specs" "lw/lw-sys-96.htm#LWUGRM)merge-ef-specs")
("any-capi-window-displayed-p" "lw/lw-hcl-12.htm#LWUGRM)any-capi-window-displayed-p")
("draw-ellipse" "capi/capi-gp-ref-29.htm#CAPI)draw-ellipse")
("draw-metafile-to-image" "capi/capi-capi-ref-99.htm#CAPI)draw-metafile-to-image")
("activate-pane" "capi/capi-capi-ref-5.htm#capi-ref_marker-line-209" "capi/capi-capi-ref-5.htm#CAPI)activate-pane")
("define-java-constructor" "lw/lw-lw-ji-14.htm#LWUGRM)define-java-constructor")
("+int64-1+" "lw/lw-sys-72.htm#LWUGRM)+int64-1+")
("with-transformed-points" "capi/capi-gp-ref-171.htm#CAPI)with-transformed-points")
("define-foreign-funcallable" "fli/fli-functions-22.htm#FLI)define-foreign-funcallable")
("simple-base-string" "lw/lw-common-lisp-3.htm#LWUGRM)simple-base-string")
("clear-code-coverage" "lw/lw-hcl-28.htm#LWUGRM)clear-code-coverage")
("raise-interface" "capi/capi-capi-ref-357.htm#CAPI)raise-interface")
("fundamental-input-stream" "lw/lw-streams-8.htm#LWUGRM)fundamental-input-stream")
("fundamental-output-stream" "lw/lw-streams-9.htm#LWUGRM)fundamental-output-stream")
("read-serial-port-string" "lw/lw-serial-port-5.htm#LWUGRM)read-serial-port-string")
("mailbox-peek" "lw/lw-mp-56.htm#LWUGRM)mailbox-peek")
("printer-port-handle" "capi/capi-capi-ref-327.htm#CAPI)printer-port-handle")
("get-transform-scale" "capi/capi-gp-ref-75.htm#CAPI)get-transform-scale")
("2pi" "capi/capi-gp-ref-1.htm#CAPI)2pi")
("LispWorksState" "lw/lw-c-functions-3.htm#LWUGRM)LispWorksState")
("p-oci-env" "lw/lw-sql-93.htm#LWUGRM)p-oci-env")
("map-pane-descendant-children" "capi/capi-capi-ref-244.htm#CAPI)map-pane-descendant-children")
("pointer-element-type-p" "fli/fli-functions-63.htm#FLI)pointer-element-type-p")
("push-end" "lw/lw-lispworks-88.htm#lispworks_marker-line-3874" "lw/lw-lispworks-88.htm#lispworks_marker-line-3871" "lw/lw-lispworks-88.htm#LWUGRM)push-end")
("make-java-array" "lw/lw-lw-ji-78.htm#LWUGRM)make-java-array")
("com.lispworks.Manager.setErrorReporter" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.setErrorReporter")
("ssl-connection-read-certificates" "lw/lw-comm-110.htm#LWUGRM)ssl-connection-read-certificates")
("java-vm-poi" "lw/lw-lw-ji-59.htm#LWUGRM)java-vm-poi")
("compress-external-image" "capi/capi-gp-ref-12.htm#CAPI)compress-external-image")
("wait-for-input-streams" "lw/lw-sys-153.htm#LWUGRM)wait-for-input-streams")
("jshort" "lw/lw-lw-ji-60.htm#LWUGRM)jshort")
("set-make-instance-argument-checking" "lw/lw-clos-13.htm#LWUGRM)set-make-instance-argument-checking")
(":ptrdiff-t" "fli/fli-type-ref-28.htm#FLI):ptrdiff-t")
("stream-write-char" "lw/lw-streams-36.htm#LWUGRM)stream-write-char")
("invalidate-rectangle" "capi/capi-gp-ref-92.htm#CAPI)invalidate-rectangle")
("with-modification-check-macro" "lw/lw-sys-156.htm#LWUGRM)with-modification-check-macro")
("process-poke" "lw/lw-mp-98.htm#LWUGRM)process-poke")
("copy-pixels" "capi/capi-gp-ref-18.htm#CAPI)copy-pixels")
("callObjectV" "lw/lw-java-classes-and-methods-1.htm#LWUGRM)com.lispworks.LispCalls.callObjectV")
("*process-initial-bindings*" "lw/lw-mp-87.htm#LWUGRM)*process-initial-bindings*")
("text-input-pane-cut" "capi/capi-capi-ref-467.htm#CAPI)text-input-pane-cut")
("list-panel-items-and-filter" "capi/capi-capi-ref-221.htm#CAPI)list-panel-items-and-filter")
("when-let*" "lw/lw-lispworks-127.htm#LWUGRM)when-let*")
("editor-pane-default-composition-callback" "capi/capi-capi-ref-121.htm#CAPI)editor-pane-default-composition-callback")
("choose-unicode-string-hash-function" "lw/lw-lispworks-17.htm#LWUGRM)choose-unicode-string-hash-function")
("generate-java-class-definitions" "lw/lw-lw-ji-23.htm#LWUGRM)generate-java-class-definitions")
("socket-error" "lw/lw-comm-92.htm#comm_marker-line-5091" "lw/lw-comm-92.htm#LWUGRM)socket-error-generic-function" "lw/lw-comm-91.htm#LWUGRM)socket-error")
("rectangle-width" "capi/capi-gp-ref-132.htm#CAPI)rectangle-width")
("hardcopy-system" "lw/lw-lispworks-66.htm#lispworks_marker-line-2998" "lw/lw-lispworks-66.htm#LWUGRM)hardcopy-system")
("current-pointer-position" "capi/capi-capi-ref-61.htm#capi-ref_marker-line-4220" "capi/capi-capi-ref-61.htm#CAPI)current-pointer-position")
("*check-network-server*" "lw/lw-sys-16.htm#LWUGRM)*check-network-server*")
("update-instance-for-redefined-class" "lw/lw-common-lisp-57.htm#LWUGRM)update-instance-for-redefined-class")
("top-level-interface-geometry" "capi/capi-capi-ref-489.htm#CAPI)top-level-interface-geometry")
("apply-with-allocation-in-gen-num" "lw/lw-sys-2.htm#LWUGRM)apply-with-allocation-in-gen-num")
("vector-ulong1" "fli/fli-type-ref-42.htm#FLI)vector-ulong1")
("vector-ulong3" "fli/fli-type-ref-42.htm#FLI)vector-ulong3")
("get-throwable-backtrace-strings" "lw/lw-lw-ji-29.htm#LWUGRM)get-throwable-backtrace-strings")
("vector-ulong2" "fli/fli-type-ref-42.htm#FLI)vector-ulong2")
("vector-ulong4" "fli/fli-type-ref-42.htm#FLI)vector-ulong4")
("with-pinned-objects" "lw/lw-hcl-196.htm#LWUGRM)with-pinned-objects" "lw/lw-hcl-196.htm#hcl_:lisp-simple-1d-array-line-10530" "lw/lw-hcl-196.htm#hcl_:lisp-array-line-10530")
("finish-heavy-allocation" "lw/lw-hcl-82.htm#LWUGRM)finish-heavy-allocation")
("ssl-handshake-timeout" "lw/lw-comm-119.htm#LWUGRM)ssl-handshake-timeout")
("stacked-tree-history-forward" "capi/capi-capi-ref-444.htm#CAPI)stacked-tree-history-forward")
("vector-ulong8" "fli/fli-type-ref-42.htm#FLI)vector-ulong8")
("unicode-string-not-equal" "lw/lw-lispworks-122.htm#LWUGRM)unicode-string-not-equal")
("p-oci-file" "lw/lw-sql-94.htm#LWUGRM)p-oci-file")
("fpi" "capi/capi-gp-ref-57.htm#CAPI)fpi")
("get-embedded-module-data" "fli/fli-functions-50.htm#FLI)get-embedded-module-data")
("make-image" "capi/capi-gp-ref-102.htm#CAPI)make-image")
("sql-expression-object" "lw/lw-sql-115.htm#LWUGRM)sql-expression-object")
("lock" "lw/lw-mp-41.htm#LWUGRM)lock")
("com.lispworks.LispCalls.waitForInitialization" "lw/lw-java-classes-and-methods-1.htm#LWUGRM)com.lispworks.LispCalls.waitForInitialization")
("inst-token" "kw/kw-ref-31.htm#KW)inst-token")
("map-collection-items" "capi/capi-capi-ref-242.htm#CAPI)map-collection-items")
("text-input-pane" "capi/capi-capi-ref-463.htm#capi-ref_marker-line-29415" "capi/capi-capi-ref-463.htm#capi-ref_marker-line-29399" "capi/capi-capi-ref-463.htm#capi-ref_marker-line-29323" "capi/capi-capi-ref-463.htm#capi-ref_marker-line-29358" "capi/capi-capi-ref-463.htm#capi-ref_marker-line-29371" "capi/capi-capi-ref-463.htm#capi-ref_marker-line-29338" "capi/capi-capi-ref-463.htm#capi-ref_marker-line-29330" "capi/capi-capi-ref-463.htm#capi-ref_marker-line-29363" "capi/capi-capi-ref-463.htm#capi-ref_marker-line-29446" "capi/capi-capi-ref-463.htm#capi-ref_marker-line-29345" "capi/capi-capi-ref-463.htm#capi-ref_marker-line-29408" "capi/capi-capi-ref-463.htm#CAPI)text-input-pane")
("prepared-statement-set-and-execute" "lw/lw-sql-99.htm#LWUGRM)prepared-statement-set-and-execute")
("*default-action-list-sort-time*" "lw/lw-lispworks-24.htm#LWUGRM)*default-action-list-sort-time*")
("convert-to-screen" "capi/capi-capi-ref-56.htm#capi-ref_marker-line-3919" "capi/capi-capi-ref-56.htm#capi-ref_marker-line-3918" "capi/capi-capi-ref-56.htm#capi-ref_marker-line-3992" "capi/capi-capi-ref-56.htm#CAPI)convert-to-screen")
("double-float" "lw/lw-common-lisp-17.htm#LWUGRM)double-float")
("int32=" "lw/lw-sys-58.htm#LWUGRM)int32=")
(":float" "fli/fli-type-ref-12.htm#FLI):float")
("server-terminate" "lw/lw-comm-81.htm#LWUGRM)server-terminate")
("show-pane" "capi/capi-capi-ref-426.htm#CAPI)show-pane")
("form-layout" "capi/capi-capi-ref-150.htm#CAPI)form-layout")
("java-array-indices-error" "lw/lw-lw-ji-36.htm#LWUGRM)java-array-indices-error")
("ora-lob-read-buffer" "lw/lw-sql-85.htm#LWUGRM)ora-lob-read-buffer")
("port-graphics-state" "capi/capi-gp-ref-115.htm#CAPI)port-graphics-state")
("make-absolute-drawing" "capi/capi-lw-gt-ref-6.htm#CAPI)make-absolute-drawing")
("undefine-action" "lw/lw-lispworks-113.htm#LWUGRM)undefine-action")
("current-process-send" "lw/lw-mp-25.htm#LWUGRM)current-process-send")
("when-let" "lw/lw-lispworks-127.htm#lispworks_marker-line-5529" "lw/lw-lispworks-127.htm#LWUGRM)when-let")
("dde-execute" "lw/lw-win32-dde-client-8.htm#LWUGRM)dde-execute")
("with-external-metafile" "capi/capi-capi-ref-518.htm#capi-ref_marker-line-32735" "capi/capi-capi-ref-518.htm#CAPI)with-external-metafile")
("vector-short32" "fli/fli-type-ref-42.htm#FLI)vector-short32")
("with-code-coverage-generation" "lw/lw-hcl-190.htm#LWUGRM)with-code-coverage-generation")
("replace-items" "capi/capi-capi-ref-374.htm#CAPI)replace-items")
("set-hash-table-weak" "lw/lw-hcl-149.htm#LWUGRM)set-hash-table-weak")
("profiler-tree-to-function" "lw/lw-hcl-121.htm#LWUGRM)profiler-tree-to-function")
("drop-view" "lw/lw-sql-29.htm#LWUGRM)drop-view")
("ssl-x509-lookup" "lw/lw-comm-124.htm#LWUGRM)ssl-x509-lookup")
("simple-pane-visible-height" "capi/capi-capi-ref-431.htm#CAPI)simple-pane-visible-height")
("make-menu-for-pane" "capi/capi-capi-ref-235.htm#CAPI)make-menu-for-pane")
("current-stack-length" "lw/lw-hcl-47.htm#hcl_marker-line-2647" "lw/lw-hcl-47.htm#LWUGRM)current-stack-length")
("barrier-unblock" "lw/lw-mp-12.htm#LWUGRM)barrier-unblock")
("com.lispworks.Manager.mMessagesMaxLength" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.mMessagesMaxLength")
("set-maximum-memory" "lw/lw-sys-126.htm#LWUGRM)set-maximum-memory")
("install-postscript-printer" "capi/capi-capi-ref-183.htm#CAPI)install-postscript-printer")
("+int32-0+" "lw/lw-sys-59.htm#LWUGRM)+int32-0+")
("prepared-statement-set-and-query*" "lw/lw-sql-99.htm#LWUGRM)prepared-statement-set-and-query*")
("play-sound" "capi/capi-capi-ref-315.htm#CAPI)play-sound")
("make-icon-resource-image-set" "capi/capi-capi-ref-233.htm#CAPI)make-icon-resource-image-set")
("invalidate-rectangle-from-points" "capi/capi-gp-ref-93.htm#CAPI)invalidate-rectangle-from-points")
("pi-by-2" "capi/capi-gp-ref-111.htm#CAPI)pi-by-2")
("with-internal-metafile" "capi/capi-capi-ref-520.htm#capi-ref_marker-line-32988" "capi/capi-capi-ref-520.htm#CAPI)with-internal-metafile")
("image-list" "capi/capi-capi-ref-178.htm#CAPI)image-list")
("mMessagesMaxLength" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.mMessagesMaxLength")
(":unicode" "lw/lw-external-format-9.htm#LWUGRM):unicode")
("condition-variable-signal" "lw/lw-mp-17.htm#LWUGRM)condition-variable-signal")
("int64-lognor" "lw/lw-sys-76.htm#LWUGRM)int64-lognor")
("transform-distance" "capi/capi-gp-ref-143.htm#CAPI)transform-distance")
("get-char-ascent" "capi/capi-gp-ref-63.htm#CAPI)get-char-ascent")
("make-draw-circle" "capi/capi-lw-gt-ref-13.htm#CAPI)make-draw-circle")
("choice-selected-items" "capi/capi-capi-ref-33.htm#CAPI)choice-selected-items")
("int32-minusp" "lw/lw-sys-65.htm#LWUGRM)int32-minusp")
("rotate-ring" "lw/lw-hcl-136.htm#LWUGRM)rotate-ring")
("push-button" "capi/capi-capi-ref-352.htm#CAPI)push-button")
("pane-interface-paste-p" "capi/capi-capi-ref-297.htm#CAPI)pane-interface-paste-p")
("replace-foreign-array" "fli/fli-functions-70.htm#FLI)replace-foreign-array")
("dspec-primary-name" "lw/lw-dspec-15.htm#LWUGRM)dspec-primary-name")
("remote-debugging-connection-add-close-cleanup" "lw/lw-dbg-26.htm#LWUGRM)remote-debugging-connection-add-close-cleanup")
("android-build-value" "lw/lw-hcl-7.htm#LWUGRM)android-build-value")
("tab-layout-visible-child" "capi/capi-capi-ref-461.htm#CAPI)tab-layout-visible-child")
("clear-graphics-port" "capi/capi-gp-ref-9.htm#CAPI)clear-graphics-port")
("generate-grid-lines" "capi/capi-lw-gt-ref-10.htm#CAPI)generate-grid-lines")
("set-primitive-array-region" "lw/lw-lw-ji-27.htm#LWUGRM)set-primitive-array-region")
("async-io-state-address" "lw/lw-comm-13.htm#LWUGRM)async-io-state-address")
("prepared-statement-set-and-query" "lw/lw-sql-99.htm#LWUGRM)prepared-statement-set-and-query")
("set-ssl-ctx-options" "lw/lw-comm-83.htm#LWUGRM)set-ssl-ctx-options")
("exit-confirmer" "capi/capi-capi-ref-137.htm#CAPI)exit-confirmer")
("serial-port-input-available-p" "lw/lw-serial-port-7.htm#LWUGRM)serial-port-input-available-p")
("pane-interface-deselect-all" "capi/capi-capi-ref-297.htm#CAPI)pane-interface-deselect-all")
("make-string" "lw/lw-common-lisp-31.htm#LWUGRM)make-string")
("dde-disconnect" "lw/lw-win32-dde-client-7.htm#LWUGRM)dde-disconnect")
("*standard-output*" "lw/lw-common-lisp-49.htm#LWUGRM)*standard-output*")
("stream-read-char-no-hang" "lw/lw-streams-28.htm#LWUGRM)stream-read-char-no-hang")
("code-coverage-set-html-background-colors" "lw/lw-hcl-36.htm#LWUGRM)code-coverage-set-html-background-colors")
("make-string-output-stream" "lw/lw-common-lisp-32.htm#LWUGRM)make-string-output-stream")
("define-foreign-callable" "fli/fli-functions-19.htm#functions_marker-line-1271" "fli/fli-functions-19.htm#FLI)define-foreign-callable")
("base-string" "lw/lw-common-lisp-3.htm#LWUGRM)base-string")
("process-wait-with-timeout" "lw/lw-mp-121.htm#LWUGRM)process-wait-with-timeout")
("compile-file" "lw/lw-common-lisp-7.htm#common-lisp_marker-line-596" "lw/lw-common-lisp-7.htm#common-lisp_marker-line-584" "lw/lw-common-lisp-7.htm#common-lisp_marker-line-590" "lw/lw-common-lisp-7.htm#common-lisp_marker-line-569" "lw/lw-common-lisp-7.htm#common-lisp_marker-line-534" "lw/lw-common-lisp-7.htm#common-lisp_marker-line-380" "lw/lw-common-lisp-7.htm#common-lisp_marker-line-578" "lw/lw-common-lisp-7.htm#common-lisp_marker-line-529" "lw/lw-common-lisp-7.htm#LWUGRM)compile-file")
("async-io-state-detach-ssl" "lw/lw-comm-17.htm#LWUGRM)async-io-state-detach-ssl")
("accepting-handle-socket" "lw/lw-comm-5.htm#LWUGRM)accepting-handle-socket")
("safe-locale-file-encoding" "lw/lw-sys-116.htm#LWUGRM)safe-locale-file-encoding")
("async-io-state-read-buffer" "lw/lw-comm-25.htm#LWUGRM)async-io-state-read-buffer")
("decode-to-db-standard-timestamp" "lw/lw-sql-15.htm#LWUGRM)decode-to-db-standard-timestamp")
("define-dde-client" "lw/lw-win32-dde-client-20.htm#LWUGRM)define-dde-client")
("accepting-handle" "lw/lw-comm-1.htm#LWUGRM)accepting-handle")
("editor-pane-native-blink-rate" "capi/capi-capi-ref-123.htm#CAPI)editor-pane-native-blink-rate")
("get-default-local-ipv6-address" "lw/lw-comm-57.htm#LWUGRM)get-default-local-ipv6-address")
("*in-interpreter*" "kw/kw-ref-27.htm#KW)*in-interpreter*")
("ole-control-insert-object" "capi/capi-capi-ref-273.htm#CAPI)ole-control-insert-object")
("async-io-state-buffered-data-length" "lw/lw-comm-15.htm#LWUGRM)async-io-state-buffered-data-length")
("ora-lob-read-foreign-buffer" "lw/lw-sql-86.htm#LWUGRM)ora-lob-read-foreign-buffer")
("current-popup" "capi/capi-capi-ref-62.htm#CAPI)current-popup")
("button-panel" "capi/capi-capi-ref-20.htm#CAPI)button-panel")
("make-hsv" "capi/capi-color-ref-25.htm#CAPI)make-hsv")
("compile-file-if-needed" "lw/lw-hcl-39.htm#LWUGRM)compile-file-if-needed")
("find-ssl-connection-from-ssl-ref" "lw/lw-comm-53.htm#LWUGRM)find-ssl-connection-from-ssl-ref")
("redraw-drawing-with-cached-display" "capi/capi-capi-ref-367.htm#CAPI)redraw-drawing-with-cached-display")
("round-to-single-precision" "lw/lw-lispworks-96.htm#LWUGRM)round-to-single-precision")
("catching-java-exceptions" "lw/lw-lw-ji-5.htm#LWUGRM)catching-java-exceptions")
("int32*" "lw/lw-sys-57.htm#LWUGRM)int32*")
("start-pane-drag-operation" "capi/capi-capi-ref-450.htm#CAPI)start-pane-drag-operation")
("general-handle-event" "lw/lw-mp-33.htm#LWUGRM)general-handle-event")
("ssl-new" "lw/lw-comm-121.htm#LWUGRM)ssl-new")
("allocated-in-its-own-segment-p" "lw/lw-sys-1.htm#LWUGRM)allocated-in-its-own-segment-p")
("*print-string*" "lw/lw-hcl-116.htm#LWUGRM)*print-string*")
("update-objects-joins" "lw/lw-sql-140.htm#LWUGRM)update-objects-joins")
("document-frame" "capi/capi-capi-ref-94.htm#capi-ref_marker-line-6193" "capi/capi-capi-ref-94.htm#capi-ref_marker-line-6187" "capi/capi-capi-ref-94.htm#CAPI)document-frame")
("add-code-coverage-data" "lw/lw-hcl-1.htm#LWUGRM)add-code-coverage-data")
("defcontext" "kw/kw-ref-11.htm#ref_marker-line-376" "kw/kw-ref-11.htm#KW)defcontext")
("field-access-exception" "lw/lw-lw-ji-19.htm#LWUGRM)field-access-exception")
("select" "lw/lw-sql-106.htm#LWUGRM)select")
("undefine-declaration" "lw/lw-hcl-181.htm#LWUGRM)undefine-declaration")
("*trace-output*" "lw/lw-common-lisp-49.htm#LWUGRM)*trace-output*")
("defclass" "lw/lw-common-lisp-11.htm#LWUGRM)defclass")
("get-jobject" "lw/lw-lw-ji-26.htm#LWUGRM)get-jobject")
("ora-lob-append" "lw/lw-sql-51.htm#LWUGRM)ora-lob-append")
("port-string-height" "capi/capi-gp-ref-118.htm#CAPI)port-string-height")
("*debug-print-level*" "lw/lw-dbg-5.htm#LWUGRM)*debug-print-level*")
("process-run-function" "lw/lw-mp-103.htm#LWUGRM)process-run-function")
("ide-set-default-remote-debugging-connection" "lw/lw-dbg-14.htm#LWUGRM)ide-set-default-remote-debugging-connection")
("variable-information" "lw/lw-hcl-185.htm#LWUGRM)variable-information")
("get-color-spec" "capi/capi-color-ref-22.htm#CAPI)get-color-spec")
("enum-symbols" "fli/fli-functions-30.htm#FLI)enum-symbols")
("with-graphics-state" "capi/capi-gp-ref-163.htm#CAPI)with-graphics-state")
(":union" "fli/fli-type-ref-40.htm#FLI):union")
("create-table" "lw/lw-sql-11.htm#LWUGRM)create-table")
("gethash-ensuring" "lw/lw-hcl-92.htm#LWUGRM)gethash-ensuring")
("object-address" "lw/lw-sys-99.htm#LWUGRM)object-address")
("with-action-item-error-handling" "lw/lw-lispworks-129.htm#LWUGRM)with-action-item-error-handling")
("graphics-port-mixin" "capi/capi-gp-ref-77.htm#CAPI)graphics-port-mixin")
("timer-expired-p" "lw/lw-mp-143.htm#LWUGRM)timer-expired-p")
("set-temp-directory" "lw/lw-sys-136.htm#LWUGRM)set-temp-directory")
("map-java-object-array" "lw/lw-lw-ji-81.htm#LWUGRM)map-java-object-array")
("any" "kw/kw-ref-2.htm#KW)any")
("p-oci-svc-ctx" "lw/lw-sql-97.htm#LWUGRM)p-oci-svc-ctx")
("text-input-pane-delete" "capi/capi-capi-ref-468.htm#CAPI)text-input-pane-delete")
("stacked-tree-decrease-font-height" "capi/capi-capi-ref-442.htm#CAPI)stacked-tree-decrease-font-height")
("size-of" "fli/fli-functions-75.htm#FLI)size-of")
("bmp-char" "lw/lw-lispworks-11.htm#LWUGRM)bmp-char")
("simple-pane-visible-size" "capi/capi-capi-ref-432.htm#CAPI)simple-pane-visible-size")
("enum-symbol-value-pairs" "fli/fli-functions-30.htm#FLI)enum-symbol-value-pairs")
("setLispTempDir" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.setLispTempDir")
("current-process-unblock-interrupts" "lw/lw-mp-27.htm#LWUGRM)current-process-unblock-interrupts")
("interface-iconified-p" "capi/capi-capi-ref-194.htm#CAPI)interface-iconified-p")
("*terminal-debugger-block-multiprocessing*" "lw/lw-dbg-38.htm#LWUGRM)*terminal-debugger-block-multiprocessing*")
("make-dither" "capi/capi-gp-ref-99.htm#CAPI)make-dither")
("mailbox-size" "lw/lw-mp-61.htm#LWUGRM)mailbox-size")
("pane-got-focus" "capi/capi-capi-ref-294.htm#CAPI)pane-got-focus" "capi/capi-capi-ref-294.htm#capi-ref_marker-line-18638")
("vector-double4" "fli/fli-type-ref-42.htm#FLI)vector-double4")
("verify-java-callers" "lw/lw-lw-ji-97.htm#LWUGRM)verify-java-callers")
("create-java-object-error" "lw/lw-lw-ji-10.htm#LWUGRM)create-java-object-error")
("abort-dialog" "capi/capi-capi-ref-2.htm#capi-ref_marker-line-58" "capi/capi-capi-ref-2.htm#CAPI)abort-dialog")
("ensure-hash-entry" "lw/lw-hcl-68.htm#LWUGRM)ensure-hash-entry")
("display-tooltip" "capi/capi-capi-ref-89.htm#CAPI)display-tooltip")
("lpstr" "lw/lw-win32-misc-17.htm#LWUGRM)lpstr")
("who-binds" "lw/lw-hcl-186.htm#LWUGRM)who-binds")
("map-processes" "lw/lw-mp-75.htm#LWUGRM)map-processes")
("write-string-with-properties" "lw/lw-hcl-198.htm#LWUGRM)write-string-with-properties")
("int32>>" "lw/lw-sys-62.htm#LWUGRM)int32%3E%3E")
("end-pane-drag-operation" "capi/capi-capi-ref-450.htm#CAPI)end-pane-drag-operation")
("com.lispworks.Manager.setMessageHandler" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.setMessageHandler")
("copy-basic-graph-spec" "capi/capi-lw-gt-ref-14.htm#CAPI)copy-basic-graph-spec")
("docking-layout-pane-visible-p" "capi/capi-capi-ref-92.htm#CAPI)docking-layout-pane-visible-p")
("choice-selected-item" "capi/capi-capi-ref-31.htm#CAPI)choice-selected-item")
("pane-adjusted-offset" "capi/capi-capi-ref-289.htm#CAPI)pane-adjusted-offset")
("draw-character" "capi/capi-gp-ref-27.htm#CAPI)draw-character")
("set-default-character-element-type" "lw/lw-lispworks-99.htm#LWUGRM)set-default-character-element-type")
("list-panel-filter-state" "capi/capi-capi-ref-220.htm#CAPI)list-panel-filter-state")
("get-bounds" "capi/capi-gp-ref-61.htm#CAPI)get-bounds")
("stream-read-line" "lw/lw-streams-29.htm#LWUGRM)stream-read-line")
("make-object-permanent" "lw/lw-sys-87.htm#LWUGRM)make-object-permanent")
("create-instance-from-jobject" "lw/lw-lw-ji-7.htm#LWUGRM)create-instance-from-jobject")
("string-needs-n-prefix" "lw/lw-sql-136.htm#LWUGRM)string-needs-n-prefix")
("standard-db-object" "lw/lw-sql-132.htm#LWUGRM)standard-db-object")
("unicode-string-equal" "lw/lw-lispworks-122.htm#LWUGRM)unicode-string-equal")
("list-all-inferencing-states" "kw/kw-ref-36.htm#KW)list-all-inferencing-states")
("jvalue-store-jfloat" "lw/lw-lw-ji-73.htm#LWUGRM)jvalue-store-jfloat")
("safe-format-to-string" "lw/lw-hcl-137.htm#LWUGRM)safe-format-to-string")
("compute-char-extents" "capi/capi-gp-ref-13.htm#CAPI)compute-char-extents")
("report-error-to-java-host" "lw/lw-lw-ji-85.htm#LWUGRM)report-error-to-java-host")
("stacked-tree" "capi/capi-capi-ref-441.htm#CAPI)stacked-tree")
("wait-for-connection" "lw/lw-win32-misc-20.htm#LWUGRM)wait-for-connection")
("make-timer" "lw/lw-mp-71.htm#mp_marker-line-3171" "lw/lw-mp-71.htm#LWUGRM)make-timer")
("jvalue-store-jint" "lw/lw-lw-ji-73.htm#LWUGRM)jvalue-store-jint")
("top-level-interface-display-state" "capi/capi-capi-ref-488.htm#CAPI)top-level-interface-display-state")
("setTextView" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.setTextView")
("with-windows-event-log-event-source" "lw/lw-win32-misc-21.htm#LWUGRM)with-windows-event-log-event-source")
("dspec-defined-p" "lw/lw-dspec-11.htm#LWUGRM)dspec-defined-p")
("sqlite-raw-blob" "lw/lw-sql-121.htm#LWUGRM)sqlite-raw-blob")
("*current-process*" "lw/lw-mp-20.htm#LWUGRM)*current-process*")
("process-exclusive-lock" "lw/lw-mp-84.htm#LWUGRM)process-exclusive-lock")
("make-mailbox" "lw/lw-mp-68.htm#LWUGRM)make-mailbox")
("generate-bar-chart" "capi/capi-lw-gt-ref-8.htm#CAPI)generate-bar-chart")
("socket-io-error" "lw/lw-comm-93.htm#LWUGRM)socket-io-error")
("enable-sql-reader-syntax" "lw/lw-sql-31.htm#LWUGRM)enable-sql-reader-syntax")
("make-absolute-drawing*" "capi/capi-lw-gt-ref-6.htm#CAPI)make-absolute-drawing*")
("async-io-state-abort" "lw/lw-comm-11.htm#LWUGRM)async-io-state-abort")
("not" "kw/kw-ref-43.htm#KW)not%20backward%20chaining%20goal")
("int32>=" "lw/lw-sys-58.htm#LWUGRM)int32%3E=")
("*packages-for-warn-on-redefinition*" "lw/lw-hcl-112.htm#hcl_marker-line-6062" "lw/lw-hcl-112.htm#LWUGRM)*packages-for-warn-on-redefinition*")
("*trace-print-level*" "lw/lw-hcl-176.htm#LWUGRM)*trace-print-level*")
("import-java-class-definitions" "lw/lw-lw-ji-30.htm#LWUGRM)import-java-class-definitions")
("with-inverse-graphics" "capi/capi-gp-ref-166.htm#CAPI)with-inverse-graphics")
("funcall-async" "lw/lw-mp-32.htm#LWUGRM)funcall-async")
("inset-rectangle" "capi/capi-gp-ref-90.htm#CAPI)inset-rectangle")
("prompt-for-integer" "capi/capi-capi-ref-343.htm#CAPI)prompt-for-integer")
("stream-read-sequence" "lw/lw-streams-30.htm#streams_marker-line-967" "lw/lw-streams-30.htm#LWUGRM)stream-read-sequence")
("make-gesture-spec" "lw/lw-sys-86.htm#LWUGRM)make-gesture-spec")
("undefine-action-list" "lw/lw-lispworks-114.htm#LWUGRM)undefine-action-list")
("pipe-close-connection" "lw/lw-sys-105.htm#LWUGRM)pipe-close-connection")
("copy-code-coverage-data" "lw/lw-hcl-41.htm#LWUGRM)copy-code-coverage-data")
("get-printer-metrics" "capi/capi-capi-ref-157.htm#capi-ref_marker-line-9328" "capi/capi-capi-ref-157.htm#CAPI)get-printer-metrics")
("force-screen-update" "capi/capi-capi-ref-147.htm#CAPI)force-screen-update")
("make-ssl-ctx" "lw/lw-comm-70.htm#LWUGRM)make-ssl-ctx")
("color-to-premultiplied" "capi/capi-color-ref-11.htm#CAPI)color-to-premultiplied")
("default-name-constructor" "lw/lw-lw-ji-12.htm#LWUGRM)default-name-constructor")
("list-attributes" "lw/lw-sql-39.htm#LWUGRM)list-attributes")
("with-graphics-post-translation" "capi/capi-gp-ref-161.htm#CAPI)with-graphics-post-translation")
("set-ssl-ctx-dh" "lw/lw-comm-82.htm#LWUGRM)set-ssl-ctx-dh")
("copy-pointer" "fli/fli-functions-11.htm#FLI)copy-pointer")
("base-character" "lw/lw-lispworks-6.htm#LWUGRM)base-character" "lw/lw-lispworks-6.htm#lispworks_base-char-line-165")
("*right-paren-whitespace*" "lw/lw-sys-113.htm#LWUGRM)*right-paren-whitespace*" "lw/lw-sys-113.htm#sys_marker-line-5423")
("update-drawing-with-cached-display-from-points" "capi/capi-capi-ref-506.htm#CAPI)update-drawing-with-cached-display-from-points")
("allocate-foreign-block" "fli/fli-functions-3.htm#FLI)allocate-foreign-block")
("image-locator" "capi/capi-capi-ref-179.htm#CAPI)image-locator")
("vector-uchar32" "fli/fli-type-ref-42.htm#FLI)vector-uchar32")
("ole-control-frame" "capi/capi-capi-ref-271.htm#CAPI)ole-control-frame")
("active-pane-paste-p" "capi/capi-capi-ref-6.htm#CAPI)active-pane-paste-p")
("setGuiErrorReporter" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.setGuiErrorReporter")
("read-external-image" "capi/capi-gp-ref-124.htm#gp-ref_marker-line-4953" "capi/capi-gp-ref-124.htm#CAPI)read-external-image")
("lisp-array-to-primitive-array" "lw/lw-lw-ji-82.htm#LWUGRM)lisp-array-to-primitive-array")
("pane-interface-select-all-p" "capi/capi-capi-ref-297.htm#CAPI)pane-interface-select-all-p")
("jobject-class-name" "lw/lw-lw-ji-65.htm#LWUGRM)jobject-class-name")
("ora-lob-load-from-file" "lw/lw-sql-81.htm#LWUGRM)ora-lob-load-from-file")
("pane-interface-deselect-all-p" "capi/capi-capi-ref-297.htm#CAPI)pane-interface-deselect-all-p")
("jobject-to-lisp" "lw/lw-lw-ji-71.htm#LWUGRM)jobject-to-lisp")
("vector-long3" "fli/fli-type-ref-42.htm#FLI)vector-long3")
(":reference-return" "fli/fli-type-ref-31.htm#FLI):reference-return")
("checked-read-java-field" "lw/lw-lw-ji-83.htm#LWUGRM)checked-read-java-field")
("dde-server-topics" "lw/lw-win32-dde-server-4.htm#LWUGRM)dde-server-topics")
("simple-print-port" "capi/capi-capi-ref-435.htm#CAPI)simple-print-port")
("can-use-metafile-p" "capi/capi-capi-ref-25.htm#CAPI)can-use-metafile-p")
("copy-file" "lw/lw-lispworks-20.htm#LWUGRM)copy-file")
("setup-java-constructor" "lw/lw-lw-ji-90.htm#LWUGRM)setup-java-constructor")
("encode-db-standard-date" "lw/lw-sql-32.htm#LWUGRM)encode-db-standard-date")
("set-interface-pane-name-appearance" "capi/capi-capi-ref-413.htm#CAPI)set-interface-pane-name-appearance")
("split-sequence-if" "lw/lw-lispworks-104.htm#lispworks_marker-line-4514" "lw/lw-lispworks-104.htm#LWUGRM)split-sequence-if")
("registry-key-exists-p" "lw/lw-win32-registry-10.htm#LWUGRM)registry-key-exists-p")
("graphics-port-background" "capi/capi-gp-ref-76.htm#CAPI)graphics-port-background")
("extended-character" "lw/lw-lispworks-48.htm#LWUGRM)extended-character")
("call-java-non-virtual-method" "lw/lw-lw-ji-3.htm#LWUGRM)call-java-non-virtual-method")
("ensure-stores-after-memory" "lw/lw-sys-32.htm#LWUGRM)ensure-stores-after-memory")
("echo-area-pane" "capi/capi-capi-ref-112.htm#CAPI)echo-area-pane")
(":utf-32be" "lw/lw-external-format-11.htm#LWUGRM):utf-32be")
("int64-to-integer" "lw/lw-sys-79.htm#LWUGRM)int64-to-integer")
("vector-long1" "fli/fli-type-ref-42.htm#FLI)vector-long1")
("defrule" "kw/kw-ref-15.htm#KW)defrule")
("base-character-p" "lw/lw-lispworks-7.htm#LWUGRM)base-character-p")
("java-field-error" "lw/lw-lw-ji-40.htm#LWUGRM)java-field-error")
("recency" "kw/kw-ref-49.htm#KW)recency")
("jvalue-store-jlong" "lw/lw-lw-ji-73.htm#LWUGRM)jvalue-store-jlong")
("mono-screen" "capi/capi-capi-ref-257.htm#CAPI)mono-screen")
(":uint16" "fli/fli-type-ref-39.htm#FLI):uint16")
("non-focus-maybe-capture-gesture" "capi/capi-capi-ref-264.htm#CAPI)non-focus-maybe-capture-gesture")
("line-pinboard-object" "capi/capi-capi-ref-214.htm#CAPI)line-pinboard-object")
("traceable-dspec-p" "lw/lw-dspec-36.htm#LWUGRM)traceable-dspec-p")
("ring-ref" "lw/lw-hcl-135.htm#LWUGRM)ring-ref")
("setClassLoader" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.setClassLoader")
("int32<" "lw/lw-sys-58.htm#LWUGRM)int32%3C")
("set-clipboard" "capi/capi-capi-ref-400.htm#CAPI)set-clipboard")
("java-class-error" "lw/lw-lw-ji-40.htm#LWUGRM)java-class-error")
("non-focus-list-interface" "capi/capi-capi-ref-262.htm#CAPI)non-focus-list-interface")
("collect-generation-2" "lw/lw-hcl-37.htm#LWUGRM)collect-generation-2")
("make-java-instance" "lw/lw-lw-ji-79.htm#LWUGRM)make-java-instance")
("define-action-list" "lw/lw-lispworks-27.htm#LWUGRM)define-action-list")
("define-top-loop-command" "lw/lw-sys-25.htm#LWUGRM)define-top-loop-command" "lw/lw-sys-25.htm#sys_marker-line-1073")
("verify-lisp-proxy" "lw/lw-lw-ji-98.htm#LWUGRM)verify-lisp-proxy")
("unicode-char-not-equal" "lw/lw-lispworks-118.htm#LWUGRM)unicode-char-not-equal")
("make-general-image-set" "capi/capi-capi-ref-232.htm#CAPI)make-general-image-set")
("remote-object-connection" "lw/lw-dbg-31.htm#LWUGRM)remote-object-connection")
("release-certificates-vector" "lw/lw-comm-107.htm#LWUGRM)release-certificates-vector")
("ensure-hsv" "capi/capi-color-ref-19.htm#CAPI)ensure-hsv")
("toolbar-object" "capi/capi-capi-ref-484.htm#CAPI)toolbar-object")
("free-metafile" "capi/capi-capi-ref-151.htm#CAPI)free-metafile")
("slider" "capi/capi-capi-ref-436.htm#CAPI)slider")
("*external-formats*" "lw/lw-lispworks-51.htm#LWUGRM)*external-formats*")
("instantiation" "kw/kw-ref-28.htm#KW)instantiation%20backward%20chaining%20goal")
(":short" "fli/fli-type-ref-33.htm#FLI):short")
("untransform-point" "capi/capi-gp-ref-156.htm#CAPI)untransform-point")
("process-priority" "lw/lw-mp-99.htm#LWUGRM)process-priority")
("defparser" "lw/lw-parsergen-1.htm#LWUGRM)defparser")
("update-toolbar" "capi/capi-capi-ref-512.htm#CAPI)update-toolbar")
("make-draw-line" "capi/capi-lw-gt-ref-13.htm#CAPI)make-draw-line")
("int64>" "lw/lw-sys-70.htm#LWUGRM)int64%3E")
("string-append*" "lw/lw-lispworks-108.htm#LWUGRM)string-append*")
("external-image" "capi/capi-gp-ref-42.htm#CAPI)external-image")
("-mea" "kw/kw-ref-40.htm#KW)-mea")
("set-confirm-quit-flag" "capi/capi-capi-ref-402.htm#CAPI)set-confirm-quit-flag")
("popup-confirmer" "capi/capi-capi-ref-316.htm#CAPI)popup-confirmer" "capi/capi-capi-ref-316.htm#capi-ref_marker-line-20032")
("set-debugger-options" "lw/lw-dbg-32.htm#LWUGRM)set-debugger-options")
("clean-generation-0" "lw/lw-hcl-27.htm#LWUGRM)clean-generation-0")
(":uint8" "fli/fli-type-ref-39.htm#FLI):uint8")
("graphics-port-transform" "capi/capi-gp-ref-76.htm#CAPI)graphics-port-transform")
("semaphore-name" "lw/lw-mp-137.htm#LWUGRM)semaphore-name")
("image-freed-p" "capi/capi-gp-ref-86.htm#CAPI)image-freed-p")
("invalidate-pane-constraints" "capi/capi-capi-ref-204.htm#CAPI)invalidate-pane-constraints")
("title-pane" "capi/capi-capi-ref-480.htm#CAPI)title-pane")
("list-panel" "capi/capi-capi-ref-218.htm#capi-ref_marker-line-13243" "capi/capi-capi-ref-218.htm#capi-ref_marker-line-13227" "capi/capi-capi-ref-218.htm#capi-ref_marker-line-12984" "capi/capi-capi-ref-218.htm#capi-ref_marker-line-13252" "capi/capi-capi-ref-218.htm#CAPI)list-panel")
("java-normal-exception" "lw/lw-lw-ji-48.htm#LWUGRM)java-normal-exception")
("get-default-generation" "lw/lw-hcl-90.htm#LWUGRM)get-default-generation")
("LispErrorReporter" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.LispErrorReporter")
("dde-server-topic" "lw/lw-win32-dde-server-3.htm#LWUGRM)dde-server-topic")
("ssl-connection-protocol-version" "lw/lw-comm-109.htm#LWUGRM)ssl-connection-protocol-version")
("draw-string" "capi/capi-gp-ref-40.htm#CAPI)draw-string")
("code-coverage-file-stats-counters-executed" "lw/lw-hcl-33.htm#LWUGRM)code-coverage-file-stats-counters-executed")
("pane-can-restore-display-p" "capi/capi-capi-ref-291.htm#CAPI)pane-can-restore-display-p")
("process-sharing-unlock" "lw/lw-mp-108.htm#LWUGRM)process-sharing-unlock")
(":ptr" "fli/fli-type-ref-27.htm#FLI):ptr")
("defadvice" "lw/lw-lispworks-23.htm#LWUGRM)defadvice")
("pane-interface-cut-p" "capi/capi-capi-ref-297.htm#CAPI)pane-interface-cut-p")
("make-draw-polygon" "capi/capi-lw-gt-ref-13.htm#CAPI)make-draw-polygon")
("*editor-pane-composition-selected-range-face-plist*" "capi/capi-capi-ref-120.htm#CAPI)*editor-pane-composition-selected-range-face-plist*")
("count-gen-num-allocation" "lw/lw-sys-20.htm#LWUGRM)count-gen-num-allocation")
("semaphore-acquire" "lw/lw-mp-135.htm#LWUGRM)semaphore-acquire")
("generalized-time-string" "lw/lw-comm-55.htm#LWUGRM)generalized-time-string")
("drop-object-drop-effect" "capi/capi-capi-ref-107.htm#CAPI)drop-object-drop-effect")
("process-lock" "lw/lw-mp-93.htm#LWUGRM)process-lock")
("make-stderr-stream" "lw/lw-sys-91.htm#LWUGRM)make-stderr-stream" "lw/lw-sys-91.htm#sys_marker-line-4197")
("lptstr" "lw/lw-win32-misc-18.htm#LWUGRM)lptstr")
("copy-from-sqlite-raw-blob" "lw/lw-sql-122.htm#LWUGRM)copy-from-sqlite-raw-blob")
("jobject-p" "lw/lw-lw-ji-68.htm#LWUGRM)jobject-p")
("jvalue-store-jbyte" "lw/lw-lw-ji-73.htm#LWUGRM)jvalue-store-jbyte")
("set-verification-mode" "lw/lw-comm-86.htm#LWUGRM)set-verification-mode")
("query-registry-value" "lw/lw-win32-registry-9.htm#LWUGRM)query-registry-value")
("get-certificate-serial-number" "lw/lw-comm-56.htm#LWUGRM)get-certificate-serial-number")
("callVoidA" "lw/lw-java-classes-and-methods-1.htm#LWUGRM)com.lispworks.LispCalls.callVoidA")
("detach-sink" "capi/capi-capi-ref-76.htm#CAPI)detach-sink")
("throw-an-exception" "lw/lw-lw-ji-93.htm#LWUGRM)throw-an-exception")
("symbol-dynamically-bound-p" "lw/lw-hcl-166.htm#LWUGRM)symbol-dynamically-bound-p")
("jvalue-store-jboolean" "lw/lw-lw-ji-73.htm#LWUGRM)jvalue-store-jboolean")
("element-screen" "capi/capi-capi-ref-131.htm#CAPI)element-screen")
("prompt-for-symbol" "capi/capi-capi-ref-347.htm#CAPI)prompt-for-symbol")
("*binary-file-types*" "lw/lw-sys-12.htm#LWUGRM)*binary-file-types*")
("def-kb-struct" "kw/kw-ref-13.htm#KW)def-kb-struct")
("stop-gc-monitor" "capi/capi-capi-ref-455.htm#CAPI)stop-gc-monitor")
("active-pane-undo" "capi/capi-capi-ref-6.htm#CAPI)active-pane-undo")
("define-atomic-modify-macro" "lw/lw-sys-24.htm#LWUGRM)define-atomic-modify-macro")
("tree-view-ensure-visible" "capi/capi-capi-ref-495.htm#CAPI)tree-view-ensure-visible")
("interactive-pane-execute-command" "capi/capi-capi-ref-185.htm#CAPI)interactive-pane-execute-command")
("highlight-pinboard-object" "capi/capi-capi-ref-177.htm#CAPI)highlight-pinboard-object")
("ensure-process-cleanup" "lw/lw-mp-30.htm#LWUGRM)ensure-process-cleanup")
("*trace-print-pretty*" "lw/lw-hcl-177.htm#LWUGRM)*trace-print-pretty*")
("callVoidV" "lw/lw-java-classes-and-methods-1.htm#LWUGRM)com.lispworks.LispCalls.callVoidV")
("accepting-handle-collection" "lw/lw-comm-2.htm#LWUGRM)accepting-handle-collection")
("clear-external-image-conversions" "capi/capi-gp-ref-8.htm#CAPI)clear-external-image-conversions")
("active-pane-copy-p" "capi/capi-capi-ref-6.htm#CAPI)active-pane-copy-p")
("write-serial-port-string" "lw/lw-serial-port-11.htm#LWUGRM)write-serial-port-string")
("foreign-function-pointer" "fli/fli-functions-38.htm#FLI)foreign-function-pointer")
("drop-object-allows-drop-effect-p" "capi/capi-capi-ref-104.htm#CAPI)drop-object-allows-drop-effect-p" "capi/capi-capi-ref-104.htm#capi-ref_marker-line-6797")
("offset-rectangle" "capi/capi-gp-ref-109.htm#CAPI)offset-rectangle")
("int32-1+" "lw/lw-sys-61.htm#LWUGRM)int32-1+")
("find-interface" "capi/capi-capi-ref-145.htm#CAPI)find-interface")
("file-directory-p" "lw/lw-lispworks-53.htm#LWUGRM)file-directory-p")
("int64+" "lw/lw-sys-69.htm#LWUGRM)int64+")
("transform-area" "capi/capi-gp-ref-142.htm#CAPI)transform-area")
("call-editor" "capi/capi-capi-ref-24.htm#CAPI)call-editor")
("ora-lob-file-close-all" "lw/lw-sql-65.htm#LWUGRM)ora-lob-file-close-all")
("reverse-subtract-code-coverage-data" "lw/lw-hcl-1.htm#LWUGRM)reverse-subtract-code-coverage-data")
("rectangle-left" "capi/capi-gp-ref-128.htm#CAPI)rectangle-left")
("find-graph-edge" "capi/capi-capi-ref-143.htm#CAPI)find-graph-edge")
("prompt-for-number" "capi/capi-capi-ref-345.htm#CAPI)prompt-for-number")
("ordered-rectangle-union" "capi/capi-gp-ref-110.htm#CAPI)ordered-rectangle-union")
("set-promotion-count" "lw/lw-hcl-153.htm#LWUGRM)set-promotion-count")
("set-quit-when-no-windows" "lw/lw-lispworks-100.htm#LWUGRM)set-quit-when-no-windows" "lw/lw-lispworks-100.htm#lispworks_:quit-when-no-windows-line-4371")
("malloc" "fli/fli-functions-4.htm#FLI)malloc")
("MessageHandler" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.MessageHandler")
("process-stopped-p" "lw/lw-mp-110.htm#LWUGRM)process-stopped-p")
("destroy-pixmap-port" "capi/capi-gp-ref-23.htm#CAPI)destroy-pixmap-port")
("sql" "lw/lw-sql-109.htm#LWUGRM)sql")
("compare-and-swap" "lw/lw-sys-18.htm#LWUGRM)compare-and-swap")
(":wrapper" "fli/fli-type-ref-46.htm#FLI):wrapper")
(":bmp-reversed" "lw/lw-external-format-1.htm#LWUGRM):bmp-reversed")
("with-graphics-transform-reset" "capi/capi-gp-ref-165.htm#CAPI)with-graphics-transform-reset")
("get-primitive-array-region" "lw/lw-lw-ji-27.htm#LWUGRM)get-primitive-array-region")
("int32-logand" "lw/lw-sys-64.htm#LWUGRM)int32-logand")
("ide-set-remote-symbol-value" "lw/lw-dbg-13.htm#LWUGRM)ide-set-remote-symbol-value")
("p-oci-lob-locator" "lw/lw-sql-95.htm#LWUGRM)p-oci-lob-locator")
("current-function-name" "lw/lw-hcl-46.htm#LWUGRM)current-function-name")
("editor-pane-blink-rate" "capi/capi-capi-ref-118.htm#CAPI)editor-pane-blink-rate")
("transform-rect" "capi/capi-gp-ref-148.htm#CAPI)transform-rect")
("trace-on-access" "lw/lw-clos-18.htm#LWUGRM)trace-on-access")
("file-string" "lw/lw-hcl-77.htm#LWUGRM)file-string")
("callObjectA" "lw/lw-java-classes-and-methods-1.htm#LWUGRM)com.lispworks.LispCalls.callObjectA")
("sql-temporary-error" "lw/lw-sql-129.htm#LWUGRM)sql-temporary-error")
("prompt-for-form" "capi/capi-capi-ref-341.htm#CAPI)prompt-for-form")
("loadLibrary" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.loadLibrary")
("validate-rectangle" "capi/capi-gp-ref-158.htm#CAPI)validate-rectangle")
("draw-metafile" "capi/capi-capi-ref-98.htm#CAPI)draw-metafile")
("load-logical-pathname-translations" "lw/lw-common-lisp-22.htm#LWUGRM)load-logical-pathname-translations")
("*maximum-moving-objects-to-track-edges*" "capi/capi-capi-ref-246.htm#CAPI)*maximum-moving-objects-to-track-edges*")
("simple-do-query" "lw/lw-sql-108.htm#LWUGRM)simple-do-query")
("scroll" "capi/capi-capi-ref-392.htm#capi-ref_set-scroll-position-line-24524" "capi/capi-capi-ref-392.htm#CAPI)scroll")
("enum-values" "fli/fli-functions-30.htm#FLI)enum-values")
("create-ide-remote-debugging-connection" "lw/lw-dbg-3.htm#LWUGRM)create-ide-remote-debugging-connection")
("ssl-pointer" "lw/lw-comm-122.htm#LWUGRM)ssl-pointer")
("sqlite-reopen-blob" "lw/lw-sql-120.htm#LWUGRM)sqlite-reopen-blob")
("gesture-spec-p" "lw/lw-sys-46.htm#LWUGRM)gesture-spec-p")
("jaref" "lw/lw-lw-ji-33.htm#LWUGRM)jaref")
("set-graphics-state" "capi/capi-gp-ref-140.htm#CAPI)set-graphics-state")
("editor-pane" "capi/capi-capi-ref-117.htm#capi-ref_:use-native-input-method-line-7444" "capi/capi-capi-ref-117.htm#capi-ref_marker-line-7455" "capi/capi-capi-ref-117.htm#capi-ref_marker-line-7417" "capi/capi-capi-ref-117.htm#CAPI)editor-pane")
("abort-callback" "capi/capi-capi-ref-1.htm#CAPI)abort-callback")
(":int32" "fli/fli-type-ref-17.htm#FLI):int32")
("base-char-code-limit" "lw/lw-lispworks-8.htm#LWUGRM)base-char-code-limit")
("code-coverage-file-stats-counters-hidden" "lw/lw-hcl-33.htm#LWUGRM)code-coverage-file-stats-counters-hidden")
("lisp-image-name" "lw/lw-lispworks-69.htm#LWUGRM)lisp-image-name" "lw/lw-lispworks-69.htm#lispworks_marker-line-3138" "lw/lw-lispworks-69.htm#lispworks_marker-line-3139")
("move-line" "capi/capi-capi-ref-258.htm#CAPI)move-line")
("binds-who" "lw/lw-hcl-18.htm#hcl_marker-line-953" "lw/lw-hcl-18.htm#LWUGRM)binds-who")
("make-lisp-proxy-with-overrides" "lw/lw-lw-ji-80.htm#LWUGRM)make-lisp-proxy-with-overrides")
("untrace-new-instances-on-access" "lw/lw-clos-21.htm#LWUGRM)untrace-new-instances-on-access")
("remote-inspect" "lw/lw-dbg-30.htm#LWUGRM)remote-inspect")
("define-c-struct" "fli/fli-functions-14.htm#FLI)define-c-struct")
("remove-from-process-private-property" "lw/lw-mp-126.htm#LWUGRM)remove-from-process-private-property")
("simple-int32-vector-length" "lw/lw-sys-140.htm#LWUGRM)simple-int32-vector-length")
("wait-for-wait-state-collection" "lw/lw-comm-129.htm#LWUGRM)wait-for-wait-state-collection")
("pane-initial-focus" "capi/capi-capi-ref-296.htm#CAPI)pane-initial-focus")
("ole-control-pane-simple-sink" "capi/capi-capi-ref-277.htm#CAPI)ole-control-pane-simple-sink")
("with-transaction" "lw/lw-sql-148.htm#LWUGRM)with-transaction")
("*handle-old-in-package-used-as-make-package*" "lw/lw-hcl-97.htm#LWUGRM)*handle-old-in-package-used-as-make-package*")
("code-coverage-file-stats-called" "lw/lw-hcl-33.htm#LWUGRM)code-coverage-file-stats-called")
("non-focus-list-add-filter" "capi/capi-capi-ref-261.htm#CAPI)non-focus-list-add-filter")
("int32-logior" "lw/lw-sys-64.htm#LWUGRM)int32-logior")
("union-rectangle" "capi/capi-gp-ref-150.htm#CAPI)union-rectangle")
("record-message-in-windows-event-log" "lw/lw-win32-misc-12.htm#win32-misc_marker-line-568" "lw/lw-win32-misc-12.htm#LWUGRM)record-message-in-windows-event-log")
("stream-write-string" "lw/lw-streams-38.htm#LWUGRM)stream-write-string")
("filter-code-coverage-data" "lw/lw-hcl-79.htm#LWUGRM)filter-code-coverage-data")
("image-access-pixels-to-bgra" "capi/capi-gp-ref-83.htm#CAPI)image-access-pixels-to-bgra")
("browser-pane-busy" "capi/capi-capi-ref-17.htm#CAPI)browser-pane-busy")
("stream-force-output" "lw/lw-streams-19.htm#LWUGRM)stream-force-output")
("ora-lob-open" "lw/lw-sql-84.htm#LWUGRM)ora-lob-open")
("find-database" "lw/lw-sql-34.htm#LWUGRM)find-database")
("external-image-color-table" "capi/capi-gp-ref-43.htm#CAPI)external-image-color-table")
("com.lispworks.Manager.setLispTempDir" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.setLispTempDir")
("string-trim-whitespace" "lw/lw-hcl-162.htm#LWUGRM)string-trim-whitespace")
("directory" "lw/lw-common-lisp-14.htm#LWUGRM)directory")
("defglobal-variable" "lw/lw-hcl-56.htm#hcl_cl:defvar-line-2938" "lw/lw-hcl-56.htm#LWUGRM)defglobal-variable")
("graph-object" "capi/capi-capi-ref-162.htm#CAPI)graph-object")
("browser-pane-property-get" "capi/capi-capi-ref-18.htm#CAPI)browser-pane-property-get")
("convert-to-foreign-string" "fli/fli-functions-10.htm#FLI)convert-to-foreign-string")
("prompt-for-files" "capi/capi-capi-ref-339.htm#CAPI)prompt-for-files")
("close-wait-state-collection" "lw/lw-comm-39.htm#LWUGRM)close-wait-state-collection")
("define-foreign-forward-reference-type" "fli/fli-functions-21.htm#FLI)define-foreign-forward-reference-type")
("push-end-new" "lw/lw-lispworks-88.htm#LWUGRM)push-end-new")
("set-locale-encodings" "fli/fli-functions-73.htm#FLI)set-locale-encodings")
("do-query" "lw/lw-sql-26.htm#LWUGRM)do-query")
("ora-lob-free" "lw/lw-sql-72.htm#LWUGRM)ora-lob-free")
("coerce" "lw/lw-common-lisp-5.htm#LWUGRM)coerce")
("fasl-error" "lw/lw-hcl-73.htm#LWUGRM)fasl-error")
("list-all-font-names" "capi/capi-gp-ref-95.htm#CAPI)list-all-font-names")
("int32-logbitp" "lw/lw-sys-64.htm#LWUGRM)int32-logbitp")
("browser-pane-navigate" "capi/capi-capi-ref-17.htm#CAPI)browser-pane-navigate")
("selection" "capi/capi-capi-ref-396.htm#CAPI)selection")
("immediatep" "lw/lw-sys-54.htm#LWUGRM)immediatep")
("*default-database*" "lw/lw-sql-16.htm#LWUGRM)*default-database*")
("run-shell-command" "lw/lw-sys-115.htm#sys_marker-line-5510" "lw/lw-sys-115.htm#sys_marker-line-5498" "lw/lw-sys-115.htm#sys_marker-line-5481" "lw/lw-sys-115.htm#LWUGRM)run-shell-command")
("stacked-tree-zoom-by-factor" "capi/capi-capi-ref-447.htm#CAPI)stacked-tree-zoom-by-factor")
("dspec-progenitor" "lw/lw-dspec-16.htm#LWUGRM)dspec-progenitor")
("lock-recursively-locked-p" "lw/lw-mp-49.htm#LWUGRM)lock-recursively-locked-p")
("non-focus-list-toggle-enable-filter" "capi/capi-capi-ref-263.htm#CAPI)non-focus-list-toggle-enable-filter")
("foreign-block-copy" "fli/fli-functions-36.htm#FLI)foreign-block-copy")
("simple-bmp-string-p" "lw/lw-lispworks-14.htm#LWUGRM)simple-bmp-string-p")
("item-pinboard-object" "capi/capi-capi-ref-210.htm#CAPI)item-pinboard-object")
("count-collection-items" "capi/capi-capi-ref-57.htm#CAPI)count-collection-items")
("jobject-call-method" "lw/lw-lw-ji-63.htm#LWUGRM)jobject-call-method")
("draw-points" "capi/capi-gp-ref-35.htm#CAPI)draw-points")
("slot-boundp-using-class" "lw/lw-clos-14.htm#LWUGRM)slot-boundp-using-class")
("split-sequence" "lw/lw-lispworks-103.htm#lispworks_marker-line-4460" "lw/lw-lispworks-103.htm#LWUGRM)split-sequence")
(":struct" "fli/fli-type-ref-37.htm#FLI):struct")
("current-printer" "capi/capi-capi-ref-63.htm#CAPI)current-printer")
("mailbox-count" "lw/lw-mp-52.htm#LWUGRM)mailbox-count")
("java-serious-exception" "lw/lw-lw-ji-57.htm#LWUGRM)java-serious-exception")
("detect-unicode-bom" "lw/lw-sys-28.htm#LWUGRM)detect-unicode-bom")
("rich-text-version" "capi/capi-capi-ref-381.htm#CAPI)rich-text-version")
("open-serial-port" "lw/lw-serial-port-3.htm#LWUGRM)open-serial-port")
("jvalue-store-jshort" "lw/lw-lw-ji-73.htm#LWUGRM)jvalue-store-jshort")
("process-interrupt-list" "lw/lw-mp-90.htm#LWUGRM)process-interrupt-list")
("message-pane" "capi/capi-capi-ref-252.htm#CAPI)message-pane")
("code-coverage-data" "lw/lw-hcl-29.htm#LWUGRM)code-coverage-data")
("current-process-in-cleanup-p" "lw/lw-mp-22.htm#LWUGRM)current-process-in-cleanup-p")
("*print-invisible-frames*" "lw/lw-dbg-22.htm#LWUGRM)*print-invisible-frames*" "lw/lw-dbg-22.htm#dbg_marker-line-1480")
("set-array-single-thread-p" "lw/lw-hcl-144.htm#LWUGRM)set-array-single-thread-p")
("sql-operation" "lw/lw-sql-125.htm#sql_marker-line-5849" "lw/lw-sql-125.htm#sql_marker-line-5861" "lw/lw-sql-125.htm#LWUGRM)sql-operation")
("dde-advise-stop" "lw/lw-win32-dde-client-3.htm#LWUGRM)dde-advise-stop")
("pane-drag-operation-update" "capi/capi-capi-ref-450.htm#CAPI)pane-drag-operation-update")
("list-panel-unfiltered-items" "capi/capi-capi-ref-223.htm#CAPI)list-panel-unfiltered-items")
("android-main-thread-p" "lw/lw-hcl-11.htm#LWUGRM)android-main-thread-p")
("name-only-form-parser" "lw/lw-dspec-26.htm#LWUGRM)name-only-form-parser")
("avoid-gc" "lw/lw-hcl-16.htm#LWUGRM)avoid-gc")
("sqlite-blob-length" "lw/lw-sql-120.htm#LWUGRM)sqlite-blob-length")
("make-simple-int64-vector" "lw/lw-sys-90.htm#LWUGRM)make-simple-int64-vector")
("text-string" "lw/lw-lispworks-110.htm#LWUGRM)text-string")
("object-pointer" "lw/lw-sys-100.htm#LWUGRM)object-pointer")
("int32-lognand" "lw/lw-sys-64.htm#LWUGRM)int32-lognand")
("clipboard-empty" "capi/capi-capi-ref-36.htm#CAPI)clipboard-empty")
("make-draw-arc" "capi/capi-lw-gt-ref-13.htm#CAPI)make-draw-arc")
("make-a-drawing-call" "capi/capi-lw-gt-ref-13.htm#CAPI)make-a-drawing-call")
("lex" "kw/kw-ref-34.htm#KW)lex")
("*print-catch-frames*" "lw/lw-dbg-20.htm#LWUGRM)*print-catch-frames*" "lw/lw-dbg-20.htm#dbg_marker-line-1306")
("setup-java-caller" "lw/lw-lw-ji-90.htm#lw-ji_marker-line-4752" "lw/lw-lw-ji-90.htm#lw-ji_marker-line-4753" "lw/lw-lw-ji-90.htm#LWUGRM)setup-java-caller")
("non-focus-update" "capi/capi-capi-ref-266.htm#CAPI)non-focus-update")
("range-set-sizes" "capi/capi-capi-ref-359.htm#CAPI)range-set-sizes")
("radio-button-panel" "capi/capi-capi-ref-356.htm#CAPI)radio-button-panel")
("invoke-command" "capi/capi-capi-ref-205.htm#CAPI)invoke-command")
("decode-to-db-standard-date" "lw/lw-sql-15.htm#LWUGRM)decode-to-db-standard-date")
("wrap-text-for-pane" "capi/capi-capi-ref-527.htm#CAPI)wrap-text-for-pane")
("draw-rectangle" "capi/capi-gp-ref-38.htm#CAPI)draw-rectangle")
("named-pipe-stream-name" "lw/lw-win32-misc-10.htm#LWUGRM)named-pipe-stream-name")
("gen-num-segments-fragmentation-state" "lw/lw-sys-43.htm#LWUGRM)gen-num-segments-fragmentation-state")
("java-not-a-java-object-error" "lw/lw-lw-ji-49.htm#LWUGRM)java-not-a-java-object-error")
("load-sound" "capi/capi-capi-ref-226.htm#capi-ref_marker-line-14159" "capi/capi-capi-ref-226.htm#CAPI)load-sound")
("active-pane-deselect-all-p" "capi/capi-capi-ref-6.htm#CAPI)active-pane-deselect-all-p")
("graphics-port-font" "capi/capi-gp-ref-76.htm#CAPI)graphics-port-font")
("dll-quit" "lw/lw-lispworks-36.htm#LWUGRM)dll-quit")
("*preprocessor-include-path*" "fli/fli-parser-5-3.htm#FLI)*preprocessor-include-path*")
("priority" "kw/kw-ref-47.htm#KW)priority")
("locally-enable-sql-reader-syntax" "lw/lw-sql-46.htm#LWUGRM)locally-enable-sql-reader-syntax")
("print-foreign-modules" "fli/fli-functions-68.htm#FLI)print-foreign-modules")
("get-certificate-data" "lw/lw-comm-56.htm#LWUGRM)get-certificate-data")
("generate-code-coverage" "lw/lw-hcl-88.htm#LWUGRM)generate-code-coverage")
("process-foreign-file" "fli/fli-parser-5-5.htm#FLI)process-foreign-file" "fli/fli-parser-5-5.htm#parser_marker-line-492")
("destructive-reverse-subtract-code-coverage-data" "lw/lw-hcl-1.htm#LWUGRM)destructive-reverse-subtract-code-coverage-data")
("define-foreign-variable" "fli/fli-functions-26.htm#FLI)define-foreign-variable")
("find-encoding-option" "lw/lw-sys-39.htm#sys_marker-line-1652" "lw/lw-sys-39.htm#LWUGRM)find-encoding-option")
("int64=" "lw/lw-sys-70.htm#LWUGRM)int64=")
("pane-screen-internal-geometry" "capi/capi-capi-ref-301.htm#CAPI)pane-screen-internal-geometry")
("editor-color-code-coverage" "lw/lw-hcl-65.htm#LWUGRM)editor-color-code-coverage")
("accepts-n-syntax" "lw/lw-sql-1.htm#LWUGRM)accepts-n-syntax")
("break-new-instances-on-access" "lw/lw-clos-1.htm#LWUGRM)break-new-instances-on-access")
("make-scaled-image-set" "capi/capi-capi-ref-239.htm#CAPI)make-scaled-image-set")
("check-button-panel" "capi/capi-capi-ref-29.htm#CAPI)check-button-panel")
("java-not-an-array-error" "lw/lw-lw-ji-50.htm#LWUGRM)java-not-an-array-error")
("get-page-area" "capi/capi-capi-ref-156.htm#CAPI)get-page-area")
("ensure-interface-screen" "capi/capi-capi-ref-134.htm#CAPI)ensure-interface-screen")
("ring-length" "lw/lw-hcl-130.htm#LWUGRM)ring-length")
("dde-server-request" "lw/lw-win32-dde-server-2.htm#LWUGRM)dde-server-request")
("image-access-transfer-from-image" "capi/capi-gp-ref-84.htm#CAPI)image-access-transfer-from-image")
("unhighlight-pinboard-object" "capi/capi-capi-ref-502.htm#CAPI)unhighlight-pinboard-object")
("set-signal-handler" "lw/lw-sys-132.htm#LWUGRM)set-signal-handler")
("password-pane" "capi/capi-capi-ref-305.htm#CAPI)password-pane")
("copy-to-weak-simple-vector" "lw/lw-hcl-42.htm#LWUGRM)copy-to-weak-simple-vector")
("pinboard-pane-position" "capi/capi-capi-ref-313.htm#CAPI)pinboard-pane-position")
("stream-read-byte" "lw/lw-streams-26.htm#LWUGRM)stream-read-byte")
("jbyte" "lw/lw-lw-ji-60.htm#LWUGRM)jbyte")
("unicode-char-not-lessp" "lw/lw-lispworks-120.htm#LWUGRM)unicode-char-not-lessp")
("with-sharing-lock" "lw/lw-mp-153.htm#LWUGRM)with-sharing-lock")
("set-generation-2-gc-options" "lw/lw-sys-124.htm#LWUGRM)set-generation-2-gc-options")
("com.lispworks.LispCalls.callObjectV" "lw/lw-java-classes-and-methods-1.htm#LWUGRM)com.lispworks.LispCalls.callObjectV")
("start-collecting-template-info" "fli/fli-functions-76.htm#FLI)start-collecting-template-info")
("format-to-java-host" "lw/lw-lw-ji-22.htm#LWUGRM)format-to-java-host")
("set-prepared-statement-variables" "lw/lw-sql-107.htm#LWUGRM)set-prepared-statement-variables")
("jvalue-store-jchar" "lw/lw-lw-ji-73.htm#LWUGRM)jvalue-store-jchar")
("*default-package-use-list*" "lw/lw-hcl-50.htm#LWUGRM)*default-package-use-list*")
("image-access-transfer-to-image" "capi/capi-gp-ref-85.htm#CAPI)image-access-transfer-to-image")
("output-pane-cache-display" "capi/capi-capi-ref-282.htm#CAPI)output-pane-cache-display")
("get-constraints" "capi/capi-capi-ref-154.htm#CAPI)get-constraints")
("start-tty-listener" "lw/lw-lispworks-105.htm#lispworks_marker-line-4573" "lw/lw-lispworks-105.htm#LWUGRM)start-tty-listener")
("vector-float3" "fli/fli-type-ref-42.htm#FLI)vector-float3")
("font-single-width-p" "capi/capi-gp-ref-56.htm#CAPI)font-single-width-p")
("vector-float2" "fli/fli-type-ref-42.htm#FLI)vector-float2")
("create-pixmap-port" "capi/capi-gp-ref-20.htm#CAPI)create-pixmap-port")
("set-geometric-hint" "capi/capi-capi-ref-409.htm#CAPI)set-geometric-hint")
("compute-drawing-object-from-data" "capi/capi-lw-gt-ref-4.htm#CAPI)compute-drawing-object-from-data")
("vector-float4" "fli/fli-type-ref-42.htm#FLI)vector-float4")
("page-setup-dialog" "capi/capi-capi-ref-288.htm#CAPI)page-setup-dialog")
("fdf-handle-directory-string" "lw/lw-hcl-74.htm#LWUGRM)fdf-handle-directory-string")
("option-pane" "capi/capi-capi-ref-279.htm#CAPI)option-pane")
(":unsigned" "fli/fli-type-ref-41.htm#FLI):unsigned")
("vector-float8" "fli/fli-type-ref-42.htm#FLI)vector-float8")
("rich-text-pane-paragraph-format" "capi/capi-capi-ref-380.htm#CAPI)rich-text-pane-paragraph-format")
("impersonating-named-pipe-client" "lw/lw-win32-misc-4.htm#LWUGRM)impersonating-named-pipe-client")
("destructive-subtract-code-coverage-data" "lw/lw-hcl-1.htm#LWUGRM)destructive-subtract-code-coverage-data")
("dde-system-topic" "lw/lw-win32-dde-server-5.htm#LWUGRM)dde-system-topic")
("pathname-location" "lw/lw-lispworks-79.htm#LWUGRM)pathname-location")
("delivered-image-p" "lw/lw-hcl-59.htm#LWUGRM)delivered-image-p")
("*default-database-type*" "lw/lw-sql-17.htm#LWUGRM)*default-database-type*")
("prompt-for-value" "capi/capi-capi-ref-348.htm#CAPI)prompt-for-value")
("make-basic-graph-spec" "capi/capi-lw-gt-ref-14.htm#CAPI)make-basic-graph-spec")
("simple-text-string-p" "lw/lw-lispworks-111.htm#LWUGRM)simple-text-string-p")
(":lisp-array" "fli/fli-type-ref-19.htm#FLI):lisp-array")
("step" "lw/lw-common-lisp-50.htm#common-lisp_*step-print-env*-line-3349" "lw/lw-common-lisp-50.htm#common-lisp_*step-filter*-line-3344" "lw/lw-common-lisp-50.htm#common-lisp_*step-compiled*-line-3324" "lw/lw-common-lisp-50.htm#LWUGRM)step")
("record-dependent-object" "capi/capi-capi-ref-361.htm#CAPI)record-dependent-object")
("*locale-external-formats*" "fli/fli-functions-54.htm#FLI)*locale-external-formats*")
("if-let" "lw/lw-lispworks-127.htm#LWUGRM)if-let")
("connect-to-named-pipe" "lw/lw-win32-misc-2.htm#LWUGRM)connect-to-named-pipe")
("create-dummy-graphics-port" "capi/capi-capi-ref-58.htm#CAPI)create-dummy-graphics-port")
("copy-external-image" "capi/capi-gp-ref-17.htm#CAPI)copy-external-image")
("open-temp-file" "lw/lw-hcl-44.htm#LWUGRM)open-temp-file")
("rectangle-union" "capi/capi-gp-ref-131.htm#CAPI)rectangle-union")
("interface-preserving-state-p" "capi/capi-capi-ref-199.htm#CAPI)interface-preserving-state-p")
("rect-bind" "capi/capi-gp-ref-133.htm#CAPI)rect-bind")
("ora-lob-file-is-open" "lw/lw-sql-68.htm#LWUGRM)ora-lob-file-is-open")
("compute-class-potential-initargs" "lw/lw-clos-4.htm#LWUGRM)compute-class-potential-initargs")
("port-owner" "capi/capi-gp-ref-117.htm#CAPI)port-owner")
("calls-who" "lw/lw-hcl-22.htm#hcl_marker-line-1131" "lw/lw-hcl-22.htm#LWUGRM)calls-who")
("make-named-timer" "lw/lw-mp-69.htm#LWUGRM)make-named-timer")
("make-gray" "capi/capi-color-ref-24.htm#CAPI)make-gray")
("*main-process*" "lw/lw-mp-64.htm#LWUGRM)*main-process*")
("update-slot-from-record" "lw/lw-sql-144.htm#LWUGRM)update-slot-from-record")
("stream-finish-output" "lw/lw-streams-17.htm#LWUGRM)stream-finish-output")
("jboolean" "lw/lw-lw-ji-60.htm#LWUGRM)jboolean")
("int64-1+" "lw/lw-sys-73.htm#LWUGRM)int64-1+")
("mailbox-wait-for-event" "lw/lw-mp-63.htm#LWUGRM)mailbox-wait-for-event")
("collection-find-string" "capi/capi-capi-ref-44.htm#CAPI)collection-find-string")
("vector-ushort16" "fli/fli-type-ref-42.htm#FLI)vector-ushort16")
("sec-certificate-ref" "lw/lw-comm-80.htm#LWUGRM)sec-certificate-ref")
("ole-control-add-verbs" "capi/capi-capi-ref-267.htm#CAPI)ole-control-add-verbs")
("make-sub-image" "capi/capi-gp-ref-106.htm#CAPI)make-sub-image")
("save-universal-from-script" "lw/lw-hcl-143.htm#hcl_marker-line-7793" "lw/lw-hcl-143.htm#hcl_marker-line-7792" "lw/lw-hcl-143.htm#LWUGRM)save-universal-from-script")
("remote-debugging-connection-peer-address" "lw/lw-dbg-28.htm#LWUGRM)remote-debugging-connection-peer-address")
("pane-interface-undo-p" "capi/capi-capi-ref-297.htm#CAPI)pane-interface-undo-p")
("apply-scale" "capi/capi-gp-ref-5.htm#CAPI)apply-scale")
("*latin-1-code-pages*" "lw/lw-win32-misc-7.htm#LWUGRM)*latin-1-code-pages*")
("create-instance-jobject" "lw/lw-lw-ji-8.htm#LWUGRM)create-instance-jobject")
("int64*" "lw/lw-sys-69.htm#LWUGRM)int64*")
("find-dspec-locations" "lw/lw-dspec-19.htm#LWUGRM)find-dspec-locations")
("remote-debugging-connection-name" "lw/lw-dbg-27.htm#LWUGRM)remote-debugging-connection-name")
("current-dialog-handle" "capi/capi-capi-ref-59.htm#capi-ref_marker-line-4137" "capi/capi-capi-ref-59.htm#CAPI)current-dialog-handle")
("mailbox-read" "lw/lw-mp-57.htm#LWUGRM)mailbox-read")
("*print-verbose*" "kw/kw-ref-46.htm#KW)*print-verbose*")
("close-registry-key" "lw/lw-win32-registry-1.htm#LWUGRM)close-registry-key")
("safe-format-to-limited-string" "lw/lw-hcl-137.htm#LWUGRM)safe-format-to-limited-string")
("SimpleInitLispWorks" "lw/lw-c-functions-5.htm#LWUGRM)SimpleInitLispWorks")
("read-and-convert-external-image" "capi/capi-gp-ref-123.htm#CAPI)read-and-convert-external-image")
(":utf-16-reversed" "lw/lw-external-format-10.htm#LWUGRM):utf-16-reversed")
("try-move-in-generation" "lw/lw-hcl-180.htm#LWUGRM)try-move-in-generation")
("set-approaching-memory-limit-callback" "lw/lw-sys-117.htm#LWUGRM)set-approaching-memory-limit-callback")
("process-run-reasons" "lw/lw-mp-104.htm#LWUGRM)process-run-reasons")
("process-whostate" "lw/lw-mp-122.htm#LWUGRM)process-whostate")
("list-all-processes" "lw/lw-mp-40.htm#LWUGRM)list-all-processes")
("remove-advice" "lw/lw-lispworks-92.htm#LWUGRM)remove-advice")
("allocate-dynamic-foreign-object" "fli/fli-functions-2.htm#FLI)allocate-dynamic-foreign-object")
("sqlite-close-blob" "lw/lw-sql-120.htm#LWUGRM)sqlite-close-blob")
("read-java-field" "lw/lw-lw-ji-83.htm#LWUGRM)read-java-field")
("reset-code-coverage-snapshot" "lw/lw-hcl-89.htm#LWUGRM)reset-code-coverage-snapshot")
("*default-editor-pane-line-wrap-marker*" "capi/capi-capi-ref-64.htm#CAPI)*default-editor-pane-line-wrap-marker*")
("get-font-ascent" "capi/capi-gp-ref-67.htm#CAPI)get-font-ascent")
("unicode-alphanumericp" "lw/lw-lispworks-116.htm#LWUGRM)unicode-alphanumericp")
("with-dde-conversation" "lw/lw-win32-dde-client-21.htm#LWUGRM)with-dde-conversation")
("make-transform" "capi/capi-gp-ref-107.htm#CAPI)make-transform")
("switch-open-tcp-stream-with-ssl-to-java" "lw/lw-comm-128.htm#LWUGRM)switch-open-tcp-stream-with-ssl-to-java")
("foreign-array-pointer" "fli/fli-functions-35.htm#FLI)foreign-array-pointer")
("replacement-source-form" "lw/lw-dspec-32.htm#LWUGRM)replacement-source-form")
("current-cycle" "kw/kw-ref-8.htm#KW)current-cycle")
("generate-graph-from-pairs" "capi/capi-lw-gt-ref-9.htm#CAPI)generate-graph-from-pairs")
("mailbox-not-empty-p" "lw/lw-mp-55.htm#LWUGRM)mailbox-not-empty-p")
("-lex" "kw/kw-ref-35.htm#KW)-lex")
("make-image-locator" "capi/capi-capi-ref-234.htm#CAPI)make-image-locator")
("simple-layout" "capi/capi-capi-ref-427.htm#CAPI)simple-layout")
("ensure-area-visible" "capi/capi-capi-ref-133.htm#CAPI)ensure-area-visible")
("stream-line-column" "lw/lw-streams-21.htm#LWUGRM)stream-line-column")
("dotted-list-length" "lw/lw-lispworks-38.htm#LWUGRM)dotted-list-length")
("code-coverage-data-generate-statistics" "lw/lw-hcl-31.htm#LWUGRM)code-coverage-data-generate-statistics")
("make-draw-rectangle" "capi/capi-lw-gt-ref-13.htm#CAPI)make-draw-rectangle")
("get-host-java-virtual-machine" "lw/lw-lw-ji-24.htm#LWUGRM)get-host-java-virtual-machine")
("ipv6-address" "lw/lw-comm-65.htm#LWUGRM)ipv6-address")
("catching-exceptions-bind" "lw/lw-lw-ji-5.htm#LWUGRM)catching-exceptions-bind")
("create-registry-key" "lw/lw-win32-registry-4.htm#LWUGRM)create-registry-key")
("java-array-simple-error" "lw/lw-lw-ji-38.htm#LWUGRM)java-array-simple-error")
("make-draw-string" "capi/capi-lw-gt-ref-15.htm#CAPI)make-draw-string")
("arrow-pinboard-object" "capi/capi-capi-ref-10.htm#CAPI)arrow-pinboard-object")
(":reference-pass" "fli/fli-type-ref-30.htm#FLI):reference-pass")
("get-service-entry" "lw/lw-comm-60.htm#LWUGRM)get-service-entry")
("merge-code-coverage-data" "lw/lw-hcl-107.htm#LWUGRM)merge-code-coverage-data")
("interface-extend-title" "capi/capi-capi-ref-192.htm#CAPI)interface-extend-title")
("*editor-cursor-inactive-style*" "capi/capi-capi-ref-116.htm#CAPI)*editor-cursor-inactive-style*")
("get-font-average-width" "capi/capi-gp-ref-68.htm#CAPI)get-font-average-width")
("externalize-image" "capi/capi-gp-ref-45.htm#CAPI)externalize-image")
("-order" "kw/kw-ref-45.htm#KW)-order")
("foreign-array-dimensions" "fli/fli-functions-33.htm#FLI)foreign-array-dimensions")
("set-minimum-free-space" "lw/lw-hcl-150.htm#LWUGRM)set-minimum-free-space")
("order" "kw/kw-ref-44.htm#KW)order")
("base-char-p" "lw/lw-lispworks-9.htm#LWUGRM)base-char-p")
("graph-edge" "capi/capi-capi-ref-159.htm#CAPI)graph-edge")
("stop-sql-recording" "lw/lw-sql-135.htm#LWUGRM)stop-sql-recording")
("wrap-text" "capi/capi-capi-ref-526.htm#CAPI)wrap-text")
(":reference" "fli/fli-type-ref-29.htm#FLI):reference")
("int32<=" "lw/lw-sys-58.htm#LWUGRM)int32%3C=")
("notice-fd" "lw/lw-mp-76.htm#LWUGRM)notice-fd" "lw/lw-mp-76.htm#mp_marker-line-3322")
("simple-int64-vector-length" "lw/lw-sys-143.htm#LWUGRM)simple-int64-vector-length")
("process-send" "lw/lw-mp-106.htm#LWUGRM)process-send")
("atomic-exchange" "lw/lw-sys-5.htm#LWUGRM)atomic-exchange")
("print-capi-button" "capi/capi-capi-ref-320.htm#CAPI)print-capi-button")
("java-interface-error" "lw/lw-lw-ji-45.htm#LWUGRM)java-interface-error")
("tstr" "lw/lw-win32-misc-18.htm#LWUGRM)tstr")
("get-string-extent" "capi/capi-gp-ref-74.htm#CAPI)get-string-extent")
("print-collection-item" "capi/capi-capi-ref-321.htm#CAPI)print-collection-item")
("append-items" "capi/capi-capi-ref-7.htm#CAPI)append-items")
("active-pane-cut" "capi/capi-capi-ref-6.htm#CAPI)active-pane-cut")
("mInitErrorString" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.mInitErrorString")
("release-object-and-nullify" "lw/lw-sys-112.htm#LWUGRM)release-object-and-nullify")
("java-type-to-lisp-array-type" "lw/lw-lw-ji-58.htm#LWUGRM)java-type-to-lisp-array-type")
("sweep-all-objects" "lw/lw-hcl-163.htm#LWUGRM)sweep-all-objects")
("compile-system" "lw/lw-lispworks-18.htm#lispworks_marker-line-577" "lw/lw-lispworks-18.htm#LWUGRM)compile-system")
("kb-name" "kw/kw-ref-32.htm#KW)kb-name")
("collector-pane" "capi/capi-capi-ref-47.htm#capi-ref_marker-line-3455" "capi/capi-capi-ref-47.htm#CAPI)collector-pane")
("schedule-timer-relative-milliseconds" "lw/lw-mp-133.htm#LWUGRM)schedule-timer-relative-milliseconds")
("*trace-print-circle*" "lw/lw-hcl-174.htm#LWUGRM)*trace-print-circle*")
("in-static-area" "lw/lw-sys-55.htm#LWUGRM)in-static-area")
("interface-geometry" "capi/capi-capi-ref-193.htm#CAPI)interface-geometry")
("printer-port-supports-p" "capi/capi-capi-ref-328.htm#CAPI)printer-port-supports-p")
("mailbox" "lw/lw-mp-51.htm#LWUGRM)mailbox")
("expand-generation-1" "lw/lw-hcl-70.htm#LWUGRM)expand-generation-1")
("stream-check-eof-no-hang" "lw/lw-streams-12.htm#LWUGRM)stream-check-eof-no-hang")
("code-coverage-file-stats-counters-count" "lw/lw-hcl-33.htm#LWUGRM)code-coverage-file-stats-counters-count")
("lock-and-condition-variable-signal" "lw/lw-mp-43.htm#LWUGRM)lock-and-condition-variable-signal")
("setup-lisp-proxy" "lw/lw-lw-ji-91.htm#LWUGRM)setup-lisp-proxy")
("short-namestring" "lw/lw-win32-misc-15.htm#LWUGRM)short-namestring")
("process-wait-local-with-periodic-checks" "lw/lw-mp-118.htm#LWUGRM)process-wait-local-with-periodic-checks")
("drop-object-pane-y" "capi/capi-capi-ref-109.htm#CAPI)drop-object-pane-y")
("infer" "kw/kw-ref-24.htm#KW)infer")
("ora-lob-erase" "lw/lw-sql-63.htm#LWUGRM)ora-lob-erase")
("text-input-pane-selected-text" "capi/capi-capi-ref-472.htm#CAPI)text-input-pane-selected-text")
("with-modification-change" "lw/lw-sys-155.htm#LWUGRM)with-modification-change")
("extended-character-p" "lw/lw-lispworks-49.htm#LWUGRM)extended-character-p")
("com.lispworks.Manager.MessageHandler" "lw/lw-android-java-classes-and-methods-3.htm#LWUGRM)com.lispworks.Manager.MessageHandler")
("call-system-showing-output" "lw/lw-sys-14.htm#sys_marker-line-546" "lw/lw-sys-14.htm#sys_marker-line-547" "lw/lw-sys-14.htm#LWUGRM)call-system-showing-output")
("editor-pane-stream" "capi/capi-capi-ref-126.htm#CAPI)editor-pane-stream")
("ssl-error" "lw/lw-comm-117.htm#LWUGRM)ssl-error")
("int32<<" "lw/lw-sys-62.htm#LWUGRM)int32%3C%3C")
(":utf-32" "lw/lw-external-format-11.htm#LWUGRM):utf-32")
("sqlite-raw-blob-ref" "lw/lw-sql-122.htm#LWUGRM)sqlite-raw-blob-ref")
("sbchar" "lw/lw-lispworks-97.htm#LWUGRM)sbchar")
("vector-float16" "fli/fli-type-ref-42.htm#FLI)vector-float16")
("ole-control-i-dispatch" "capi/capi-capi-ref-272.htm#CAPI)ole-control-i-dispatch")
("pinboard-pane-size" "capi/capi-capi-ref-314.htm#CAPI)pinboard-pane-size")
("font-dual-width-p" "capi/capi-gp-ref-54.htm#CAPI)font-dual-width-p")
("attach-interface-for-callback" "capi/capi-capi-ref-11.htm#capi-ref_marker-line-606" "capi/capi-capi-ref-11.htm#CAPI)attach-interface-for-callback")
("java-instance-without-jobject-error" "lw/lw-lw-ji-44.htm#LWUGRM)java-instance-without-jobject-error")
("drop-index" "lw/lw-sql-27.htm#LWUGRM)drop-index")
("dde-item*" "lw/lw-win32-dde-client-15.htm#LWUGRM)dde-item*")
("make-font-description" "capi/capi-gp-ref-100.htm#CAPI)make-font-description")
("clear-all" "kw/kw-ref-4.htm#ref_marker-line-156" "kw/kw-ref-4.htm#KW)clear-all")
("cast-integer" "fli/fli-functions-5.htm#FLI)cast-integer")
("conflict-set" "kw/kw-ref-6.htm#KW)conflict-set%20backward%20chaining%20goal")
("callDoubleA" "lw/lw-java-classes-and-methods-1.htm#LWUGRM)com.lispworks.LispCalls.callDoubleA")
("function-lambda-list" "lw/lw-lispworks-55.htm#LWUGRM)function-lambda-list" "lw/lw-lispworks-55.htm#lispworks_marker-line-2598")
("subtract-code-coverage-data" "lw/lw-hcl-1.htm#LWUGRM)subtract-code-coverage-data")
("with-graphics-scale" "capi/capi-gp-ref-162.htm#CAPI)with-graphics-scale")
("pointer-address" "fli/fli-functions-60.htm#FLI)pointer-address")
("set-funcall-async-limit" "lw/lw-mp-140.htm#LWUGRM)set-funcall-async-limit")
("ora-lob-file-open" "lw/lw-sql-69.htm#LWUGRM)ora-lob-file-open")
("unlocked-queue-read" "lw/lw-hcl-102.htm#LWUGRM)unlocked-queue-read")
("define-foreign-type" "fli/fli-functions-25.htm#FLI)define-foreign-type")
("query-registry-key-info" "lw/lw-win32-registry-8.htm#LWUGRM)query-registry-key-info")
("write-serial-port-char" "lw/lw-serial-port-10.htm#LWUGRM)write-serial-port-char")
("beep-pane" "capi/capi-capi-ref-14.htm#CAPI)beep-pane")
("file-writable-p" "lw/lw-hcl-78.htm#LWUGRM)file-writable-p")
("x-y-adjustable-layout" "capi/capi-capi-ref-528.htm#CAPI)x-y-adjustable-layout")
("read-sound-file" "capi/capi-capi-ref-360.htm#CAPI)read-sound-file")
("*use-n-syntax-for-non-ascii-strings*" "lw/lw-sql-145.htm#LWUGRM)*use-n-syntax-for-non-ascii-strings*")
("interactive-pane" "capi/capi-capi-ref-184.htm#capi-ref_marker-line-10677" "capi/capi-capi-ref-184.htm#CAPI)interactive-pane")
("*require-verbose*" "lw/lw-lispworks-94.htm#LWUGRM)*require-verbose*")
("convert-to-dynamic-foreign-string" "fli/fli-functions-9.htm#FLI)convert-to-dynamic-foreign-string")
("stream-element-type" "lw/lw-common-lisp-51.htm#LWUGRM)stream-element-type")
("ensure-memory-after-store" "lw/lw-sys-31.htm#LWUGRM)ensure-memory-after-store")
("java-array-error" "lw/lw-lw-ji-35.htm#LWUGRM)java-array-error")
("java-out-of-bounds-error" "lw/lw-lw-ji-54.htm#LWUGRM)java-out-of-bounds-error")
(":void" "fli/fli-type-ref-43.htm#FLI):void")
("enlarge-generation" "lw/lw-hcl-66.htm#LWUGRM)enlarge-generation")
("wait-state-collection" "lw/lw-comm-130.htm#LWUGRM)wait-state-collection")
("createLispProxy" "lw/lw-java-classes-and-methods-1.htm#LWUGRM)com.lispworks.LispCalls.createLispProxy")
("ide-funcall-in-remote" "lw/lw-dbg-13.htm#LWUGRM)ide-funcall-in-remote")
("long-namestring" "lw/lw-win32-misc-8.htm#LWUGRM)long-namestring")
("interface-match-p" "capi/capi-capi-ref-196.htm#CAPI)interface-match-p")
("quit-interface" "capi/capi-capi-ref-354.htm#CAPI)quit-interface")
("fire-rule" "kw/kw-ref-22.htm#KW)fire-rule%20backward%20chaining%20goal")
("simple-lock-and-condition-variable-wait" "lw/lw-mp-141.htm#LWUGRM)simple-lock-and-condition-variable-wait")
("create-view" "lw/lw-sql-12.htm#LWUGRM)create-view")
("with-output-to-string" "lw/lw-common-lisp-58.htm#LWUGRM)with-output-to-string")
("make-wait-state-collection" "lw/lw-comm-71.htm#LWUGRM)make-wait-state-collection")
("dde-item" "lw/lw-win32-dde-client-14.htm#LWUGRM)dde-item")
("get-enclosing-rectangle" "capi/capi-gp-ref-66.htm#CAPI)get-enclosing-rectangle")
("static-layout" "capi/capi-capi-ref-451.htm#CAPI)static-layout")
("ora-lob-close" "lw/lw-sql-55.htm#LWUGRM)ora-lob-close")
("rich-text-pane-character-format" "capi/capi-capi-ref-378.htm#CAPI)rich-text-pane-character-format")
("in-package" "lw/lw-common-lisp-19.htm#LWUGRM)in-package")
("start-ide-remote-debugging-server" "lw/lw-dbg-36.htm#dbg_marker-line-2220" "lw/lw-dbg-36.htm#dbg_marker-line-2221" "lw/lw-dbg-36.htm#LWUGRM)start-ide-remote-debugging-server")
("lock-and-condition-variable-broadcast" "lw/lw-mp-42.htm#LWUGRM)lock-and-condition-variable-broadcast")
("fdf-handle-directory-p" "lw/lw-hcl-74.htm#LWUGRM)fdf-handle-directory-p")
("int64-to-int32" "lw/lw-sys-78.htm#LWUGRM)int64-to-int32")