-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathclang.full.symbols
1556 lines (1499 loc) · 61.5 KB
/
clang.full.symbols
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
###
--include-constant __API_TO_BE_DEPRECATED
###
--include-constant __ENABLE_LEGACY_MAC_AVAILABILITY
--include-constant __MAC_OS_X_VERSION_MAX_ALLOWED
--include-constant __MAC_OS_X_VERSION_MIN_REQUIRED
###
--include-constant MAC_OS_VERSION_11_0
--include-constant MAC_OS_X_VERSION_10_0
--include-constant MAC_OS_X_VERSION_10_1
--include-constant MAC_OS_X_VERSION_10_10
--include-constant MAC_OS_X_VERSION_10_10_2
--include-constant MAC_OS_X_VERSION_10_10_3
--include-constant MAC_OS_X_VERSION_10_11
--include-constant MAC_OS_X_VERSION_10_11_2
--include-constant MAC_OS_X_VERSION_10_11_3
--include-constant MAC_OS_X_VERSION_10_11_4
--include-constant MAC_OS_X_VERSION_10_12
--include-constant MAC_OS_X_VERSION_10_12_1
--include-constant MAC_OS_X_VERSION_10_12_2
--include-constant MAC_OS_X_VERSION_10_12_4
--include-constant MAC_OS_X_VERSION_10_13
--include-constant MAC_OS_X_VERSION_10_13_1
--include-constant MAC_OS_X_VERSION_10_13_2
--include-constant MAC_OS_X_VERSION_10_13_4
--include-constant MAC_OS_X_VERSION_10_14
--include-constant MAC_OS_X_VERSION_10_14_1
--include-constant MAC_OS_X_VERSION_10_14_4
--include-constant MAC_OS_X_VERSION_10_14_6
--include-constant MAC_OS_X_VERSION_10_15
--include-constant MAC_OS_X_VERSION_10_15_1
--include-constant MAC_OS_X_VERSION_10_16
--include-constant MAC_OS_X_VERSION_10_2
--include-constant MAC_OS_X_VERSION_10_3
--include-constant MAC_OS_X_VERSION_10_4
--include-constant MAC_OS_X_VERSION_10_5
--include-constant MAC_OS_X_VERSION_10_6
--include-constant MAC_OS_X_VERSION_10_7
--include-constant MAC_OS_X_VERSION_10_8
--include-constant MAC_OS_X_VERSION_10_9
--include-constant __DRIVERKIT_19_0
--include-constant __DRIVERKIT_20_0
--include-constant __IPHONE_10_0
--include-constant __IPHONE_10_1
--include-constant __IPHONE_10_2
--include-constant __IPHONE_10_3
--include-constant __IPHONE_11_0
--include-constant __IPHONE_11_1
--include-constant __IPHONE_11_2
--include-constant __IPHONE_11_3
--include-constant __IPHONE_11_4
--include-constant __IPHONE_12_0
--include-constant __IPHONE_12_1
--include-constant __IPHONE_12_2
--include-constant __IPHONE_12_3
--include-constant __IPHONE_12_4
--include-constant __IPHONE_13_0
--include-constant __IPHONE_13_1
--include-constant __IPHONE_13_2
--include-constant __IPHONE_13_3
--include-constant __IPHONE_13_4
--include-constant __IPHONE_13_5
--include-constant __IPHONE_13_6
--include-constant __IPHONE_13_7
--include-constant __IPHONE_14_0
--include-constant __IPHONE_14_1
--include-constant __IPHONE_14_2
--include-constant __IPHONE_14_3
--include-constant __IPHONE_2_0
--include-constant __IPHONE_2_1
--include-constant __IPHONE_2_2
--include-constant __IPHONE_3_0
--include-constant __IPHONE_3_1
--include-constant __IPHONE_3_2
--include-constant __IPHONE_4_0
--include-constant __IPHONE_4_1
--include-constant __IPHONE_4_2
--include-constant __IPHONE_4_3
--include-constant __IPHONE_5_0
--include-constant __IPHONE_5_1
--include-constant __IPHONE_6_0
--include-constant __IPHONE_6_1
--include-constant __IPHONE_7_0
--include-constant __IPHONE_7_1
--include-constant __IPHONE_8_0
--include-constant __IPHONE_8_1
--include-constant __IPHONE_8_2
--include-constant __IPHONE_8_3
--include-constant __IPHONE_8_4
--include-constant __IPHONE_9_0
--include-constant __IPHONE_9_1
--include-constant __IPHONE_9_2
--include-constant __IPHONE_9_3
--include-constant __MAC_10_0
--include-constant __MAC_10_1
--include-constant __MAC_10_10
--include-constant __MAC_10_10_2
--include-constant __MAC_10_10_3
--include-constant __MAC_10_11
--include-constant __MAC_10_11_2
--include-constant __MAC_10_11_3
--include-constant __MAC_10_11_4
--include-constant __MAC_10_12
--include-constant __MAC_10_12_1
--include-constant __MAC_10_12_2
--include-constant __MAC_10_12_4
--include-constant __MAC_10_13
--include-constant __MAC_10_13_1
--include-constant __MAC_10_13_2
--include-constant __MAC_10_13_4
--include-constant __MAC_10_14
--include-constant __MAC_10_14_1
--include-constant __MAC_10_14_4
--include-constant __MAC_10_14_6
--include-constant __MAC_10_15
--include-constant __MAC_10_15_1
--include-constant __MAC_10_15_4
--include-constant __MAC_10_16
--include-constant __MAC_10_2
--include-constant __MAC_10_3
--include-constant __MAC_10_4
--include-constant __MAC_10_5
--include-constant __MAC_10_6
--include-constant __MAC_10_7
--include-constant __MAC_10_8
--include-constant __MAC_10_9
--include-constant __MAC_11_0
--include-constant __MAC_11_1
--include-constant __TVOS_10_0
--include-constant __TVOS_10_0_1
--include-constant __TVOS_10_1
--include-constant __TVOS_10_2
--include-constant __TVOS_11_0
--include-constant __TVOS_11_1
--include-constant __TVOS_11_2
--include-constant __TVOS_11_3
--include-constant __TVOS_11_4
--include-constant __TVOS_12_0
--include-constant __TVOS_12_1
--include-constant __TVOS_12_2
--include-constant __TVOS_12_3
--include-constant __TVOS_12_4
--include-constant __TVOS_13_0
--include-constant __TVOS_13_2
--include-constant __TVOS_13_3
--include-constant __TVOS_13_4
--include-constant __TVOS_14_0
--include-constant __TVOS_14_1
--include-constant __TVOS_14_2
--include-constant __TVOS_14_3
--include-constant __TVOS_9_0
--include-constant __TVOS_9_1
--include-constant __TVOS_9_2
--include-constant __WATCHOS_1_0
--include-constant __WATCHOS_2_0
--include-constant __WATCHOS_2_1
--include-constant __WATCHOS_2_2
--include-constant __WATCHOS_3_0
--include-constant __WATCHOS_3_1
--include-constant __WATCHOS_3_1_1
--include-constant __WATCHOS_3_2
--include-constant __WATCHOS_4_0
--include-constant __WATCHOS_4_1
--include-constant __WATCHOS_4_2
--include-constant __WATCHOS_4_3
--include-constant __WATCHOS_5_0
--include-constant __WATCHOS_5_1
--include-constant __WATCHOS_5_2
--include-constant __WATCHOS_5_3
--include-constant __WATCHOS_6_0
--include-constant __WATCHOS_6_1
--include-constant __WATCHOS_6_2
--include-constant __WATCHOS_7_0
--include-constant __WATCHOS_7_1
--include-constant __WATCHOS_7_2
###
--include-typedef __darwin_nl_item
--include-typedef __darwin_wctrans_t
--include-typedef __darwin_wctype_t
--include-constant _FORTIFY_SOURCE
--include-constant __DARWIN_WCHAR_MAX
--include-constant __DARWIN_WCHAR_MIN
--include-constant __DARWIN_WEOF
###
--include-typedef __darwin_clock_t
--include-typedef __darwin_ct_rune_t
--include-typedef __darwin_intptr_t
--include-typedef __darwin_mbstate_t
--include-typedef __darwin_natural_t
--include-typedef __darwin_ptrdiff_t
--include-typedef __darwin_rune_t
--include-typedef __darwin_size_t
--include-typedef __darwin_socklen_t
--include-typedef __darwin_ssize_t
--include-typedef __darwin_time_t
--include-typedef __darwin_va_list
--include-typedef __darwin_wchar_t
--include-typedef __darwin_wint_t
--include-typedef __int16_t
--include-typedef __int32_t
--include-typedef __int64_t
--include-typedef __int8_t
--include-typedef __mbstate_t
--include-typedef __uint16_t
--include-typedef __uint32_t
--include-typedef __uint64_t
--include-typedef __uint8_t
###
--include-typedef register_t
--include-typedef syscall_arg_t
--include-typedef user_addr_t
--include-typedef user_long_t
--include-typedef user_off_t
--include-typedef user_size_t
--include-typedef user_ssize_t
--include-typedef user_time_t
--include-typedef user_ulong_t
--include-constant USER_ADDR_NULL
###
--include-typedef __darwin_pthread_attr_t
--include-typedef __darwin_pthread_cond_t
--include-typedef __darwin_pthread_condattr_t
--include-typedef __darwin_pthread_key_t
--include-typedef __darwin_pthread_mutex_t
--include-typedef __darwin_pthread_mutexattr_t
--include-typedef __darwin_pthread_once_t
--include-typedef __darwin_pthread_rwlock_t
--include-typedef __darwin_pthread_rwlockattr_t
--include-typedef __darwin_pthread_t
--include-constant __PTHREAD_ATTR_SIZE__
--include-constant __PTHREAD_CONDATTR_SIZE__
--include-constant __PTHREAD_COND_SIZE__
--include-constant __PTHREAD_MUTEXATTR_SIZE__
--include-constant __PTHREAD_MUTEX_SIZE__
--include-constant __PTHREAD_ONCE_SIZE__
--include-constant __PTHREAD_RWLOCKATTR_SIZE__
--include-constant __PTHREAD_RWLOCK_SIZE__
--include-constant __PTHREAD_SIZE__
--include-struct __darwin_pthread_handler_rec
--include-struct _opaque_pthread_attr_t
--include-struct _opaque_pthread_cond_t
--include-struct _opaque_pthread_condattr_t
--include-struct _opaque_pthread_mutex_t
--include-struct _opaque_pthread_mutexattr_t
--include-struct _opaque_pthread_once_t
--include-struct _opaque_pthread_rwlock_t
--include-struct _opaque_pthread_rwlockattr_t
--include-struct _opaque_pthread_t
###
--include-typedef __darwin_blkcnt_t
--include-typedef __darwin_blksize_t
--include-typedef __darwin_dev_t
--include-typedef __darwin_fsblkcnt_t
--include-typedef __darwin_fsfilcnt_t
--include-typedef __darwin_gid_t
--include-typedef __darwin_id_t
--include-typedef __darwin_ino64_t
--include-typedef __darwin_ino_t
--include-typedef __darwin_mach_port_name_t
--include-typedef __darwin_mach_port_t
--include-typedef __darwin_mode_t
--include-typedef __darwin_off_t
--include-typedef __darwin_pid_t
--include-typedef __darwin_sigset_t
--include-typedef __darwin_suseconds_t
--include-typedef __darwin_uid_t
--include-typedef __darwin_useconds_t
--include-typedef __darwin_uuid_string_t
--include-typedef __darwin_uuid_t
--include-constant __DARWIN_NULL
###
--include-typedef clock_t
###
--include-typedef int16_t
###
--include-typedef int32_t
###
--include-typedef int64_t
###
--include-typedef int8_t
###
--include-typedef intptr_t
###
--include-constant NULL
###
--include-typedef size_t
###
--include-typedef time_t
###
--include-struct timespec
###
--include-typedef u_int16_t
###
--include-typedef u_int32_t
###
--include-typedef u_int64_t
###
--include-typedef u_int8_t
###
--include-typedef uintptr_t
###
--include-constant _DARWIN_FEATURE_64_BIT_INODE
--include-constant _DARWIN_FEATURE_ONLY_UNIX_CONFORMANCE
--include-constant _DARWIN_FEATURE_UNIX_CONFORMANCE
--include-constant __DARWIN_64_BIT_INO_T
--include-constant __DARWIN_C_ANSI
--include-constant __DARWIN_C_FULL
--include-constant __DARWIN_C_LEVEL
--include-constant __DARWIN_NON_CANCELABLE
--include-constant __DARWIN_NO_LONG_LONG
--include-constant __DARWIN_ONLY_64_BIT_INO_T
--include-constant __DARWIN_ONLY_UNIX_CONFORMANCE
--include-constant __DARWIN_ONLY_VERS_1050
--include-constant __DARWIN_SUF_1050
--include-constant __DARWIN_SUF_64_BIT_INO_T
--include-constant __DARWIN_SUF_EXTSN
--include-constant __DARWIN_UNIX03
--include-constant __DARWIN_VERS_1050
--include-constant __STDC_WANT_LIB_EXT1__
###
--include-typedef clockid_t
--include-function asctime
--include-function asctime_r
--include-function clock
--include-function clock_getres
--include-function clock_gettime
--include-function clock_gettime_nsec_np
--include-function clock_settime
--include-function ctime
--include-function ctime_r
--include-function difftime
--include-function getdate
--include-function gmtime
--include-function gmtime_r
--include-function localtime
--include-function localtime_r
--include-function mktime
--include-function nanosleep
--include-function posix2time
--include-function strftime
--include-function strptime
--include-function time
--include-function time2posix
--include-function timegm
--include-function timelocal
--include-function timespec_get
--include-function tzset
--include-function tzsetwall
--include-constant CLOCKS_PER_SEC
--include-constant CLOCK_MONOTONIC
--include-constant CLOCK_MONOTONIC_RAW
--include-constant CLOCK_MONOTONIC_RAW_APPROX
--include-constant CLOCK_PROCESS_CPUTIME_ID
--include-constant CLOCK_REALTIME
--include-constant CLOCK_THREAD_CPUTIME_ID
--include-constant CLOCK_UPTIME_RAW
--include-constant CLOCK_UPTIME_RAW_APPROX
--include-constant TIME_UTC
--include-constant _CLOCK_MONOTONIC
--include-constant _CLOCK_MONOTONIC_RAW
--include-constant _CLOCK_MONOTONIC_RAW_APPROX
--include-constant _CLOCK_PROCESS_CPUTIME_ID
--include-constant _CLOCK_REALTIME
--include-constant _CLOCK_THREAD_CPUTIME_ID
--include-constant _CLOCK_UPTIME_RAW
--include-constant _CLOCK_UPTIME_RAW_APPROX
--include-struct tm
--include-var daylight
--include-var getdate_err
--include-var timezone
--include-var tzname
###
--include-function clang_ModuleMapDescriptor_create
--include-function clang_ModuleMapDescriptor_dispose
--include-function clang_ModuleMapDescriptor_setFrameworkModuleName
--include-function clang_ModuleMapDescriptor_setUmbrellaHeader
--include-function clang_ModuleMapDescriptor_writeToBuffer
--include-function clang_VirtualFileOverlay_addFileMapping
--include-function clang_VirtualFileOverlay_create
--include-function clang_VirtualFileOverlay_dispose
--include-function clang_VirtualFileOverlay_setCaseSensitivity
--include-function clang_VirtualFileOverlay_writeToBuffer
--include-function clang_free
--include-function clang_getBuildSessionTimestamp
--include-typedef CXModuleMapDescriptor
--include-typedef CXVirtualFileOverlay
###
--include-constant CXError_ASTReadError
--include-constant CXError_Crashed
--include-constant CXError_Failure
--include-constant CXError_InvalidArguments
--include-constant CXError_Success
###
--include-function clang_disposeString
--include-function clang_disposeStringSet
--include-function clang_getCString
--include-typedef CXString
--include-typedef CXStringSet
###
--include-function clang_CXCursorSet_contains
--include-function clang_CXCursorSet_insert
--include-function clang_CXIndex_getGlobalOptions
--include-function clang_CXIndex_setGlobalOptions
--include-function clang_CXIndex_setInvocationEmissionPathOption
--include-function clang_CXXConstructor_isConvertingConstructor
--include-function clang_CXXConstructor_isCopyConstructor
--include-function clang_CXXConstructor_isDefaultConstructor
--include-function clang_CXXConstructor_isMoveConstructor
--include-function clang_CXXField_isMutable
--include-function clang_CXXMethod_isConst
--include-function clang_CXXMethod_isDefaulted
--include-function clang_CXXMethod_isPureVirtual
--include-function clang_CXXMethod_isStatic
--include-function clang_CXXMethod_isVirtual
--include-function clang_CXXRecord_isAbstract
--include-function clang_Cursor_Evaluate
--include-function clang_Cursor_getArgument
--include-function clang_Cursor_getBriefCommentText
--include-function clang_Cursor_getCXXManglings
--include-function clang_Cursor_getCommentRange
--include-function clang_Cursor_getMangling
--include-function clang_Cursor_getModule
--include-function clang_Cursor_getNumArguments
--include-function clang_Cursor_getNumTemplateArguments
--include-function clang_Cursor_getObjCDeclQualifiers
--include-function clang_Cursor_getObjCManglings
--include-function clang_Cursor_getObjCPropertyAttributes
--include-function clang_Cursor_getObjCPropertyGetterName
--include-function clang_Cursor_getObjCPropertySetterName
--include-function clang_Cursor_getObjCSelectorIndex
--include-function clang_Cursor_getOffsetOfField
--include-function clang_Cursor_getRawCommentText
--include-function clang_Cursor_getReceiverType
--include-function clang_Cursor_getSpellingNameRange
--include-function clang_Cursor_getStorageClass
--include-function clang_Cursor_getTemplateArgumentKind
--include-function clang_Cursor_getTemplateArgumentType
--include-function clang_Cursor_getTemplateArgumentUnsignedValue
--include-function clang_Cursor_getTemplateArgumentValue
--include-function clang_Cursor_getTranslationUnit
--include-function clang_Cursor_hasAttrs
--include-function clang_Cursor_isAnonymous
--include-function clang_Cursor_isAnonymousRecordDecl
--include-function clang_Cursor_isBitField
--include-function clang_Cursor_isDynamicCall
--include-function clang_Cursor_isExternalSymbol
--include-function clang_Cursor_isFunctionInlined
--include-function clang_Cursor_isInlineNamespace
--include-function clang_Cursor_isMacroBuiltin
--include-function clang_Cursor_isMacroFunctionLike
--include-function clang_Cursor_isNull
--include-function clang_Cursor_isObjCOptional
--include-function clang_Cursor_isVariadic
--include-function clang_EnumDecl_isScoped
--include-function clang_EvalResult_dispose
--include-function clang_EvalResult_getAsDouble
--include-function clang_EvalResult_getAsInt
--include-function clang_EvalResult_getAsLongLong
--include-function clang_EvalResult_getAsStr
--include-function clang_EvalResult_getAsUnsigned
--include-function clang_EvalResult_getKind
--include-function clang_EvalResult_isUnsignedInt
--include-function clang_File_isEqual
--include-function clang_File_tryGetRealPathName
--include-function clang_IndexAction_create
--include-function clang_IndexAction_dispose
--include-function clang_Location_isFromMainFile
--include-function clang_Location_isInSystemHeader
--include-function clang_Module_getASTFile
--include-function clang_Module_getFullName
--include-function clang_Module_getName
--include-function clang_Module_getNumTopLevelHeaders
--include-function clang_Module_getParent
--include-function clang_Module_getTopLevelHeader
--include-function clang_Module_isSystem
--include-function clang_PrintingPolicy_dispose
--include-function clang_PrintingPolicy_getProperty
--include-function clang_PrintingPolicy_setProperty
--include-function clang_Range_isNull
--include-function clang_TargetInfo_dispose
--include-function clang_TargetInfo_getPointerWidth
--include-function clang_TargetInfo_getTriple
--include-function clang_Type_getAlignOf
--include-function clang_Type_getCXXRefQualifier
--include-function clang_Type_getClassType
--include-function clang_Type_getModifiedType
--include-function clang_Type_getNamedType
--include-function clang_Type_getNullability
--include-function clang_Type_getNumObjCProtocolRefs
--include-function clang_Type_getNumObjCTypeArgs
--include-function clang_Type_getNumTemplateArguments
--include-function clang_Type_getObjCEncoding
--include-function clang_Type_getObjCObjectBaseType
--include-function clang_Type_getObjCProtocolDecl
--include-function clang_Type_getObjCTypeArg
--include-function clang_Type_getOffsetOf
--include-function clang_Type_getSizeOf
--include-function clang_Type_getTemplateArgumentAsType
--include-function clang_Type_isTransparentTagTypedef
--include-function clang_Type_visitFields
--include-function clang_annotateTokens
--include-function clang_codeCompleteAt
--include-function clang_codeCompleteGetContainerKind
--include-function clang_codeCompleteGetContainerUSR
--include-function clang_codeCompleteGetContexts
--include-function clang_codeCompleteGetDiagnostic
--include-function clang_codeCompleteGetNumDiagnostics
--include-function clang_codeCompleteGetObjCSelector
--include-function clang_constructUSR_ObjCCategory
--include-function clang_constructUSR_ObjCClass
--include-function clang_constructUSR_ObjCIvar
--include-function clang_constructUSR_ObjCMethod
--include-function clang_constructUSR_ObjCProperty
--include-function clang_constructUSR_ObjCProtocol
--include-function clang_createCXCursorSet
--include-function clang_createIndex
--include-function clang_createTranslationUnit
--include-function clang_createTranslationUnit2
--include-function clang_createTranslationUnitFromSourceFile
--include-function clang_defaultCodeCompleteOptions
--include-function clang_defaultDiagnosticDisplayOptions
--include-function clang_defaultEditingTranslationUnitOptions
--include-function clang_defaultReparseOptions
--include-function clang_defaultSaveOptions
--include-function clang_disposeCXCursorSet
--include-function clang_disposeCXPlatformAvailability
--include-function clang_disposeCXTUResourceUsage
--include-function clang_disposeCodeCompleteResults
--include-function clang_disposeDiagnostic
--include-function clang_disposeDiagnosticSet
--include-function clang_disposeIndex
--include-function clang_disposeOverriddenCursors
--include-function clang_disposeSourceRangeList
--include-function clang_disposeTokens
--include-function clang_disposeTranslationUnit
--include-function clang_enableStackTraces
--include-function clang_equalCursors
--include-function clang_equalLocations
--include-function clang_equalRanges
--include-function clang_equalTypes
--include-function clang_executeOnThread
--include-function clang_findIncludesInFile
--include-function clang_findIncludesInFileWithBlock
--include-function clang_findReferencesInFile
--include-function clang_findReferencesInFileWithBlock
--include-function clang_formatDiagnostic
--include-function clang_getAddressSpace
--include-function clang_getAllSkippedRanges
--include-function clang_getArgType
--include-function clang_getArrayElementType
--include-function clang_getArraySize
--include-function clang_getCXTUResourceUsage
--include-function clang_getCXXAccessSpecifier
--include-function clang_getCanonicalCursor
--include-function clang_getCanonicalType
--include-function clang_getChildDiagnostics
--include-function clang_getClangVersion
--include-function clang_getCompletionAnnotation
--include-function clang_getCompletionAvailability
--include-function clang_getCompletionBriefComment
--include-function clang_getCompletionChunkCompletionString
--include-function clang_getCompletionChunkKind
--include-function clang_getCompletionChunkText
--include-function clang_getCompletionFixIt
--include-function clang_getCompletionNumAnnotations
--include-function clang_getCompletionNumFixIts
--include-function clang_getCompletionParent
--include-function clang_getCompletionPriority
--include-function clang_getCursor
--include-function clang_getCursorAvailability
--include-function clang_getCursorCompletionString
--include-function clang_getCursorDefinition
--include-function clang_getCursorDisplayName
--include-function clang_getCursorExceptionSpecificationType
--include-function clang_getCursorExtent
--include-function clang_getCursorKind
--include-function clang_getCursorKindSpelling
--include-function clang_getCursorLanguage
--include-function clang_getCursorLexicalParent
--include-function clang_getCursorLinkage
--include-function clang_getCursorLocation
--include-function clang_getCursorPlatformAvailability
--include-function clang_getCursorPrettyPrinted
--include-function clang_getCursorPrintingPolicy
--include-function clang_getCursorReferenceNameRange
--include-function clang_getCursorReferenced
--include-function clang_getCursorResultType
--include-function clang_getCursorSemanticParent
--include-function clang_getCursorSpelling
--include-function clang_getCursorTLSKind
--include-function clang_getCursorType
--include-function clang_getCursorUSR
--include-function clang_getCursorVisibility
--include-function clang_getDeclObjCTypeEncoding
--include-function clang_getDefinitionSpellingAndExtent
--include-function clang_getDiagnostic
--include-function clang_getDiagnosticCategory
--include-function clang_getDiagnosticCategoryName
--include-function clang_getDiagnosticCategoryText
--include-function clang_getDiagnosticFixIt
--include-function clang_getDiagnosticInSet
--include-function clang_getDiagnosticLocation
--include-function clang_getDiagnosticNumFixIts
--include-function clang_getDiagnosticNumRanges
--include-function clang_getDiagnosticOption
--include-function clang_getDiagnosticRange
--include-function clang_getDiagnosticSetFromTU
--include-function clang_getDiagnosticSeverity
--include-function clang_getDiagnosticSpelling
--include-function clang_getElementType
--include-function clang_getEnumConstantDeclUnsignedValue
--include-function clang_getEnumConstantDeclValue
--include-function clang_getEnumDeclIntegerType
--include-function clang_getExceptionSpecificationType
--include-function clang_getExpansionLocation
--include-function clang_getFieldDeclBitWidth
--include-function clang_getFile
--include-function clang_getFileContents
--include-function clang_getFileLocation
--include-function clang_getFileName
--include-function clang_getFileTime
--include-function clang_getFileUniqueID
--include-function clang_getFunctionTypeCallingConv
--include-function clang_getIBOutletCollectionType
--include-function clang_getIncludedFile
--include-function clang_getInclusions
--include-function clang_getInstantiationLocation
--include-function clang_getLocation
--include-function clang_getLocationForOffset
--include-function clang_getModuleForFile
--include-function clang_getNullCursor
--include-function clang_getNullLocation
--include-function clang_getNullRange
--include-function clang_getNumArgTypes
--include-function clang_getNumCompletionChunks
--include-function clang_getNumDiagnostics
--include-function clang_getNumDiagnosticsInSet
--include-function clang_getNumElements
--include-function clang_getNumOverloadedDecls
--include-function clang_getOverloadedDecl
--include-function clang_getOverriddenCursors
--include-function clang_getPointeeType
--include-function clang_getPresumedLocation
--include-function clang_getRange
--include-function clang_getRangeEnd
--include-function clang_getRangeStart
--include-function clang_getRemappings
--include-function clang_getRemappingsFromFileList
--include-function clang_getResultType
--include-function clang_getSkippedRanges
--include-function clang_getSpecializedCursorTemplate
--include-function clang_getSpellingLocation
--include-function clang_getTUResourceUsageName
--include-function clang_getTemplateCursorKind
--include-function clang_getToken
--include-function clang_getTokenExtent
--include-function clang_getTokenKind
--include-function clang_getTokenLocation
--include-function clang_getTokenSpelling
--include-function clang_getTranslationUnitCursor
--include-function clang_getTranslationUnitSpelling
--include-function clang_getTranslationUnitTargetInfo
--include-function clang_getTypeDeclaration
--include-function clang_getTypeKindSpelling
--include-function clang_getTypeSpelling
--include-function clang_getTypedefDeclUnderlyingType
--include-function clang_getTypedefName
--include-function clang_hashCursor
--include-function clang_indexLoc_getCXSourceLocation
--include-function clang_indexLoc_getFileLocation
--include-function clang_indexSourceFile
--include-function clang_indexSourceFileFullArgv
--include-function clang_indexTranslationUnit
--include-function clang_index_getCXXClassDeclInfo
--include-function clang_index_getClientContainer
--include-function clang_index_getClientEntity
--include-function clang_index_getIBOutletCollectionAttrInfo
--include-function clang_index_getObjCCategoryDeclInfo
--include-function clang_index_getObjCContainerDeclInfo
--include-function clang_index_getObjCInterfaceDeclInfo
--include-function clang_index_getObjCPropertyDeclInfo
--include-function clang_index_getObjCProtocolRefListInfo
--include-function clang_index_isEntityObjCContainerKind
--include-function clang_index_setClientContainer
--include-function clang_index_setClientEntity
--include-function clang_isAttribute
--include-function clang_isConstQualifiedType
--include-function clang_isCursorDefinition
--include-function clang_isDeclaration
--include-function clang_isExpression
--include-function clang_isFileMultipleIncludeGuarded
--include-function clang_isFunctionTypeVariadic
--include-function clang_isInvalid
--include-function clang_isInvalidDeclaration
--include-function clang_isPODType
--include-function clang_isPreprocessing
--include-function clang_isReference
--include-function clang_isRestrictQualifiedType
--include-function clang_isStatement
--include-function clang_isTranslationUnit
--include-function clang_isUnexposed
--include-function clang_isVirtualBase
--include-function clang_isVolatileQualifiedType
--include-function clang_loadDiagnostics
--include-function clang_parseTranslationUnit
--include-function clang_parseTranslationUnit2
--include-function clang_parseTranslationUnit2FullArgv
--include-function clang_remap_dispose
--include-function clang_remap_getFilenames
--include-function clang_remap_getNumFiles
--include-function clang_reparseTranslationUnit
--include-function clang_saveTranslationUnit
--include-function clang_sortCodeCompletionResults
--include-function clang_suspendTranslationUnit
--include-function clang_toggleCrashRecovery
--include-function clang_tokenize
--include-function clang_visitChildren
--include-function clang_visitChildrenWithBlock
--include-typedef CXClientData
--include-typedef CXCodeCompleteResults
--include-typedef CXCompletionResult
--include-typedef CXCompletionString
--include-typedef CXCursor
--include-typedef CXCursorAndRangeVisitorBlock
--include-typedef CXCursorSet
--include-typedef CXCursorVisitor
--include-typedef CXCursorVisitorBlock
--include-typedef CXDiagnostic
--include-typedef CXDiagnosticSet
--include-typedef CXEvalResult
--include-typedef CXEvalResultKind
--include-typedef CXFieldVisitor
--include-typedef CXFile
--include-typedef CXFileUniqueID
--include-typedef CXGlobalOptFlags
--include-typedef CXIdxAttrInfo
--include-typedef CXIdxAttrKind
--include-typedef CXIdxBaseClassInfo
--include-typedef CXIdxCXXClassDeclInfo
--include-typedef CXIdxClientASTFile
--include-typedef CXIdxClientContainer
--include-typedef CXIdxClientEntity
--include-typedef CXIdxClientFile
--include-typedef CXIdxContainerInfo
--include-typedef CXIdxDeclInfo
--include-typedef CXIdxDeclInfoFlags
--include-typedef CXIdxEntityCXXTemplateKind
--include-typedef CXIdxEntityInfo
--include-typedef CXIdxEntityKind
--include-typedef CXIdxEntityLanguage
--include-typedef CXIdxEntityRefInfo
--include-typedef CXIdxEntityRefKind
--include-typedef CXIdxIBOutletCollectionAttrInfo
--include-typedef CXIdxImportedASTFileInfo
--include-typedef CXIdxIncludedFileInfo
--include-typedef CXIdxLoc
--include-typedef CXIdxObjCCategoryDeclInfo
--include-typedef CXIdxObjCContainerDeclInfo
--include-typedef CXIdxObjCContainerKind
--include-typedef CXIdxObjCInterfaceDeclInfo
--include-typedef CXIdxObjCPropertyDeclInfo
--include-typedef CXIdxObjCProtocolRefInfo
--include-typedef CXIdxObjCProtocolRefListInfo
--include-typedef CXInclusionVisitor
--include-typedef CXIndex
--include-typedef CXIndexAction
--include-typedef CXIndexOptFlags
--include-typedef CXModule
--include-typedef CXObjCDeclQualifierKind
--include-typedef CXObjCPropertyAttrKind
--include-typedef CXPrintingPolicy
--include-typedef CXRemapping
--include-typedef CXResult
--include-typedef CXSourceLocation
--include-typedef CXSourceRange
--include-typedef CXSourceRangeList
--include-typedef CXSymbolRole
--include-typedef CXTargetInfo
--include-typedef CXToken
--include-typedef CXTranslationUnit
--include-typedef CXType
--include-typedef IndexerCallbacks
--include-constant CINDEX_VERSION
--include-constant CINDEX_VERSION_MAJOR
--include-constant CINDEX_VERSION_MINOR
--include-constant CINDEX_VERSION_STRING
--include-constant CXAvailability_Available
--include-constant CXAvailability_Deprecated
--include-constant CXAvailability_NotAccessible
--include-constant CXAvailability_NotAvailable
--include-constant CXCallingConv_AAPCS
--include-constant CXCallingConv_AAPCS_VFP
--include-constant CXCallingConv_AArch64VectorCall
--include-constant CXCallingConv_C
--include-constant CXCallingConv_Default
--include-constant CXCallingConv_IntelOclBicc
--include-constant CXCallingConv_Invalid
--include-constant CXCallingConv_PreserveAll
--include-constant CXCallingConv_PreserveMost
--include-constant CXCallingConv_Swift
--include-constant CXCallingConv_Unexposed
--include-constant CXCallingConv_Win64
--include-constant CXCallingConv_X86FastCall
--include-constant CXCallingConv_X86Pascal
--include-constant CXCallingConv_X86RegCall
--include-constant CXCallingConv_X86StdCall
--include-constant CXCallingConv_X86ThisCall
--include-constant CXCallingConv_X86VectorCall
--include-constant CXCallingConv_X86_64SysV
--include-constant CXCallingConv_X86_64Win64
--include-constant CXChildVisit_Break
--include-constant CXChildVisit_Continue
--include-constant CXChildVisit_Recurse
--include-constant CXCodeComplete_IncludeBriefComments
--include-constant CXCodeComplete_IncludeCodePatterns
--include-constant CXCodeComplete_IncludeCompletionsWithFixIts
--include-constant CXCodeComplete_IncludeMacros
--include-constant CXCodeComplete_SkipPreamble
--include-constant CXCompletionChunk_Colon
--include-constant CXCompletionChunk_Comma
--include-constant CXCompletionChunk_CurrentParameter
--include-constant CXCompletionChunk_Equal
--include-constant CXCompletionChunk_HorizontalSpace
--include-constant CXCompletionChunk_Informative
--include-constant CXCompletionChunk_LeftAngle
--include-constant CXCompletionChunk_LeftBrace
--include-constant CXCompletionChunk_LeftBracket
--include-constant CXCompletionChunk_LeftParen
--include-constant CXCompletionChunk_Optional
--include-constant CXCompletionChunk_Placeholder
--include-constant CXCompletionChunk_ResultType
--include-constant CXCompletionChunk_RightAngle
--include-constant CXCompletionChunk_RightBrace
--include-constant CXCompletionChunk_RightBracket
--include-constant CXCompletionChunk_RightParen
--include-constant CXCompletionChunk_SemiColon
--include-constant CXCompletionChunk_Text
--include-constant CXCompletionChunk_TypedText
--include-constant CXCompletionChunk_VerticalSpace
--include-constant CXCompletionContext_AnyType
--include-constant CXCompletionContext_AnyValue
--include-constant CXCompletionContext_ArrowMemberAccess
--include-constant CXCompletionContext_CXXClassTypeValue
--include-constant CXCompletionContext_ClassTag
--include-constant CXCompletionContext_DotMemberAccess
--include-constant CXCompletionContext_EnumTag
--include-constant CXCompletionContext_IncludedFile
--include-constant CXCompletionContext_MacroName
--include-constant CXCompletionContext_Namespace
--include-constant CXCompletionContext_NaturalLanguage
--include-constant CXCompletionContext_NestedNameSpecifier
--include-constant CXCompletionContext_ObjCCategory
--include-constant CXCompletionContext_ObjCClassMessage
--include-constant CXCompletionContext_ObjCInstanceMessage
--include-constant CXCompletionContext_ObjCInterface
--include-constant CXCompletionContext_ObjCObjectValue
--include-constant CXCompletionContext_ObjCPropertyAccess
--include-constant CXCompletionContext_ObjCProtocol
--include-constant CXCompletionContext_ObjCSelectorName
--include-constant CXCompletionContext_ObjCSelectorValue
--include-constant CXCompletionContext_StructTag
--include-constant CXCompletionContext_Unexposed
--include-constant CXCompletionContext_UnionTag
--include-constant CXCompletionContext_Unknown
--include-constant CXCursor_AddrLabelExpr
--include-constant CXCursor_AlignedAttr
--include-constant CXCursor_AnnotateAttr
--include-constant CXCursor_ArraySubscriptExpr
--include-constant CXCursor_AsmLabelAttr
--include-constant CXCursor_AsmStmt
--include-constant CXCursor_BinaryOperator
--include-constant CXCursor_BlockExpr
--include-constant CXCursor_BreakStmt
--include-constant CXCursor_BuiltinBitCastExpr
--include-constant CXCursor_CStyleCastExpr
--include-constant CXCursor_CUDAConstantAttr
--include-constant CXCursor_CUDADeviceAttr
--include-constant CXCursor_CUDAGlobalAttr
--include-constant CXCursor_CUDAHostAttr
--include-constant CXCursor_CUDASharedAttr
--include-constant CXCursor_CXXAccessSpecifier
--include-constant CXCursor_CXXBaseSpecifier
--include-constant CXCursor_CXXBoolLiteralExpr
--include-constant CXCursor_CXXCatchStmt
--include-constant CXCursor_CXXConstCastExpr
--include-constant CXCursor_CXXDeleteExpr
--include-constant CXCursor_CXXDynamicCastExpr
--include-constant CXCursor_CXXFinalAttr
--include-constant CXCursor_CXXForRangeStmt
--include-constant CXCursor_CXXFunctionalCastExpr
--include-constant CXCursor_CXXMethod
--include-constant CXCursor_CXXNewExpr
--include-constant CXCursor_CXXNullPtrLiteralExpr
--include-constant CXCursor_CXXOverrideAttr
--include-constant CXCursor_CXXReinterpretCastExpr
--include-constant CXCursor_CXXStaticCastExpr
--include-constant CXCursor_CXXThisExpr
--include-constant CXCursor_CXXThrowExpr
--include-constant CXCursor_CXXTryStmt
--include-constant CXCursor_CXXTypeidExpr
--include-constant CXCursor_CallExpr
--include-constant CXCursor_CaseStmt
--include-constant CXCursor_CharacterLiteral
--include-constant CXCursor_ClassDecl
--include-constant CXCursor_ClassTemplate
--include-constant CXCursor_ClassTemplatePartialSpecialization
--include-constant CXCursor_CompoundAssignOperator
--include-constant CXCursor_CompoundLiteralExpr
--include-constant CXCursor_CompoundStmt
--include-constant CXCursor_ConditionalOperator
--include-constant CXCursor_ConstAttr
--include-constant CXCursor_Constructor
--include-constant CXCursor_ContinueStmt
--include-constant CXCursor_ConvergentAttr
--include-constant CXCursor_ConversionFunction
--include-constant CXCursor_DLLExport
--include-constant CXCursor_DLLImport
--include-constant CXCursor_DeclRefExpr
--include-constant CXCursor_DeclStmt
--include-constant CXCursor_DefaultStmt
--include-constant CXCursor_Destructor
--include-constant CXCursor_DoStmt
--include-constant CXCursor_EnumConstantDecl
--include-constant CXCursor_EnumDecl
--include-constant CXCursor_ExceptionSpecificationKind_BasicNoexcept
--include-constant CXCursor_ExceptionSpecificationKind_ComputedNoexcept
--include-constant CXCursor_ExceptionSpecificationKind_Dynamic
--include-constant CXCursor_ExceptionSpecificationKind_DynamicNone
--include-constant CXCursor_ExceptionSpecificationKind_MSAny
--include-constant CXCursor_ExceptionSpecificationKind_NoThrow
--include-constant CXCursor_ExceptionSpecificationKind_None
--include-constant CXCursor_ExceptionSpecificationKind_Unevaluated
--include-constant CXCursor_ExceptionSpecificationKind_Uninstantiated
--include-constant CXCursor_ExceptionSpecificationKind_Unparsed
--include-constant CXCursor_FieldDecl
--include-constant CXCursor_FirstAttr
--include-constant CXCursor_FirstDecl
--include-constant CXCursor_FirstExpr
--include-constant CXCursor_FirstExtraDecl
--include-constant CXCursor_FirstInvalid
--include-constant CXCursor_FirstPreprocessing
--include-constant CXCursor_FirstRef
--include-constant CXCursor_FirstStmt