aboutsummaryrefslogtreecommitdiff
path: root/xapian/wrap.scm
blob: be4039c7ab3d0df6f6b5f847cae263234e032307 (plain)
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
;;; This file was automatically generated by SWIG (http://www.swig.org).
;;; Version 3.0.12
;;;
;;; Do not make changes to this file unless you know what you are doing--modify
;;; the SWIG interface file instead.

(define-module (xapian wrap))


(load-extension "./libguilexapian" "SWIG_init")


(export version-string
        major-version
        minor-version
        revision
        BAD-VALUENO
        DB-CREATE
        DB-CREATE-OR-OPEN
        DB-CREATE-OR-OVERWRITE
        DB-OPEN
        DB-NO-SYNC
        DB-FULL-SYNC
        DB-DANGEROUS
        DB-NO-TERMLIST
        DB-BACKEND-CHERT
        DB-BACKEND-GLASS
        DB-BACKEND-INMEMORY
        DB-BACKEND-STUB
        DB-RETRY-LOCK
        DBCHECK-SHORT-TREE
        DBCHECK-FULL-TREE
        DBCHECK-SHOW-FREELIST
        DBCHECK-SHOW-STATS
        DBCHECK-FIX
        DBCOMPACT-MULTIPASS
        DBCOMPACT-NO-RENUMBER
        DBCOMPACT-SINGLE-FILE
        DOC-ASSUME-VALID
        new-PositionIterator
        delete-PositionIterator
        PositionIterator-skip-to
        PositionIterator-get-description
        PositionIterator-equals
        PositionIterator-get-termpos
        PositionIterator-next
        new-PostingIterator
        delete-PostingIterator
        PostingIterator-get-wdf
        PostingIterator-get-doclength
        PostingIterator-get-unique-terms
        PostingIterator-positionlist-begin
        PostingIterator-positionlist-end
        PostingIterator-skip-to
        PostingIterator-get-description
        PostingIterator-equals
        PostingIterator-get-docid
        PostingIterator-next
        new-TermIterator
        delete-TermIterator
        TermIterator-get-wdf
        TermIterator-get-termfreq
        TermIterator-positionlist-count
        TermIterator-positionlist-begin
        TermIterator-positionlist-end
        TermIterator-skip-to
        TermIterator-get-description
        TermIterator-equals
        TermIterator-get-term
        TermIterator-next
        new-ValueIterator
        delete-ValueIterator
        ValueIterator-get-docid
        ValueIterator-get-valueno
        ValueIterator-skip-to
        ValueIterator-check
        ValueIterator-get-description
        ValueIterator-equals
        ValueIterator-get-value
        ValueIterator-next
        new-Document
        delete-Document
        Document-get-value
        Document-add-value
        Document-remove-value
        Document-clear-values
        Document-get-data
        Document-set-data
        Document-add-posting
        Document-add-posting
        Document-add-term
        Document-add-term
        Document-add-boolean-term
        Document-remove-posting
        Document-remove-posting
        Document-remove-postings
        Document-remove-postings
        Document-remove-term
        Document-clear-terms
        Document-termlist-count
        Document-termlist-begin
        Document-termlist-end
        Document-values-count
        Document-values-begin
        Document-values-end
        Document-get-docid
        Document-serialise
        Document-unserialise
        Document-get-description
        new-Registry
        delete-Registry
        Registry-register-weighting-scheme
        Registry-get-weighting-scheme
        Registry-register-posting-source
        Registry-get-posting-source
        Registry-register-match-spy
        Registry-get-match-spy
        Registry-register-lat-long-metric
        Registry-get-lat-long-metric
        Query-MatchNothing
        Query-MatchAll
        Query-OP-AND
        Query-OP-OR
        Query-OP-AND-NOT
        Query-OP-XOR
        Query-OP-AND-MAYBE
        Query-OP-FILTER
        Query-OP-NEAR
        Query-OP-PHRASE
        Query-OP-VALUE-RANGE
        Query-OP-SCALE-WEIGHT
        Query-OP-ELITE-SET
        Query-OP-VALUE-GE
        Query-OP-VALUE-LE
        Query-OP-SYNONYM
        Query-OP-MAX
        Query-OP-WILDCARD
        Query-OP-INVALID
        Query-WILDCARD-LIMIT-ERROR
        Query-WILDCARD-LIMIT-FIRST
        Query-WILDCARD-LIMIT-MOST-FREQUENT
        new-Query
        delete-Query
        new-Query
        new-Query
        new-Query
        new-Query
        new-Query
        new-Query
        new-Query
        new-Query
        new-Query
        new-Query
        new-Query
        new-Query
        new-Query
        new-Query
        Query-get-terms-begin
        Query-get-terms-end
        Query-get-unique-terms-begin
        Query-get-unique-terms-end
        Query-get-length
        Query-empty
        Query-serialise
        Query-unserialise
        Query-unserialise
        Query-get-type
        Query-get-num-subqueries
        Query-get-subquery
        Query-get-description
        new-Query
        new-Stem
        new-Stem
        new-Stem
        delete-Stem
        Stem-apply
        Stem-is-none
        Stem-get-description
        Stem-get-available-languages
        new-TermGenerator
        delete-TermGenerator
        TermGenerator-set-stemmer
        TermGenerator-set-stopper
        TermGenerator-set-stopper
        TermGenerator-set-document
        TermGenerator-get-document
        TermGenerator-set-database
        TermGenerator-FLAG-SPELLING
        TermGenerator-FLAG-CJK-NGRAM
        TermGenerator-STEM-NONE
        TermGenerator-STEM-SOME
        TermGenerator-STEM-ALL
        TermGenerator-STEM-ALL-Z
        TermGenerator-STEM-SOME-FULL-POS
        TermGenerator-STOP-NONE
        TermGenerator-STOP-ALL
        TermGenerator-STOP-STEMMED
        TermGenerator-set-flags
        TermGenerator-set-flags
        TermGenerator-set-stemming-strategy
        TermGenerator-set-stopper-strategy
        TermGenerator-set-max-word-length
        TermGenerator-index-text
        TermGenerator-index-text
        TermGenerator-index-text
        TermGenerator-index-text-without-positions
        TermGenerator-index-text-without-positions
        TermGenerator-index-text-without-positions
        TermGenerator-increase-termpos
        TermGenerator-increase-termpos
        TermGenerator-get-termpos
        TermGenerator-set-termpos
        TermGenerator-get-description
        new-MSet
        delete-MSet
        MSet-convert-to-percent
        MSet-convert-to-percent
        MSet-get-termfreq
        MSet-get-termweight
        MSet-get-firstitem
        MSet-get-matches-lower-bound
        MSet-get-matches-estimated
        MSet-get-matches-upper-bound
        MSet-get-uncollapsed-matches-lower-bound
        MSet-get-uncollapsed-matches-estimated
        MSet-get-uncollapsed-matches-upper-bound
        MSet-get-max-attained
        MSet-get-max-possible
        MSet-SNIPPET-BACKGROUND-MODEL
        MSet-SNIPPET-EXHAUSTIVE
        MSet-SNIPPET-EMPTY-WITHOUT-MATCH
        MSet-SNIPPET-CJK-NGRAM
        MSet-snippet
        MSet-snippet
        MSet-snippet
        MSet-snippet
        MSet-snippet
        MSet-snippet
        MSet-snippet
        MSet-fetch
        MSet-fetch
        MSet-fetch
        MSet-size
        MSet-empty
        MSet-begin
        MSet-end
        MSet-back
        MSet-get-description
        MSet-get-docid
        MSet-get-document
        MSet-get-hit
        MSet-get-document-percentage
        MSetIterator-mset-set
        MSetIterator-mset-get
        MSetIterator-off-from-end-set
        MSetIterator-off-from-end-get
        new-MSetIterator
        MSetIterator-get-rank
        MSetIterator-get-document
        MSetIterator-get-weight
        MSetIterator-get-collapse-key
        MSetIterator-get-collapse-count
        MSetIterator-get-sort-key
        MSetIterator-get-percent
        MSetIterator-get-description
        MSetIterator-equals
        MSetIterator-get-docid
        MSetIterator-next
        MSetIterator-prev
        delete-MSetIterator
        new-ESet
        delete-ESet
        ESet-size
        ESet-empty
        ESet-get-ebound
        ESet-begin
        ESet-end
        ESet-back
        ESet-get-description
        ESetIterator-eset-set
        ESetIterator-eset-get
        ESetIterator-off-from-end-set
        ESetIterator-off-from-end-get
        new-ESetIterator
        ESetIterator-get-weight
        ESetIterator-get-description
        ESetIterator-equals
        ESetIterator-get-term
        ESetIterator-next
        ESetIterator-prev
        delete-ESetIterator
        new-RSet
        delete-RSet
        RSet-size
        RSet-empty
        RSet-add-document
        RSet-add-document
        RSet-remove-document
        RSet-remove-document
        RSet-contains
        RSet-contains
        RSet-get-description
        MatchDecider-apply
        delete-MatchDecider
        new-Enquire
        delete-Enquire
        Enquire-set-query
        Enquire-set-query
        Enquire-get-query
        Enquire-add-matchspy
        Enquire-clear-matchspies
        Enquire-set-weighting-scheme
        Enquire-set-expansion-scheme
        Enquire-set-expansion-scheme
        Enquire-set-collapse-key
        Enquire-set-collapse-key
        Enquire-ASCENDING
        Enquire-DESCENDING
        Enquire-DONT-CARE
        Enquire-set-docid-order
        Enquire-set-cutoff
        Enquire-set-cutoff
        Enquire-set-sort-by-relevance
        Enquire-set-sort-by-value
        Enquire-set-sort-by-key
        Enquire-set-sort-by-value-then-relevance
        Enquire-set-sort-by-key-then-relevance
        Enquire-set-sort-by-relevance-then-value
        Enquire-set-sort-by-relevance-then-key
        Enquire-set-time-limit
        Enquire-get-mset
        Enquire-get-mset
        Enquire-get-mset
        Enquire-get-mset
        Enquire-get-mset
        Enquire-get-mset
        Enquire-INCLUDE-QUERY-TERMS
        Enquire-USE-EXACT-TERMFREQ
        Enquire-get-eset
        Enquire-get-eset
        Enquire-get-eset
        Enquire-get-eset
        Enquire-get-eset
        Enquire-get-eset
        Enquire-get-eset
        Enquire-get-eset
        Enquire-get-matching-terms-begin
        Enquire-get-matching-terms-end
        Enquire-get-matching-terms-begin
        Enquire-get-matching-terms-end
        Enquire-get-description
        ExpandDecider-apply
        delete-ExpandDecider
        ExpandDecider-release
        new-ExpandDeciderAnd
        ExpandDeciderAnd-apply
        delete-ExpandDeciderAnd
        new-ExpandDeciderFilterPrefix
        ExpandDeciderFilterPrefix-apply
        delete-ExpandDeciderFilterPrefix
        KeyMaker-apply
        delete-KeyMaker
        KeyMaker-release
        new-MultiValueKeyMaker
        MultiValueKeyMaker-apply
        MultiValueKeyMaker-add-value
        MultiValueKeyMaker-add-value
        MultiValueKeyMaker-add-value
        delete-MultiValueKeyMaker
        RP-SUFFIX
        RP-REPEATED
        RP-DATE-PREFER-MDY
        Stopper-apply
        delete-Stopper
        Stopper-get-description
        Stopper-release
        new-SimpleStopper
        SimpleStopper-add
        SimpleStopper-apply
        SimpleStopper-get-description
        new-SimpleStopper
        delete-SimpleStopper
        new-RangeProcessor
        new-RangeProcessor
        new-RangeProcessor
        new-RangeProcessor
        delete-RangeProcessor
        RangeProcessor-check-range
        RangeProcessor-apply
        RangeProcessor-release
        new-DateRangeProcessor
        new-DateRangeProcessor
        new-DateRangeProcessor
        new-DateRangeProcessor
        new-DateRangeProcessor
        new-DateRangeProcessor
        DateRangeProcessor-apply
        delete-DateRangeProcessor
        new-NumberRangeProcessor
        new-NumberRangeProcessor
        new-NumberRangeProcessor
        NumberRangeProcessor-apply
        delete-NumberRangeProcessor
        delete-ValueRangeProcessor
        ValueRangeProcessor-apply
        ValueRangeProcessor-release
        new-StringValueRangeProcessor
        new-StringValueRangeProcessor
        new-StringValueRangeProcessor
        StringValueRangeProcessor-apply
        delete-StringValueRangeProcessor
        new-DateValueRangeProcessor
        new-DateValueRangeProcessor
        new-DateValueRangeProcessor
        new-DateValueRangeProcessor
        new-DateValueRangeProcessor
        new-DateValueRangeProcessor
        new-DateValueRangeProcessor
        DateValueRangeProcessor-apply
        delete-DateValueRangeProcessor
        new-NumberValueRangeProcessor
        new-NumberValueRangeProcessor
        new-NumberValueRangeProcessor
        NumberValueRangeProcessor-apply
        delete-NumberValueRangeProcessor
        delete-FieldProcessor
        FieldProcessor-apply
        FieldProcessor-release
        QueryParser-FLAG-BOOLEAN
        QueryParser-FLAG-PHRASE
        QueryParser-FLAG-LOVEHATE
        QueryParser-FLAG-BOOLEAN-ANY-CASE
        QueryParser-FLAG-WILDCARD
        QueryParser-FLAG-PURE-NOT
        QueryParser-FLAG-PARTIAL
        QueryParser-FLAG-SPELLING-CORRECTION
        QueryParser-FLAG-SYNONYM
        QueryParser-FLAG-AUTO-SYNONYMS
        QueryParser-FLAG-AUTO-MULTIWORD-SYNONYMS
        QueryParser-FLAG-CJK-NGRAM
        QueryParser-FLAG-DEFAULT
        QueryParser-STEM-NONE
        QueryParser-STEM-SOME
        QueryParser-STEM-ALL
        QueryParser-STEM-ALL-Z
        QueryParser-STEM-SOME-FULL-POS
        new-QueryParser
        delete-QueryParser
        QueryParser-set-stemmer
        QueryParser-set-stemming-strategy
        QueryParser-set-stopper
        QueryParser-set-stopper
        QueryParser-set-default-op
        QueryParser-get-default-op
        QueryParser-set-database
        QueryParser-set-max-expansion
        QueryParser-set-max-expansion
        QueryParser-set-max-expansion
        QueryParser-set-max-wildcard-expansion
        QueryParser-parse-query
        QueryParser-parse-query
        QueryParser-parse-query
        QueryParser-add-prefix
        QueryParser-add-prefix
        QueryParser-add-boolean-prefix
        QueryParser-add-boolean-prefix
        QueryParser-add-boolean-prefix
        QueryParser-add-boolean-prefix
        QueryParser-add-boolean-prefix
        QueryParser-add-boolean-prefix
        QueryParser-stoplist-begin
        QueryParser-stoplist-end
        QueryParser-unstem-begin
        QueryParser-unstem-end
        QueryParser-add-rangeprocessor
        QueryParser-add-rangeprocessor
        QueryParser-add-valuerangeprocessor
        QueryParser-get-corrected-query-string
        QueryParser-get-description
        sortable-serialise
        sortable-unserialise
        new-ValueSetMatchDecider
        ValueSetMatchDecider-add-value
        ValueSetMatchDecider-remove-value
        ValueSetMatchDecider-apply
        delete-ValueSetMatchDecider
        Weight-TWO-STAGE-SMOOTHING
        Weight-DIRICHLET-SMOOTHING
        Weight-ABSOLUTE-DISCOUNT-SMOOTHING
        Weight-JELINEK-MERCER-SMOOTHING
        Weight-DIRICHLET-PLUS-SMOOTHING
        delete-Weight
        Weight-name
        Weight-get-sumpart
        Weight-get-maxpart
        Weight-get-sumextra
        Weight-get-maxextra
        new-BoolWeight
        BoolWeight-name
        BoolWeight-get-sumpart
        BoolWeight-get-maxpart
        BoolWeight-get-sumextra
        BoolWeight-get-maxextra
        delete-BoolWeight
        new-TfIdfWeight
        new-TfIdfWeight
        TfIdfWeight-name
        TfIdfWeight-get-sumpart
        TfIdfWeight-get-maxpart
        TfIdfWeight-get-sumextra
        TfIdfWeight-get-maxextra
        delete-TfIdfWeight
        new-BM25Weight
        new-BM25Weight
        BM25Weight-name
        BM25Weight-get-sumpart
        BM25Weight-get-maxpart
        BM25Weight-get-sumextra
        BM25Weight-get-maxextra
        delete-BM25Weight
        new-BM25PlusWeight
        new-BM25PlusWeight
        BM25PlusWeight-name
        BM25PlusWeight-get-sumpart
        BM25PlusWeight-get-maxpart
        BM25PlusWeight-get-sumextra
        BM25PlusWeight-get-maxextra
        delete-BM25PlusWeight
        new-TradWeight
        new-TradWeight
        TradWeight-name
        TradWeight-get-sumpart
        TradWeight-get-maxpart
        TradWeight-get-sumextra
        TradWeight-get-maxextra
        delete-TradWeight
        new-InL2Weight
        new-InL2Weight
        InL2Weight-name
        InL2Weight-get-sumpart
        InL2Weight-get-maxpart
        InL2Weight-get-sumextra
        InL2Weight-get-maxextra
        delete-InL2Weight
        new-IfB2Weight
        new-IfB2Weight
        IfB2Weight-name
        IfB2Weight-get-sumpart
        IfB2Weight-get-maxpart
        IfB2Weight-get-sumextra
        IfB2Weight-get-maxextra
        delete-IfB2Weight
        new-IneB2Weight
        new-IneB2Weight
        IneB2Weight-name
        IneB2Weight-get-sumpart
        IneB2Weight-get-maxpart
        IneB2Weight-get-sumextra
        IneB2Weight-get-maxextra
        delete-IneB2Weight
        new-BB2Weight
        new-BB2Weight
        BB2Weight-name
        BB2Weight-get-sumpart
        BB2Weight-get-maxpart
        BB2Weight-get-sumextra
        BB2Weight-get-maxextra
        delete-BB2Weight
        new-DLHWeight
        DLHWeight-name
        DLHWeight-get-sumpart
        DLHWeight-get-maxpart
        DLHWeight-get-sumextra
        DLHWeight-get-maxextra
        delete-DLHWeight
        new-PL2Weight
        new-PL2Weight
        PL2Weight-name
        PL2Weight-get-sumpart
        PL2Weight-get-maxpart
        PL2Weight-get-sumextra
        PL2Weight-get-maxextra
        delete-PL2Weight
        new-PL2PlusWeight
        new-PL2PlusWeight
        PL2PlusWeight-name
        PL2PlusWeight-get-sumpart
        PL2PlusWeight-get-maxpart
        PL2PlusWeight-get-sumextra
        PL2PlusWeight-get-maxextra
        delete-PL2PlusWeight
        new-DPHWeight
        DPHWeight-name
        DPHWeight-get-sumpart
        DPHWeight-get-maxpart
        DPHWeight-get-sumextra
        DPHWeight-get-maxextra
        delete-DPHWeight
        new-LMWeight
        new-LMWeight
        new-LMWeight
        new-LMWeight
        new-LMWeight
        LMWeight-name
        LMWeight-get-sumpart
        LMWeight-get-maxpart
        LMWeight-get-sumextra
        LMWeight-get-maxextra
        delete-LMWeight
        CoordWeight-init
        new-CoordWeight
        CoordWeight-name
        CoordWeight-get-sumpart
        CoordWeight-get-maxpart
        CoordWeight-get-sumextra
        CoordWeight-get-maxextra
        delete-CoordWeight
        Compactor-STANDARD
        Compactor-FULL
        Compactor-FULLER
        new-Compactor
        delete-Compactor
        Compactor-set-block-size
        Compactor-set-renumber
        Compactor-set-multipass
        Compactor-set-compaction-level
        Compactor-set-destdir
        Compactor-add-source
        Compactor-compact
        Compactor-set-status
        Compactor-resolve-duplicate-metadata
        delete-PostingSource
        PostingSource-get-termfreq-min
        PostingSource-get-termfreq-est
        PostingSource-get-termfreq-max
        PostingSource-set-maxweight
        PostingSource-get-maxweight
        PostingSource-get-weight
        PostingSource-get-docid
        PostingSource-next
        PostingSource-skip-to
        PostingSource-check
        PostingSource-at-end
        PostingSource-name
        PostingSource-init
        PostingSource-get-description
        PostingSource-release
        new-ValuePostingSource
        ValuePostingSource-get-termfreq-min
        ValuePostingSource-get-termfreq-est
        ValuePostingSource-get-termfreq-max
        ValuePostingSource-next
        ValuePostingSource-skip-to
        ValuePostingSource-check
        ValuePostingSource-at-end
        ValuePostingSource-get-docid
        ValuePostingSource-init
        ValuePostingSource-get-database
        ValuePostingSource-get-slot
        ValuePostingSource-get-value
        ValuePostingSource-done
        ValuePostingSource-get-started
        ValuePostingSource-set-termfreq-min
        ValuePostingSource-set-termfreq-est
        ValuePostingSource-set-termfreq-max
        delete-ValuePostingSource
        new-ValueWeightPostingSource
        ValueWeightPostingSource-get-weight
        ValueWeightPostingSource-name
        ValueWeightPostingSource-init
        ValueWeightPostingSource-get-description
        delete-ValueWeightPostingSource
        new-DecreasingValueWeightPostingSource
        new-DecreasingValueWeightPostingSource
        new-DecreasingValueWeightPostingSource
        DecreasingValueWeightPostingSource-get-weight
        DecreasingValueWeightPostingSource-name
        DecreasingValueWeightPostingSource-init
        DecreasingValueWeightPostingSource-next
        DecreasingValueWeightPostingSource-skip-to
        DecreasingValueWeightPostingSource-check
        DecreasingValueWeightPostingSource-get-description
        delete-DecreasingValueWeightPostingSource
        new-ValueMapPostingSource
        ValueMapPostingSource-add-mapping
        ValueMapPostingSource-clear-mappings
        ValueMapPostingSource-set-default-weight
        ValueMapPostingSource-get-weight
        ValueMapPostingSource-name
        ValueMapPostingSource-init
        ValueMapPostingSource-get-description
        delete-ValueMapPostingSource
        new-FixedWeightPostingSource
        FixedWeightPostingSource-get-termfreq-min
        FixedWeightPostingSource-get-termfreq-est
        FixedWeightPostingSource-get-termfreq-max
        FixedWeightPostingSource-get-weight
        FixedWeightPostingSource-next
        FixedWeightPostingSource-skip-to
        FixedWeightPostingSource-check
        FixedWeightPostingSource-at-end
        FixedWeightPostingSource-get-docid
        FixedWeightPostingSource-name
        FixedWeightPostingSource-init
        FixedWeightPostingSource-get-description
        delete-FixedWeightPostingSource
        delete-MatchSpy
        MatchSpy-apply
        MatchSpy-name
        MatchSpy-merge-results
        MatchSpy-get-description
        MatchSpy-release
        new-ValueCountMatchSpy
        new-ValueCountMatchSpy
        ValueCountMatchSpy-get-total
        ValueCountMatchSpy-values-begin
        ValueCountMatchSpy-values-end
        ValueCountMatchSpy-top-values-begin
        ValueCountMatchSpy-top-values-end
        ValueCountMatchSpy-apply
        ValueCountMatchSpy-name
        ValueCountMatchSpy-merge-results
        ValueCountMatchSpy-get-description
        delete-ValueCountMatchSpy
        miles-to-metres
        metres-to-miles
        LatLongCoord-latitude-set
        LatLongCoord-latitude-get
        LatLongCoord-longitude-set
        LatLongCoord-longitude-get
        new-LatLongCoord
        new-LatLongCoord
        LatLongCoord-unserialise
        LatLongCoord-serialise
        LatLongCoord-get-description
        delete-LatLongCoord
        new-LatLongCoordsIterator
        LatLongCoordsIterator-equals
        LatLongCoordsIterator-get-coord
        LatLongCoordsIterator-next
        delete-LatLongCoordsIterator
        LatLongCoords-begin
        LatLongCoords-end
        LatLongCoords-size
        LatLongCoords-empty
        LatLongCoords-append
        new-LatLongCoords
        new-LatLongCoords
        LatLongCoords-unserialise
        LatLongCoords-serialise
        LatLongCoords-get-description
        delete-LatLongCoords
        delete-LatLongMetric
        LatLongMetric-pointwise-distance
        LatLongMetric-apply
        LatLongMetric-apply
        LatLongMetric-apply
        LatLongMetric-name
        new-GreatCircleMetric
        new-GreatCircleMetric
        GreatCircleMetric-pointwise-distance
        GreatCircleMetric-name
        delete-GreatCircleMetric
        new-LatLongDistancePostingSource
        new-LatLongDistancePostingSource
        new-LatLongDistancePostingSource
        new-LatLongDistancePostingSource
        new-LatLongDistancePostingSource
        new-LatLongDistancePostingSource
        new-LatLongDistancePostingSource
        new-LatLongDistancePostingSource
        delete-LatLongDistancePostingSource
        LatLongDistancePostingSource-next
        LatLongDistancePostingSource-skip-to
        LatLongDistancePostingSource-check
        LatLongDistancePostingSource-get-weight
        LatLongDistancePostingSource-name
        LatLongDistancePostingSource-init
        LatLongDistancePostingSource-get-description
        new-LatLongDistanceKeyMaker
        new-LatLongDistanceKeyMaker
        new-LatLongDistanceKeyMaker
        new-LatLongDistanceKeyMaker
        new-LatLongDistanceKeyMaker
        new-LatLongDistanceKeyMaker
        delete-LatLongDistanceKeyMaker
        LatLongDistanceKeyMaker-apply
        Database-add-database
        Database-size
        new-Database
        new-Database
        new-Database
        new-Database
        new-Database
        delete-Database
        Database-reopen
        Database-close
        Database-get-description
        Database-postlist-begin
        Database-postlist-end
        Database-termlist-begin
        Database-termlist-end
        Database-has-positions
        Database-positionlist-begin
        Database-positionlist-end
        Database-allterms-begin
        Database-allterms-begin
        Database-allterms-end
        Database-allterms-end
        Database-get-doccount
        Database-get-lastdocid
        Database-get-avlength
        Database-get-total-length
        Database-get-termfreq
        Database-term-exists
        Database-get-collection-freq
        Database-get-value-freq
        Database-get-value-lower-bound
        Database-get-value-upper-bound
        Database-get-doclength-lower-bound
        Database-get-doclength-upper-bound
        Database-get-wdf-upper-bound
        Database-valuestream-begin
        Database-valuestream-end
        Database-get-doclength
        Database-get-unique-terms
        Database-keep-alive
        Database-get-document
        Database-get-document
        Database-get-spelling-suggestion
        Database-get-spelling-suggestion
        Database-spellings-begin
        Database-spellings-end
        Database-synonyms-begin
        Database-synonyms-end
        Database-synonym-keys-begin
        Database-synonym-keys-begin
        Database-synonym-keys-end
        Database-synonym-keys-end
        Database-get-metadata
        Database-metadata-keys-begin
        Database-metadata-keys-begin
        Database-metadata-keys-end
        Database-metadata-keys-end
        Database-get-uuid
        Database-locked
        Database-get-revision
        Database-check
        Database-check
        Database-check
        Database-check
        Database-compact
        Database-compact
        Database-compact
        Database-compact
        Database-compact
        Database-compact
        Database-compact
        Database-compact
        delete-WritableDatabase
        new-WritableDatabase
        new-WritableDatabase
        new-WritableDatabase
        new-WritableDatabase
        WritableDatabase-commit
        WritableDatabase-flush
        WritableDatabase-begin-transaction
        WritableDatabase-begin-transaction
        WritableDatabase-commit-transaction
        WritableDatabase-cancel-transaction
        WritableDatabase-add-document
        WritableDatabase-delete-document
        WritableDatabase-delete-document
        WritableDatabase-replace-document
        WritableDatabase-replace-document
        WritableDatabase-add-spelling
        WritableDatabase-add-spelling
        WritableDatabase-remove-spelling
        WritableDatabase-remove-spelling
        WritableDatabase-add-synonym
        WritableDatabase-remove-synonym
        WritableDatabase-clear-synonyms
        WritableDatabase-set-metadata
        WritableDatabase-get-description
        open-stub
        open-stub
        inmemory-open
        chert-open
        chert-open
        chert-open
        remote-open
        remote-open
        remote-open
        remote-open-writable
        remote-open-writable
        remote-open-writable
        remote-open-writable
        remote-open
        remote-open
        remote-open-writable
        remote-open-writable
        remote-open-writable)