1 /*===-- clang-c/Index.h - Indexing Public C Interface -------------*- C -*-===*\
3 |* The LLVM Compiler Infrastructure *|
5 |* This file is distributed under the University of Illinois Open Source *|
6 |* License. See LICENSE.TXT for details. *|
8 |*===----------------------------------------------------------------------===*|
10 |* This header provides a public inferface to a Clang library for extracting *|
11 |* high-level symbol information from source files without exposing the full *|
14 \*===----------------------------------------------------------------------===*/
16 #ifndef LLVM_CLANG_C_INDEX_H
17 #define LLVM_CLANG_C_INDEX_H
21 #include "clang-c/Platform.h"
22 #include "clang-c/CXErrorCode.h"
23 #include "clang-c/CXString.h"
24 #include "clang-c/BuildSystem.h"
27 * \brief The version constants for the libclang API.
28 * CINDEX_VERSION_MINOR should increase when there are API additions.
29 * CINDEX_VERSION_MAJOR is intended for "major" source/ABI breaking changes.
31 * The policy about the libclang API was always to keep it source and ABI
32 * compatible, thus CINDEX_VERSION_MAJOR is expected to remain stable.
34 #define CINDEX_VERSION_MAJOR 0
35 #define CINDEX_VERSION_MINOR 32
37 #define CINDEX_VERSION_ENCODE(major, minor) ( \
41 #define CINDEX_VERSION CINDEX_VERSION_ENCODE( \
42 CINDEX_VERSION_MAJOR, \
43 CINDEX_VERSION_MINOR )
45 #define CINDEX_VERSION_STRINGIZE_(major, minor) \
47 #define CINDEX_VERSION_STRINGIZE(major, minor) \
48 CINDEX_VERSION_STRINGIZE_(major, minor)
50 #define CINDEX_VERSION_STRING CINDEX_VERSION_STRINGIZE( \
51 CINDEX_VERSION_MAJOR, \
58 /** \defgroup CINDEX libclang: C Interface to Clang
60 * The C Interface to Clang provides a relatively small API that exposes
61 * facilities for parsing source code into an abstract syntax tree (AST),
62 * loading already-parsed ASTs, traversing the AST, associating
63 * physical source locations with elements within the AST, and other
64 * facilities that support Clang-based development tools.
66 * This C interface to Clang will never provide all of the information
67 * representation stored in Clang's C++ AST, nor should it: the intent is to
68 * maintain an API that is relatively stable from one release to the next,
69 * providing only the basic functionality needed to support development tools.
71 * To avoid namespace pollution, data types are prefixed with "CX" and
72 * functions are prefixed with "clang_".
78 * \brief An "index" that consists of a set of translation units that would
79 * typically be linked together into an executable or library.
81 typedef void *CXIndex
;
84 * \brief A single translation unit, which resides in an index.
86 typedef struct CXTranslationUnitImpl
*CXTranslationUnit
;
89 * \brief Opaque pointer representing client data that will be passed through
90 * to various callbacks and visitors.
92 typedef void *CXClientData
;
95 * \brief Provides the contents of a file that has not yet been saved to disk.
97 * Each CXUnsavedFile instance provides the name of a file on the
98 * system along with the current contents of that file that have not
99 * yet been saved to disk.
101 struct CXUnsavedFile
{
103 * \brief The file whose contents have not yet been saved.
105 * This file must already exist in the file system.
107 const char *Filename
;
110 * \brief A buffer containing the unsaved contents of this file.
112 const char *Contents
;
115 * \brief The length of the unsaved contents of this buffer.
117 unsigned long Length
;
121 * \brief Describes the availability of a particular entity, which indicates
122 * whether the use of this entity will result in a warning or error due to
123 * it being deprecated or unavailable.
125 enum CXAvailabilityKind
{
127 * \brief The entity is available.
129 CXAvailability_Available
,
131 * \brief The entity is available, but has been deprecated (and its use is
134 CXAvailability_Deprecated
,
136 * \brief The entity is not available; any use of it will be an error.
138 CXAvailability_NotAvailable
,
140 * \brief The entity is available, but not accessible; any use of it will be
143 CXAvailability_NotAccessible
147 * \brief Describes a version number of the form major.minor.subminor.
149 typedef struct CXVersion
{
151 * \brief The major version number, e.g., the '10' in '10.7.3'. A negative
152 * value indicates that there is no version number at all.
156 * \brief The minor version number, e.g., the '7' in '10.7.3'. This value
157 * will be negative if no minor version number was provided, e.g., for
162 * \brief The subminor version number, e.g., the '3' in '10.7.3'. This value
163 * will be negative if no minor or subminor version number was provided,
164 * e.g., in version '10' or '10.7'.
170 * \brief Provides a shared context for creating translation units.
172 * It provides two options:
174 * - excludeDeclarationsFromPCH: When non-zero, allows enumeration of "local"
175 * declarations (when loading any new translation units). A "local" declaration
176 * is one that belongs in the translation unit itself and not in a precompiled
177 * header that was used by the translation unit. If zero, all declarations
178 * will be enumerated.
180 * Here is an example:
183 * // excludeDeclsFromPCH = 1, displayDiagnostics=1
184 * Idx = clang_createIndex(1, 1);
186 * // IndexTest.pch was produced with the following command:
187 * // "clang -x c IndexTest.h -emit-ast -o IndexTest.pch"
188 * TU = clang_createTranslationUnit(Idx, "IndexTest.pch");
190 * // This will load all the symbols from 'IndexTest.pch'
191 * clang_visitChildren(clang_getTranslationUnitCursor(TU),
192 * TranslationUnitVisitor, 0);
193 * clang_disposeTranslationUnit(TU);
195 * // This will load all the symbols from 'IndexTest.c', excluding symbols
196 * // from 'IndexTest.pch'.
197 * char *args[] = { "-Xclang", "-include-pch=IndexTest.pch" };
198 * TU = clang_createTranslationUnitFromSourceFile(Idx, "IndexTest.c", 2, args,
200 * clang_visitChildren(clang_getTranslationUnitCursor(TU),
201 * TranslationUnitVisitor, 0);
202 * clang_disposeTranslationUnit(TU);
205 * This process of creating the 'pch', loading it separately, and using it (via
206 * -include-pch) allows 'excludeDeclsFromPCH' to remove redundant callbacks
207 * (which gives the indexer the same performance benefit as the compiler).
209 CINDEX_LINKAGE CXIndex
clang_createIndex(int excludeDeclarationsFromPCH
,
210 int displayDiagnostics
);
213 * \brief Destroy the given index.
215 * The index must not be destroyed until all of the translation units created
216 * within that index have been destroyed.
218 CINDEX_LINKAGE
void clang_disposeIndex(CXIndex index
);
222 * \brief Used to indicate that no special CXIndex options are needed.
224 CXGlobalOpt_None
= 0x0,
227 * \brief Used to indicate that threads that libclang creates for indexing
228 * purposes should use background priority.
230 * Affects #clang_indexSourceFile, #clang_indexTranslationUnit,
231 * #clang_parseTranslationUnit, #clang_saveTranslationUnit.
233 CXGlobalOpt_ThreadBackgroundPriorityForIndexing
= 0x1,
236 * \brief Used to indicate that threads that libclang creates for editing
237 * purposes should use background priority.
239 * Affects #clang_reparseTranslationUnit, #clang_codeCompleteAt,
240 * #clang_annotateTokens
242 CXGlobalOpt_ThreadBackgroundPriorityForEditing
= 0x2,
245 * \brief Used to indicate that all threads that libclang creates should use
246 * background priority.
248 CXGlobalOpt_ThreadBackgroundPriorityForAll
=
249 CXGlobalOpt_ThreadBackgroundPriorityForIndexing
|
250 CXGlobalOpt_ThreadBackgroundPriorityForEditing
255 * \brief Sets general options associated with a CXIndex.
260 * clang_CXIndex_setGlobalOptions(idx,
261 * clang_CXIndex_getGlobalOptions(idx) |
262 * CXGlobalOpt_ThreadBackgroundPriorityForIndexing);
265 * \param options A bitmask of options, a bitwise OR of CXGlobalOpt_XXX flags.
267 CINDEX_LINKAGE
void clang_CXIndex_setGlobalOptions(CXIndex
, unsigned options
);
270 * \brief Gets the general options associated with a CXIndex.
272 * \returns A bitmask of options, a bitwise OR of CXGlobalOpt_XXX flags that
273 * are associated with the given CXIndex object.
275 CINDEX_LINKAGE
unsigned clang_CXIndex_getGlobalOptions(CXIndex
);
278 * \defgroup CINDEX_FILES File manipulation routines
284 * \brief A particular source file that is part of a translation unit.
286 typedef void *CXFile
;
289 * \brief Retrieve the complete file and path name of the given file.
291 CINDEX_LINKAGE CXString
clang_getFileName(CXFile SFile
);
294 * \brief Retrieve the last modification time of the given file.
296 CINDEX_LINKAGE
time_t clang_getFileTime(CXFile SFile
);
299 * \brief Uniquely identifies a CXFile, that refers to the same underlying file,
300 * across an indexing session.
303 unsigned long long data
[3];
307 * \brief Retrieve the unique ID for the given \c file.
309 * \param file the file to get the ID for.
310 * \param outID stores the returned CXFileUniqueID.
311 * \returns If there was a failure getting the unique ID, returns non-zero,
312 * otherwise returns 0.
314 CINDEX_LINKAGE
int clang_getFileUniqueID(CXFile file
, CXFileUniqueID
*outID
);
317 * \brief Determine whether the given header is guarded against
318 * multiple inclusions, either with the conventional
319 * \#ifndef/\#define/\#endif macro guards or with \#pragma once.
321 CINDEX_LINKAGE
unsigned
322 clang_isFileMultipleIncludeGuarded(CXTranslationUnit tu
, CXFile file
);
325 * \brief Retrieve a file handle within the given translation unit.
327 * \param tu the translation unit
329 * \param file_name the name of the file.
331 * \returns the file handle for the named file in the translation unit \p tu,
332 * or a NULL file handle if the file was not a part of this translation unit.
334 CINDEX_LINKAGE CXFile
clang_getFile(CXTranslationUnit tu
,
335 const char *file_name
);
338 * \brief Returns non-zero if the \c file1 and \c file2 point to the same file,
339 * or they are both NULL.
341 CINDEX_LINKAGE
int clang_File_isEqual(CXFile file1
, CXFile file2
);
348 * \defgroup CINDEX_LOCATIONS Physical source locations
350 * Clang represents physical source locations in its abstract syntax tree in
351 * great detail, with file, line, and column information for the majority of
352 * the tokens parsed in the source code. These data types and functions are
353 * used to represent source location information, either for a particular
354 * point in the program or for a range of points in the program, and extract
355 * specific location information from those data types.
361 * \brief Identifies a specific source location within a translation
364 * Use clang_getExpansionLocation() or clang_getSpellingLocation()
365 * to map a source location to a particular file, line, and column.
368 const void *ptr_data
[2];
373 * \brief Identifies a half-open character range in the source code.
375 * Use clang_getRangeStart() and clang_getRangeEnd() to retrieve the
376 * starting and end locations from a source range, respectively.
379 const void *ptr_data
[2];
380 unsigned begin_int_data
;
381 unsigned end_int_data
;
385 * \brief Retrieve a NULL (invalid) source location.
387 CINDEX_LINKAGE CXSourceLocation
clang_getNullLocation(void);
390 * \brief Determine whether two source locations, which must refer into
391 * the same translation unit, refer to exactly the same point in the source
394 * \returns non-zero if the source locations refer to the same location, zero
395 * if they refer to different locations.
397 CINDEX_LINKAGE
unsigned clang_equalLocations(CXSourceLocation loc1
,
398 CXSourceLocation loc2
);
401 * \brief Retrieves the source location associated with a given file/line/column
402 * in a particular translation unit.
404 CINDEX_LINKAGE CXSourceLocation
clang_getLocation(CXTranslationUnit tu
,
409 * \brief Retrieves the source location associated with a given character offset
410 * in a particular translation unit.
412 CINDEX_LINKAGE CXSourceLocation
clang_getLocationForOffset(CXTranslationUnit tu
,
417 * \brief Returns non-zero if the given source location is in a system header.
419 CINDEX_LINKAGE
int clang_Location_isInSystemHeader(CXSourceLocation location
);
422 * \brief Returns non-zero if the given source location is in the main file of
423 * the corresponding translation unit.
425 CINDEX_LINKAGE
int clang_Location_isFromMainFile(CXSourceLocation location
);
428 * \brief Retrieve a NULL (invalid) source range.
430 CINDEX_LINKAGE CXSourceRange
clang_getNullRange(void);
433 * \brief Retrieve a source range given the beginning and ending source
436 CINDEX_LINKAGE CXSourceRange
clang_getRange(CXSourceLocation begin
,
437 CXSourceLocation end
);
440 * \brief Determine whether two ranges are equivalent.
442 * \returns non-zero if the ranges are the same, zero if they differ.
444 CINDEX_LINKAGE
unsigned clang_equalRanges(CXSourceRange range1
,
445 CXSourceRange range2
);
448 * \brief Returns non-zero if \p range is null.
450 CINDEX_LINKAGE
int clang_Range_isNull(CXSourceRange range
);
453 * \brief Retrieve the file, line, column, and offset represented by
454 * the given source location.
456 * If the location refers into a macro expansion, retrieves the
457 * location of the macro expansion.
459 * \param location the location within a source file that will be decomposed
462 * \param file [out] if non-NULL, will be set to the file to which the given
463 * source location points.
465 * \param line [out] if non-NULL, will be set to the line to which the given
466 * source location points.
468 * \param column [out] if non-NULL, will be set to the column to which the given
469 * source location points.
471 * \param offset [out] if non-NULL, will be set to the offset into the
472 * buffer to which the given source location points.
474 CINDEX_LINKAGE
void clang_getExpansionLocation(CXSourceLocation location
,
481 * \brief Retrieve the file, line, column, and offset represented by
482 * the given source location, as specified in a # line directive.
484 * Example: given the following source code in a file somefile.c
489 * static int func(void)
495 * the location information returned by this function would be
497 * File: dummy.c Line: 124 Column: 12
499 * whereas clang_getExpansionLocation would have returned
501 * File: somefile.c Line: 3 Column: 12
503 * \param location the location within a source file that will be decomposed
506 * \param filename [out] if non-NULL, will be set to the filename of the
507 * source location. Note that filenames returned will be for "virtual" files,
508 * which don't necessarily exist on the machine running clang - e.g. when
509 * parsing preprocessed output obtained from a different environment. If
510 * a non-NULL value is passed in, remember to dispose of the returned value
511 * using \c clang_disposeString() once you've finished with it. For an invalid
512 * source location, an empty string is returned.
514 * \param line [out] if non-NULL, will be set to the line number of the
515 * source location. For an invalid source location, zero is returned.
517 * \param column [out] if non-NULL, will be set to the column number of the
518 * source location. For an invalid source location, zero is returned.
520 CINDEX_LINKAGE
void clang_getPresumedLocation(CXSourceLocation location
,
526 * \brief Legacy API to retrieve the file, line, column, and offset represented
527 * by the given source location.
529 * This interface has been replaced by the newer interface
530 * #clang_getExpansionLocation(). See that interface's documentation for
533 CINDEX_LINKAGE
void clang_getInstantiationLocation(CXSourceLocation location
,
540 * \brief Retrieve the file, line, column, and offset represented by
541 * the given source location.
543 * If the location refers into a macro instantiation, return where the
544 * location was originally spelled in the source file.
546 * \param location the location within a source file that will be decomposed
549 * \param file [out] if non-NULL, will be set to the file to which the given
550 * source location points.
552 * \param line [out] if non-NULL, will be set to the line to which the given
553 * source location points.
555 * \param column [out] if non-NULL, will be set to the column to which the given
556 * source location points.
558 * \param offset [out] if non-NULL, will be set to the offset into the
559 * buffer to which the given source location points.
561 CINDEX_LINKAGE
void clang_getSpellingLocation(CXSourceLocation location
,
568 * \brief Retrieve the file, line, column, and offset represented by
569 * the given source location.
571 * If the location refers into a macro expansion, return where the macro was
572 * expanded or where the macro argument was written, if the location points at
575 * \param location the location within a source file that will be decomposed
578 * \param file [out] if non-NULL, will be set to the file to which the given
579 * source location points.
581 * \param line [out] if non-NULL, will be set to the line to which the given
582 * source location points.
584 * \param column [out] if non-NULL, will be set to the column to which the given
585 * source location points.
587 * \param offset [out] if non-NULL, will be set to the offset into the
588 * buffer to which the given source location points.
590 CINDEX_LINKAGE
void clang_getFileLocation(CXSourceLocation location
,
597 * \brief Retrieve a source location representing the first character within a
600 CINDEX_LINKAGE CXSourceLocation
clang_getRangeStart(CXSourceRange range
);
603 * \brief Retrieve a source location representing the last character within a
606 CINDEX_LINKAGE CXSourceLocation
clang_getRangeEnd(CXSourceRange range
);
609 * \brief Identifies an array of ranges.
612 /** \brief The number of ranges in the \c ranges array. */
615 * \brief An array of \c CXSourceRanges.
617 CXSourceRange
*ranges
;
621 * \brief Retrieve all ranges that were skipped by the preprocessor.
623 * The preprocessor will skip lines when they are surrounded by an
624 * if/ifdef/ifndef directive whose condition does not evaluate to true.
626 CINDEX_LINKAGE CXSourceRangeList
*clang_getSkippedRanges(CXTranslationUnit tu
,
630 * \brief Destroy the given \c CXSourceRangeList.
632 CINDEX_LINKAGE
void clang_disposeSourceRangeList(CXSourceRangeList
*ranges
);
639 * \defgroup CINDEX_DIAG Diagnostic reporting
645 * \brief Describes the severity of a particular diagnostic.
647 enum CXDiagnosticSeverity
{
649 * \brief A diagnostic that has been suppressed, e.g., by a command-line
652 CXDiagnostic_Ignored
= 0,
655 * \brief This diagnostic is a note that should be attached to the
656 * previous (non-note) diagnostic.
658 CXDiagnostic_Note
= 1,
661 * \brief This diagnostic indicates suspicious code that may not be
664 CXDiagnostic_Warning
= 2,
667 * \brief This diagnostic indicates that the code is ill-formed.
669 CXDiagnostic_Error
= 3,
672 * \brief This diagnostic indicates that the code is ill-formed such
673 * that future parser recovery is unlikely to produce useful
676 CXDiagnostic_Fatal
= 4
680 * \brief A single diagnostic, containing the diagnostic's severity,
681 * location, text, source ranges, and fix-it hints.
683 typedef void *CXDiagnostic
;
686 * \brief A group of CXDiagnostics.
688 typedef void *CXDiagnosticSet
;
691 * \brief Determine the number of diagnostics in a CXDiagnosticSet.
693 CINDEX_LINKAGE
unsigned clang_getNumDiagnosticsInSet(CXDiagnosticSet Diags
);
696 * \brief Retrieve a diagnostic associated with the given CXDiagnosticSet.
698 * \param Diags the CXDiagnosticSet to query.
699 * \param Index the zero-based diagnostic number to retrieve.
701 * \returns the requested diagnostic. This diagnostic must be freed
702 * via a call to \c clang_disposeDiagnostic().
704 CINDEX_LINKAGE CXDiagnostic
clang_getDiagnosticInSet(CXDiagnosticSet Diags
,
708 * \brief Describes the kind of error that occurred (if any) in a call to
709 * \c clang_loadDiagnostics.
711 enum CXLoadDiag_Error
{
713 * \brief Indicates that no error occurred.
718 * \brief Indicates that an unknown error occurred while attempting to
719 * deserialize diagnostics.
721 CXLoadDiag_Unknown
= 1,
724 * \brief Indicates that the file containing the serialized diagnostics
725 * could not be opened.
727 CXLoadDiag_CannotLoad
= 2,
730 * \brief Indicates that the serialized diagnostics file is invalid or
733 CXLoadDiag_InvalidFile
= 3
737 * \brief Deserialize a set of diagnostics from a Clang diagnostics bitcode
740 * \param file The name of the file to deserialize.
741 * \param error A pointer to a enum value recording if there was a problem
742 * deserializing the diagnostics.
743 * \param errorString A pointer to a CXString for recording the error string
744 * if the file was not successfully loaded.
746 * \returns A loaded CXDiagnosticSet if successful, and NULL otherwise. These
747 * diagnostics should be released using clang_disposeDiagnosticSet().
749 CINDEX_LINKAGE CXDiagnosticSet
clang_loadDiagnostics(const char *file
,
750 enum CXLoadDiag_Error
*error
,
751 CXString
*errorString
);
754 * \brief Release a CXDiagnosticSet and all of its contained diagnostics.
756 CINDEX_LINKAGE
void clang_disposeDiagnosticSet(CXDiagnosticSet Diags
);
759 * \brief Retrieve the child diagnostics of a CXDiagnostic.
761 * This CXDiagnosticSet does not need to be released by
762 * clang_disposeDiagnosticSet.
764 CINDEX_LINKAGE CXDiagnosticSet
clang_getChildDiagnostics(CXDiagnostic D
);
767 * \brief Determine the number of diagnostics produced for the given
770 CINDEX_LINKAGE
unsigned clang_getNumDiagnostics(CXTranslationUnit Unit
);
773 * \brief Retrieve a diagnostic associated with the given translation unit.
775 * \param Unit the translation unit to query.
776 * \param Index the zero-based diagnostic number to retrieve.
778 * \returns the requested diagnostic. This diagnostic must be freed
779 * via a call to \c clang_disposeDiagnostic().
781 CINDEX_LINKAGE CXDiagnostic
clang_getDiagnostic(CXTranslationUnit Unit
,
785 * \brief Retrieve the complete set of diagnostics associated with a
788 * \param Unit the translation unit to query.
790 CINDEX_LINKAGE CXDiagnosticSet
791 clang_getDiagnosticSetFromTU(CXTranslationUnit Unit
);
794 * \brief Destroy a diagnostic.
796 CINDEX_LINKAGE
void clang_disposeDiagnostic(CXDiagnostic Diagnostic
);
799 * \brief Options to control the display of diagnostics.
801 * The values in this enum are meant to be combined to customize the
802 * behavior of \c clang_formatDiagnostic().
804 enum CXDiagnosticDisplayOptions
{
806 * \brief Display the source-location information where the
807 * diagnostic was located.
809 * When set, diagnostics will be prefixed by the file, line, and
810 * (optionally) column to which the diagnostic refers. For example,
813 * test.c:28: warning: extra tokens at end of #endif directive
816 * This option corresponds to the clang flag \c -fshow-source-location.
818 CXDiagnostic_DisplaySourceLocation
= 0x01,
821 * \brief If displaying the source-location information of the
822 * diagnostic, also include the column number.
824 * This option corresponds to the clang flag \c -fshow-column.
826 CXDiagnostic_DisplayColumn
= 0x02,
829 * \brief If displaying the source-location information of the
830 * diagnostic, also include information about source ranges in a
831 * machine-parsable format.
833 * This option corresponds to the clang flag
834 * \c -fdiagnostics-print-source-range-info.
836 CXDiagnostic_DisplaySourceRanges
= 0x04,
839 * \brief Display the option name associated with this diagnostic, if any.
841 * The option name displayed (e.g., -Wconversion) will be placed in brackets
842 * after the diagnostic text. This option corresponds to the clang flag
843 * \c -fdiagnostics-show-option.
845 CXDiagnostic_DisplayOption
= 0x08,
848 * \brief Display the category number associated with this diagnostic, if any.
850 * The category number is displayed within brackets after the diagnostic text.
851 * This option corresponds to the clang flag
852 * \c -fdiagnostics-show-category=id.
854 CXDiagnostic_DisplayCategoryId
= 0x10,
857 * \brief Display the category name associated with this diagnostic, if any.
859 * The category name is displayed within brackets after the diagnostic text.
860 * This option corresponds to the clang flag
861 * \c -fdiagnostics-show-category=name.
863 CXDiagnostic_DisplayCategoryName
= 0x20
867 * \brief Format the given diagnostic in a manner that is suitable for display.
869 * This routine will format the given diagnostic to a string, rendering
870 * the diagnostic according to the various options given. The
871 * \c clang_defaultDiagnosticDisplayOptions() function returns the set of
872 * options that most closely mimics the behavior of the clang compiler.
874 * \param Diagnostic The diagnostic to print.
876 * \param Options A set of options that control the diagnostic display,
877 * created by combining \c CXDiagnosticDisplayOptions values.
879 * \returns A new string containing for formatted diagnostic.
881 CINDEX_LINKAGE CXString
clang_formatDiagnostic(CXDiagnostic Diagnostic
,
885 * \brief Retrieve the set of display options most similar to the
886 * default behavior of the clang compiler.
888 * \returns A set of display options suitable for use with \c
889 * clang_formatDiagnostic().
891 CINDEX_LINKAGE
unsigned clang_defaultDiagnosticDisplayOptions(void);
894 * \brief Determine the severity of the given diagnostic.
896 CINDEX_LINKAGE
enum CXDiagnosticSeverity
897 clang_getDiagnosticSeverity(CXDiagnostic
);
900 * \brief Retrieve the source location of the given diagnostic.
902 * This location is where Clang would print the caret ('^') when
903 * displaying the diagnostic on the command line.
905 CINDEX_LINKAGE CXSourceLocation
clang_getDiagnosticLocation(CXDiagnostic
);
908 * \brief Retrieve the text of the given diagnostic.
910 CINDEX_LINKAGE CXString
clang_getDiagnosticSpelling(CXDiagnostic
);
913 * \brief Retrieve the name of the command-line option that enabled this
916 * \param Diag The diagnostic to be queried.
918 * \param Disable If non-NULL, will be set to the option that disables this
919 * diagnostic (if any).
921 * \returns A string that contains the command-line option used to enable this
922 * warning, such as "-Wconversion" or "-pedantic".
924 CINDEX_LINKAGE CXString
clang_getDiagnosticOption(CXDiagnostic Diag
,
928 * \brief Retrieve the category number for this diagnostic.
930 * Diagnostics can be categorized into groups along with other, related
931 * diagnostics (e.g., diagnostics under the same warning flag). This routine
932 * retrieves the category number for the given diagnostic.
934 * \returns The number of the category that contains this diagnostic, or zero
935 * if this diagnostic is uncategorized.
937 CINDEX_LINKAGE
unsigned clang_getDiagnosticCategory(CXDiagnostic
);
940 * \brief Retrieve the name of a particular diagnostic category. This
941 * is now deprecated. Use clang_getDiagnosticCategoryText()
944 * \param Category A diagnostic category number, as returned by
945 * \c clang_getDiagnosticCategory().
947 * \returns The name of the given diagnostic category.
949 CINDEX_DEPRECATED CINDEX_LINKAGE
950 CXString
clang_getDiagnosticCategoryName(unsigned Category
);
953 * \brief Retrieve the diagnostic category text for a given diagnostic.
955 * \returns The text of the given diagnostic category.
957 CINDEX_LINKAGE CXString
clang_getDiagnosticCategoryText(CXDiagnostic
);
960 * \brief Determine the number of source ranges associated with the given
963 CINDEX_LINKAGE
unsigned clang_getDiagnosticNumRanges(CXDiagnostic
);
966 * \brief Retrieve a source range associated with the diagnostic.
968 * A diagnostic's source ranges highlight important elements in the source
969 * code. On the command line, Clang displays source ranges by
970 * underlining them with '~' characters.
972 * \param Diagnostic the diagnostic whose range is being extracted.
974 * \param Range the zero-based index specifying which range to
976 * \returns the requested source range.
978 CINDEX_LINKAGE CXSourceRange
clang_getDiagnosticRange(CXDiagnostic Diagnostic
,
982 * \brief Determine the number of fix-it hints associated with the
985 CINDEX_LINKAGE
unsigned clang_getDiagnosticNumFixIts(CXDiagnostic Diagnostic
);
988 * \brief Retrieve the replacement information for a given fix-it.
990 * Fix-its are described in terms of a source range whose contents
991 * should be replaced by a string. This approach generalizes over
992 * three kinds of operations: removal of source code (the range covers
993 * the code to be removed and the replacement string is empty),
994 * replacement of source code (the range covers the code to be
995 * replaced and the replacement string provides the new code), and
996 * insertion (both the start and end of the range point at the
997 * insertion location, and the replacement string provides the text to
1000 * \param Diagnostic The diagnostic whose fix-its are being queried.
1002 * \param FixIt The zero-based index of the fix-it.
1004 * \param ReplacementRange The source range whose contents will be
1005 * replaced with the returned replacement string. Note that source
1006 * ranges are half-open ranges [a, b), so the source code should be
1007 * replaced from a and up to (but not including) b.
1009 * \returns A string containing text that should be replace the source
1010 * code indicated by the \c ReplacementRange.
1012 CINDEX_LINKAGE CXString
clang_getDiagnosticFixIt(CXDiagnostic Diagnostic
,
1014 CXSourceRange
*ReplacementRange
);
1021 * \defgroup CINDEX_TRANSLATION_UNIT Translation unit manipulation
1023 * The routines in this group provide the ability to create and destroy
1024 * translation units from files, either by parsing the contents of the files or
1025 * by reading in a serialized representation of a translation unit.
1031 * \brief Get the original translation unit source file name.
1033 CINDEX_LINKAGE CXString
1034 clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit
);
1037 * \brief Return the CXTranslationUnit for a given source file and the provided
1038 * command line arguments one would pass to the compiler.
1040 * Note: The 'source_filename' argument is optional. If the caller provides a
1041 * NULL pointer, the name of the source file is expected to reside in the
1042 * specified command line arguments.
1044 * Note: When encountered in 'clang_command_line_args', the following options
1050 * '-o \<output file>' (both '-o' and '\<output file>' are ignored)
1052 * \param CIdx The index object with which the translation unit will be
1055 * \param source_filename The name of the source file to load, or NULL if the
1056 * source file is included in \p clang_command_line_args.
1058 * \param num_clang_command_line_args The number of command-line arguments in
1059 * \p clang_command_line_args.
1061 * \param clang_command_line_args The command-line arguments that would be
1062 * passed to the \c clang executable if it were being invoked out-of-process.
1063 * These command-line options will be parsed and will affect how the translation
1064 * unit is parsed. Note that the following options are ignored: '-c',
1065 * '-emit-ast', '-fsyntax-only' (which is the default), and '-o \<output file>'.
1067 * \param num_unsaved_files the number of unsaved file entries in \p
1070 * \param unsaved_files the files that have not yet been saved to disk
1071 * but may be required for code completion, including the contents of
1072 * those files. The contents and name of these files (as specified by
1073 * CXUnsavedFile) are copied when necessary, so the client only needs to
1074 * guarantee their validity until the call to this function returns.
1076 CINDEX_LINKAGE CXTranslationUnit
clang_createTranslationUnitFromSourceFile(
1078 const char *source_filename
,
1079 int num_clang_command_line_args
,
1080 const char * const *clang_command_line_args
,
1081 unsigned num_unsaved_files
,
1082 struct CXUnsavedFile
*unsaved_files
);
1085 * \brief Same as \c clang_createTranslationUnit2, but returns
1086 * the \c CXTranslationUnit instead of an error code. In case of an error this
1087 * routine returns a \c NULL \c CXTranslationUnit, without further detailed
1090 CINDEX_LINKAGE CXTranslationUnit
clang_createTranslationUnit(
1092 const char *ast_filename
);
1095 * \brief Create a translation unit from an AST file (\c -emit-ast).
1097 * \param[out] out_TU A non-NULL pointer to store the created
1098 * \c CXTranslationUnit.
1100 * \returns Zero on success, otherwise returns an error code.
1102 CINDEX_LINKAGE
enum CXErrorCode
clang_createTranslationUnit2(
1104 const char *ast_filename
,
1105 CXTranslationUnit
*out_TU
);
1108 * \brief Flags that control the creation of translation units.
1110 * The enumerators in this enumeration type are meant to be bitwise
1111 * ORed together to specify which options should be used when
1112 * constructing the translation unit.
1114 enum CXTranslationUnit_Flags
{
1116 * \brief Used to indicate that no special translation-unit options are
1119 CXTranslationUnit_None
= 0x0,
1122 * \brief Used to indicate that the parser should construct a "detailed"
1123 * preprocessing record, including all macro definitions and instantiations.
1125 * Constructing a detailed preprocessing record requires more memory
1126 * and time to parse, since the information contained in the record
1127 * is usually not retained. However, it can be useful for
1128 * applications that require more detailed information about the
1129 * behavior of the preprocessor.
1131 CXTranslationUnit_DetailedPreprocessingRecord
= 0x01,
1134 * \brief Used to indicate that the translation unit is incomplete.
1136 * When a translation unit is considered "incomplete", semantic
1137 * analysis that is typically performed at the end of the
1138 * translation unit will be suppressed. For example, this suppresses
1139 * the completion of tentative declarations in C and of
1140 * instantiation of implicitly-instantiation function templates in
1141 * C++. This option is typically used when parsing a header with the
1142 * intent of producing a precompiled header.
1144 CXTranslationUnit_Incomplete
= 0x02,
1147 * \brief Used to indicate that the translation unit should be built with an
1148 * implicit precompiled header for the preamble.
1150 * An implicit precompiled header is used as an optimization when a
1151 * particular translation unit is likely to be reparsed many times
1152 * when the sources aren't changing that often. In this case, an
1153 * implicit precompiled header will be built containing all of the
1154 * initial includes at the top of the main file (what we refer to as
1155 * the "preamble" of the file). In subsequent parses, if the
1156 * preamble or the files in it have not changed, \c
1157 * clang_reparseTranslationUnit() will re-use the implicit
1158 * precompiled header to improve parsing performance.
1160 CXTranslationUnit_PrecompiledPreamble
= 0x04,
1163 * \brief Used to indicate that the translation unit should cache some
1164 * code-completion results with each reparse of the source file.
1166 * Caching of code-completion results is a performance optimization that
1167 * introduces some overhead to reparsing but improves the performance of
1168 * code-completion operations.
1170 CXTranslationUnit_CacheCompletionResults
= 0x08,
1173 * \brief Used to indicate that the translation unit will be serialized with
1174 * \c clang_saveTranslationUnit.
1176 * This option is typically used when parsing a header with the intent of
1177 * producing a precompiled header.
1179 CXTranslationUnit_ForSerialization
= 0x10,
1182 * \brief DEPRECATED: Enabled chained precompiled preambles in C++.
1184 * Note: this is a *temporary* option that is available only while
1185 * we are testing C++ precompiled preamble support. It is deprecated.
1187 CXTranslationUnit_CXXChainedPCH
= 0x20,
1190 * \brief Used to indicate that function/method bodies should be skipped while
1193 * This option can be used to search for declarations/definitions while
1194 * ignoring the usages.
1196 CXTranslationUnit_SkipFunctionBodies
= 0x40,
1199 * \brief Used to indicate that brief documentation comments should be
1200 * included into the set of code completions returned from this translation
1203 CXTranslationUnit_IncludeBriefCommentsInCodeCompletion
= 0x80,
1206 * \brief Used to indicate that the precompiled preamble should be created on
1207 * the first parse. Otherwise it will be created on the first reparse. This
1208 * trades runtime on the first parse (serializing the preamble takes time) for
1209 * reduced runtime on the second parse (can now reuse the preamble).
1211 CXTranslationUnit_CreatePreambleOnFirstParse
= 0x100
1215 * \brief Returns the set of flags that is suitable for parsing a translation
1216 * unit that is being edited.
1218 * The set of flags returned provide options for \c clang_parseTranslationUnit()
1219 * to indicate that the translation unit is likely to be reparsed many times,
1220 * either explicitly (via \c clang_reparseTranslationUnit()) or implicitly
1221 * (e.g., by code completion (\c clang_codeCompletionAt())). The returned flag
1222 * set contains an unspecified set of optimizations (e.g., the precompiled
1223 * preamble) geared toward improving the performance of these routines. The
1224 * set of optimizations enabled may change from one version to the next.
1226 CINDEX_LINKAGE
unsigned clang_defaultEditingTranslationUnitOptions(void);
1229 * \brief Same as \c clang_parseTranslationUnit2, but returns
1230 * the \c CXTranslationUnit instead of an error code. In case of an error this
1231 * routine returns a \c NULL \c CXTranslationUnit, without further detailed
1234 CINDEX_LINKAGE CXTranslationUnit
1235 clang_parseTranslationUnit(CXIndex CIdx
,
1236 const char *source_filename
,
1237 const char *const *command_line_args
,
1238 int num_command_line_args
,
1239 struct CXUnsavedFile
*unsaved_files
,
1240 unsigned num_unsaved_files
,
1244 * \brief Parse the given source file and the translation unit corresponding
1247 * This routine is the main entry point for the Clang C API, providing the
1248 * ability to parse a source file into a translation unit that can then be
1249 * queried by other functions in the API. This routine accepts a set of
1250 * command-line arguments so that the compilation can be configured in the same
1251 * way that the compiler is configured on the command line.
1253 * \param CIdx The index object with which the translation unit will be
1256 * \param source_filename The name of the source file to load, or NULL if the
1257 * source file is included in \c command_line_args.
1259 * \param command_line_args The command-line arguments that would be
1260 * passed to the \c clang executable if it were being invoked out-of-process.
1261 * These command-line options will be parsed and will affect how the translation
1262 * unit is parsed. Note that the following options are ignored: '-c',
1263 * '-emit-ast', '-fsyntax-only' (which is the default), and '-o \<output file>'.
1265 * \param num_command_line_args The number of command-line arguments in
1266 * \c command_line_args.
1268 * \param unsaved_files the files that have not yet been saved to disk
1269 * but may be required for parsing, including the contents of
1270 * those files. The contents and name of these files (as specified by
1271 * CXUnsavedFile) are copied when necessary, so the client only needs to
1272 * guarantee their validity until the call to this function returns.
1274 * \param num_unsaved_files the number of unsaved file entries in \p
1277 * \param options A bitmask of options that affects how the translation unit
1278 * is managed but not its compilation. This should be a bitwise OR of the
1279 * CXTranslationUnit_XXX flags.
1281 * \param[out] out_TU A non-NULL pointer to store the created
1282 * \c CXTranslationUnit, describing the parsed code and containing any
1283 * diagnostics produced by the compiler.
1285 * \returns Zero on success, otherwise returns an error code.
1287 CINDEX_LINKAGE
enum CXErrorCode
1288 clang_parseTranslationUnit2(CXIndex CIdx
,
1289 const char *source_filename
,
1290 const char *const *command_line_args
,
1291 int num_command_line_args
,
1292 struct CXUnsavedFile
*unsaved_files
,
1293 unsigned num_unsaved_files
,
1295 CXTranslationUnit
*out_TU
);
1298 * \brief Same as clang_parseTranslationUnit2 but requires a full command line
1299 * for \c command_line_args including argv[0]. This is useful if the standard
1300 * library paths are relative to the binary.
1302 CINDEX_LINKAGE
enum CXErrorCode
clang_parseTranslationUnit2FullArgv(
1303 CXIndex CIdx
, const char *source_filename
,
1304 const char *const *command_line_args
, int num_command_line_args
,
1305 struct CXUnsavedFile
*unsaved_files
, unsigned num_unsaved_files
,
1306 unsigned options
, CXTranslationUnit
*out_TU
);
1309 * \brief Flags that control how translation units are saved.
1311 * The enumerators in this enumeration type are meant to be bitwise
1312 * ORed together to specify which options should be used when
1313 * saving the translation unit.
1315 enum CXSaveTranslationUnit_Flags
{
1317 * \brief Used to indicate that no special saving options are needed.
1319 CXSaveTranslationUnit_None
= 0x0
1323 * \brief Returns the set of flags that is suitable for saving a translation
1326 * The set of flags returned provide options for
1327 * \c clang_saveTranslationUnit() by default. The returned flag
1328 * set contains an unspecified set of options that save translation units with
1329 * the most commonly-requested data.
1331 CINDEX_LINKAGE
unsigned clang_defaultSaveOptions(CXTranslationUnit TU
);
1334 * \brief Describes the kind of error that occurred (if any) in a call to
1335 * \c clang_saveTranslationUnit().
1339 * \brief Indicates that no error occurred while saving a translation unit.
1341 CXSaveError_None
= 0,
1344 * \brief Indicates that an unknown error occurred while attempting to save
1347 * This error typically indicates that file I/O failed when attempting to
1350 CXSaveError_Unknown
= 1,
1353 * \brief Indicates that errors during translation prevented this attempt
1354 * to save the translation unit.
1356 * Errors that prevent the translation unit from being saved can be
1357 * extracted using \c clang_getNumDiagnostics() and \c clang_getDiagnostic().
1359 CXSaveError_TranslationErrors
= 2,
1362 * \brief Indicates that the translation unit to be saved was somehow
1363 * invalid (e.g., NULL).
1365 CXSaveError_InvalidTU
= 3
1369 * \brief Saves a translation unit into a serialized representation of
1370 * that translation unit on disk.
1372 * Any translation unit that was parsed without error can be saved
1373 * into a file. The translation unit can then be deserialized into a
1374 * new \c CXTranslationUnit with \c clang_createTranslationUnit() or,
1375 * if it is an incomplete translation unit that corresponds to a
1376 * header, used as a precompiled header when parsing other translation
1379 * \param TU The translation unit to save.
1381 * \param FileName The file to which the translation unit will be saved.
1383 * \param options A bitmask of options that affects how the translation unit
1384 * is saved. This should be a bitwise OR of the
1385 * CXSaveTranslationUnit_XXX flags.
1387 * \returns A value that will match one of the enumerators of the CXSaveError
1388 * enumeration. Zero (CXSaveError_None) indicates that the translation unit was
1389 * saved successfully, while a non-zero value indicates that a problem occurred.
1391 CINDEX_LINKAGE
int clang_saveTranslationUnit(CXTranslationUnit TU
,
1392 const char *FileName
,
1396 * \brief Destroy the specified CXTranslationUnit object.
1398 CINDEX_LINKAGE
void clang_disposeTranslationUnit(CXTranslationUnit
);
1401 * \brief Flags that control the reparsing of translation units.
1403 * The enumerators in this enumeration type are meant to be bitwise
1404 * ORed together to specify which options should be used when
1405 * reparsing the translation unit.
1407 enum CXReparse_Flags
{
1409 * \brief Used to indicate that no special reparsing options are needed.
1411 CXReparse_None
= 0x0
1415 * \brief Returns the set of flags that is suitable for reparsing a translation
1418 * The set of flags returned provide options for
1419 * \c clang_reparseTranslationUnit() by default. The returned flag
1420 * set contains an unspecified set of optimizations geared toward common uses
1421 * of reparsing. The set of optimizations enabled may change from one version
1424 CINDEX_LINKAGE
unsigned clang_defaultReparseOptions(CXTranslationUnit TU
);
1427 * \brief Reparse the source files that produced this translation unit.
1429 * This routine can be used to re-parse the source files that originally
1430 * created the given translation unit, for example because those source files
1431 * have changed (either on disk or as passed via \p unsaved_files). The
1432 * source code will be reparsed with the same command-line options as it
1433 * was originally parsed.
1435 * Reparsing a translation unit invalidates all cursors and source locations
1436 * that refer into that translation unit. This makes reparsing a translation
1437 * unit semantically equivalent to destroying the translation unit and then
1438 * creating a new translation unit with the same command-line arguments.
1439 * However, it may be more efficient to reparse a translation
1440 * unit using this routine.
1442 * \param TU The translation unit whose contents will be re-parsed. The
1443 * translation unit must originally have been built with
1444 * \c clang_createTranslationUnitFromSourceFile().
1446 * \param num_unsaved_files The number of unsaved file entries in \p
1449 * \param unsaved_files The files that have not yet been saved to disk
1450 * but may be required for parsing, including the contents of
1451 * those files. The contents and name of these files (as specified by
1452 * CXUnsavedFile) are copied when necessary, so the client only needs to
1453 * guarantee their validity until the call to this function returns.
1455 * \param options A bitset of options composed of the flags in CXReparse_Flags.
1456 * The function \c clang_defaultReparseOptions() produces a default set of
1457 * options recommended for most uses, based on the translation unit.
1459 * \returns 0 if the sources could be reparsed. A non-zero error code will be
1460 * returned if reparsing was impossible, such that the translation unit is
1461 * invalid. In such cases, the only valid call for \c TU is
1462 * \c clang_disposeTranslationUnit(TU). The error codes returned by this
1463 * routine are described by the \c CXErrorCode enum.
1465 CINDEX_LINKAGE
int clang_reparseTranslationUnit(CXTranslationUnit TU
,
1466 unsigned num_unsaved_files
,
1467 struct CXUnsavedFile
*unsaved_files
,
1471 * \brief Categorizes how memory is being used by a translation unit.
1473 enum CXTUResourceUsageKind
{
1474 CXTUResourceUsage_AST
= 1,
1475 CXTUResourceUsage_Identifiers
= 2,
1476 CXTUResourceUsage_Selectors
= 3,
1477 CXTUResourceUsage_GlobalCompletionResults
= 4,
1478 CXTUResourceUsage_SourceManagerContentCache
= 5,
1479 CXTUResourceUsage_AST_SideTables
= 6,
1480 CXTUResourceUsage_SourceManager_Membuffer_Malloc
= 7,
1481 CXTUResourceUsage_SourceManager_Membuffer_MMap
= 8,
1482 CXTUResourceUsage_ExternalASTSource_Membuffer_Malloc
= 9,
1483 CXTUResourceUsage_ExternalASTSource_Membuffer_MMap
= 10,
1484 CXTUResourceUsage_Preprocessor
= 11,
1485 CXTUResourceUsage_PreprocessingRecord
= 12,
1486 CXTUResourceUsage_SourceManager_DataStructures
= 13,
1487 CXTUResourceUsage_Preprocessor_HeaderSearch
= 14,
1488 CXTUResourceUsage_MEMORY_IN_BYTES_BEGIN
= CXTUResourceUsage_AST
,
1489 CXTUResourceUsage_MEMORY_IN_BYTES_END
=
1490 CXTUResourceUsage_Preprocessor_HeaderSearch
,
1492 CXTUResourceUsage_First
= CXTUResourceUsage_AST
,
1493 CXTUResourceUsage_Last
= CXTUResourceUsage_Preprocessor_HeaderSearch
1497 * \brief Returns the human-readable null-terminated C string that represents
1498 * the name of the memory category. This string should never be freed.
1501 const char *clang_getTUResourceUsageName(enum CXTUResourceUsageKind kind
);
1503 typedef struct CXTUResourceUsageEntry
{
1504 /* \brief The memory usage category. */
1505 enum CXTUResourceUsageKind kind
;
1506 /* \brief Amount of resources used.
1507 The units will depend on the resource kind. */
1508 unsigned long amount
;
1509 } CXTUResourceUsageEntry
;
1512 * \brief The memory usage of a CXTranslationUnit, broken into categories.
1514 typedef struct CXTUResourceUsage
{
1515 /* \brief Private data member, used for queries. */
1518 /* \brief The number of entries in the 'entries' array. */
1519 unsigned numEntries
;
1521 /* \brief An array of key-value pairs, representing the breakdown of memory
1523 CXTUResourceUsageEntry
*entries
;
1525 } CXTUResourceUsage
;
1528 * \brief Return the memory usage of a translation unit. This object
1529 * should be released with clang_disposeCXTUResourceUsage().
1531 CINDEX_LINKAGE CXTUResourceUsage
clang_getCXTUResourceUsage(CXTranslationUnit TU
);
1533 CINDEX_LINKAGE
void clang_disposeCXTUResourceUsage(CXTUResourceUsage usage
);
1540 * \brief Describes the kind of entity that a cursor refers to.
1545 * \brief A declaration whose specific kind is not exposed via this
1548 * Unexposed declarations have the same operations as any other kind
1549 * of declaration; one can extract their location information,
1550 * spelling, find their definitions, etc. However, the specific kind
1551 * of the declaration is not reported.
1553 CXCursor_UnexposedDecl
= 1,
1554 /** \brief A C or C++ struct. */
1555 CXCursor_StructDecl
= 2,
1556 /** \brief A C or C++ union. */
1557 CXCursor_UnionDecl
= 3,
1558 /** \brief A C++ class. */
1559 CXCursor_ClassDecl
= 4,
1560 /** \brief An enumeration. */
1561 CXCursor_EnumDecl
= 5,
1563 * \brief A field (in C) or non-static data member (in C++) in a
1564 * struct, union, or C++ class.
1566 CXCursor_FieldDecl
= 6,
1567 /** \brief An enumerator constant. */
1568 CXCursor_EnumConstantDecl
= 7,
1569 /** \brief A function. */
1570 CXCursor_FunctionDecl
= 8,
1571 /** \brief A variable. */
1572 CXCursor_VarDecl
= 9,
1573 /** \brief A function or method parameter. */
1574 CXCursor_ParmDecl
= 10,
1575 /** \brief An Objective-C \@interface. */
1576 CXCursor_ObjCInterfaceDecl
= 11,
1577 /** \brief An Objective-C \@interface for a category. */
1578 CXCursor_ObjCCategoryDecl
= 12,
1579 /** \brief An Objective-C \@protocol declaration. */
1580 CXCursor_ObjCProtocolDecl
= 13,
1581 /** \brief An Objective-C \@property declaration. */
1582 CXCursor_ObjCPropertyDecl
= 14,
1583 /** \brief An Objective-C instance variable. */
1584 CXCursor_ObjCIvarDecl
= 15,
1585 /** \brief An Objective-C instance method. */
1586 CXCursor_ObjCInstanceMethodDecl
= 16,
1587 /** \brief An Objective-C class method. */
1588 CXCursor_ObjCClassMethodDecl
= 17,
1589 /** \brief An Objective-C \@implementation. */
1590 CXCursor_ObjCImplementationDecl
= 18,
1591 /** \brief An Objective-C \@implementation for a category. */
1592 CXCursor_ObjCCategoryImplDecl
= 19,
1593 /** \brief A typedef. */
1594 CXCursor_TypedefDecl
= 20,
1595 /** \brief A C++ class method. */
1596 CXCursor_CXXMethod
= 21,
1597 /** \brief A C++ namespace. */
1598 CXCursor_Namespace
= 22,
1599 /** \brief A linkage specification, e.g. 'extern "C"'. */
1600 CXCursor_LinkageSpec
= 23,
1601 /** \brief A C++ constructor. */
1602 CXCursor_Constructor
= 24,
1603 /** \brief A C++ destructor. */
1604 CXCursor_Destructor
= 25,
1605 /** \brief A C++ conversion function. */
1606 CXCursor_ConversionFunction
= 26,
1607 /** \brief A C++ template type parameter. */
1608 CXCursor_TemplateTypeParameter
= 27,
1609 /** \brief A C++ non-type template parameter. */
1610 CXCursor_NonTypeTemplateParameter
= 28,
1611 /** \brief A C++ template template parameter. */
1612 CXCursor_TemplateTemplateParameter
= 29,
1613 /** \brief A C++ function template. */
1614 CXCursor_FunctionTemplate
= 30,
1615 /** \brief A C++ class template. */
1616 CXCursor_ClassTemplate
= 31,
1617 /** \brief A C++ class template partial specialization. */
1618 CXCursor_ClassTemplatePartialSpecialization
= 32,
1619 /** \brief A C++ namespace alias declaration. */
1620 CXCursor_NamespaceAlias
= 33,
1621 /** \brief A C++ using directive. */
1622 CXCursor_UsingDirective
= 34,
1623 /** \brief A C++ using declaration. */
1624 CXCursor_UsingDeclaration
= 35,
1625 /** \brief A C++ alias declaration */
1626 CXCursor_TypeAliasDecl
= 36,
1627 /** \brief An Objective-C \@synthesize definition. */
1628 CXCursor_ObjCSynthesizeDecl
= 37,
1629 /** \brief An Objective-C \@dynamic definition. */
1630 CXCursor_ObjCDynamicDecl
= 38,
1631 /** \brief An access specifier. */
1632 CXCursor_CXXAccessSpecifier
= 39,
1634 CXCursor_FirstDecl
= CXCursor_UnexposedDecl
,
1635 CXCursor_LastDecl
= CXCursor_CXXAccessSpecifier
,
1638 CXCursor_FirstRef
= 40, /* Decl references */
1639 CXCursor_ObjCSuperClassRef
= 40,
1640 CXCursor_ObjCProtocolRef
= 41,
1641 CXCursor_ObjCClassRef
= 42,
1643 * \brief A reference to a type declaration.
1645 * A type reference occurs anywhere where a type is named but not
1646 * declared. For example, given:
1649 * typedef unsigned size_type;
1653 * The typedef is a declaration of size_type (CXCursor_TypedefDecl),
1654 * while the type of the variable "size" is referenced. The cursor
1655 * referenced by the type of size is the typedef for size_type.
1657 CXCursor_TypeRef
= 43,
1658 CXCursor_CXXBaseSpecifier
= 44,
1660 * \brief A reference to a class template, function template, template
1661 * template parameter, or class template partial specialization.
1663 CXCursor_TemplateRef
= 45,
1665 * \brief A reference to a namespace or namespace alias.
1667 CXCursor_NamespaceRef
= 46,
1669 * \brief A reference to a member of a struct, union, or class that occurs in
1670 * some non-expression context, e.g., a designated initializer.
1672 CXCursor_MemberRef
= 47,
1674 * \brief A reference to a labeled statement.
1676 * This cursor kind is used to describe the jump to "start_over" in the
1677 * goto statement in the following example:
1686 * A label reference cursor refers to a label statement.
1688 CXCursor_LabelRef
= 48,
1691 * \brief A reference to a set of overloaded functions or function templates
1692 * that has not yet been resolved to a specific function or function template.
1694 * An overloaded declaration reference cursor occurs in C++ templates where
1695 * a dependent name refers to a function. For example:
1698 * template<typename T> void swap(T&, T&);
1701 * void swap(X&, X&);
1703 * template<typename T>
1704 * void reverse(T* first, T* last) {
1705 * while (first < last - 1) {
1706 * swap(*first, *--last);
1712 * void swap(Y&, Y&);
1715 * Here, the identifier "swap" is associated with an overloaded declaration
1716 * reference. In the template definition, "swap" refers to either of the two
1717 * "swap" functions declared above, so both results will be available. At
1718 * instantiation time, "swap" may also refer to other functions found via
1719 * argument-dependent lookup (e.g., the "swap" function at the end of the
1722 * The functions \c clang_getNumOverloadedDecls() and
1723 * \c clang_getOverloadedDecl() can be used to retrieve the definitions
1724 * referenced by this cursor.
1726 CXCursor_OverloadedDeclRef
= 49,
1729 * \brief A reference to a variable that occurs in some non-expression
1730 * context, e.g., a C++ lambda capture list.
1732 CXCursor_VariableRef
= 50,
1734 CXCursor_LastRef
= CXCursor_VariableRef
,
1736 /* Error conditions */
1737 CXCursor_FirstInvalid
= 70,
1738 CXCursor_InvalidFile
= 70,
1739 CXCursor_NoDeclFound
= 71,
1740 CXCursor_NotImplemented
= 72,
1741 CXCursor_InvalidCode
= 73,
1742 CXCursor_LastInvalid
= CXCursor_InvalidCode
,
1745 CXCursor_FirstExpr
= 100,
1748 * \brief An expression whose specific kind is not exposed via this
1751 * Unexposed expressions have the same operations as any other kind
1752 * of expression; one can extract their location information,
1753 * spelling, children, etc. However, the specific kind of the
1754 * expression is not reported.
1756 CXCursor_UnexposedExpr
= 100,
1759 * \brief An expression that refers to some value declaration, such
1760 * as a function, variable, or enumerator.
1762 CXCursor_DeclRefExpr
= 101,
1765 * \brief An expression that refers to a member of a struct, union,
1766 * class, Objective-C class, etc.
1768 CXCursor_MemberRefExpr
= 102,
1770 /** \brief An expression that calls a function. */
1771 CXCursor_CallExpr
= 103,
1773 /** \brief An expression that sends a message to an Objective-C
1775 CXCursor_ObjCMessageExpr
= 104,
1777 /** \brief An expression that represents a block literal. */
1778 CXCursor_BlockExpr
= 105,
1780 /** \brief An integer literal.
1782 CXCursor_IntegerLiteral
= 106,
1784 /** \brief A floating point number literal.
1786 CXCursor_FloatingLiteral
= 107,
1788 /** \brief An imaginary number literal.
1790 CXCursor_ImaginaryLiteral
= 108,
1792 /** \brief A string literal.
1794 CXCursor_StringLiteral
= 109,
1796 /** \brief A character literal.
1798 CXCursor_CharacterLiteral
= 110,
1800 /** \brief A parenthesized expression, e.g. "(1)".
1802 * This AST node is only formed if full location information is requested.
1804 CXCursor_ParenExpr
= 111,
1806 /** \brief This represents the unary-expression's (except sizeof and
1809 CXCursor_UnaryOperator
= 112,
1811 /** \brief [C99 6.5.2.1] Array Subscripting.
1813 CXCursor_ArraySubscriptExpr
= 113,
1815 /** \brief A builtin binary operation expression such as "x + y" or
1818 CXCursor_BinaryOperator
= 114,
1820 /** \brief Compound assignment such as "+=".
1822 CXCursor_CompoundAssignOperator
= 115,
1824 /** \brief The ?: ternary operator.
1826 CXCursor_ConditionalOperator
= 116,
1828 /** \brief An explicit cast in C (C99 6.5.4) or a C-style cast in C++
1829 * (C++ [expr.cast]), which uses the syntax (Type)expr.
1831 * For example: (int)f.
1833 CXCursor_CStyleCastExpr
= 117,
1835 /** \brief [C99 6.5.2.5]
1837 CXCursor_CompoundLiteralExpr
= 118,
1839 /** \brief Describes an C or C++ initializer list.
1841 CXCursor_InitListExpr
= 119,
1843 /** \brief The GNU address of label extension, representing &&label.
1845 CXCursor_AddrLabelExpr
= 120,
1847 /** \brief This is the GNU Statement Expression extension: ({int X=4; X;})
1849 CXCursor_StmtExpr
= 121,
1851 /** \brief Represents a C11 generic selection.
1853 CXCursor_GenericSelectionExpr
= 122,
1855 /** \brief Implements the GNU __null extension, which is a name for a null
1856 * pointer constant that has integral type (e.g., int or long) and is the same
1857 * size and alignment as a pointer.
1859 * The __null extension is typically only used by system headers, which define
1860 * NULL as __null in C++ rather than using 0 (which is an integer that may not
1861 * match the size of a pointer).
1863 CXCursor_GNUNullExpr
= 123,
1865 /** \brief C++'s static_cast<> expression.
1867 CXCursor_CXXStaticCastExpr
= 124,
1869 /** \brief C++'s dynamic_cast<> expression.
1871 CXCursor_CXXDynamicCastExpr
= 125,
1873 /** \brief C++'s reinterpret_cast<> expression.
1875 CXCursor_CXXReinterpretCastExpr
= 126,
1877 /** \brief C++'s const_cast<> expression.
1879 CXCursor_CXXConstCastExpr
= 127,
1881 /** \brief Represents an explicit C++ type conversion that uses "functional"
1882 * notion (C++ [expr.type.conv]).
1889 CXCursor_CXXFunctionalCastExpr
= 128,
1891 /** \brief A C++ typeid expression (C++ [expr.typeid]).
1893 CXCursor_CXXTypeidExpr
= 129,
1895 /** \brief [C++ 2.13.5] C++ Boolean Literal.
1897 CXCursor_CXXBoolLiteralExpr
= 130,
1899 /** \brief [C++0x 2.14.7] C++ Pointer Literal.
1901 CXCursor_CXXNullPtrLiteralExpr
= 131,
1903 /** \brief Represents the "this" expression in C++
1905 CXCursor_CXXThisExpr
= 132,
1907 /** \brief [C++ 15] C++ Throw Expression.
1909 * This handles 'throw' and 'throw' assignment-expression. When
1910 * assignment-expression isn't present, Op will be null.
1912 CXCursor_CXXThrowExpr
= 133,
1914 /** \brief A new expression for memory allocation and constructor calls, e.g:
1915 * "new CXXNewExpr(foo)".
1917 CXCursor_CXXNewExpr
= 134,
1919 /** \brief A delete expression for memory deallocation and destructor calls,
1920 * e.g. "delete[] pArray".
1922 CXCursor_CXXDeleteExpr
= 135,
1924 /** \brief A unary expression.
1926 CXCursor_UnaryExpr
= 136,
1928 /** \brief An Objective-C string literal i.e. @"foo".
1930 CXCursor_ObjCStringLiteral
= 137,
1932 /** \brief An Objective-C \@encode expression.
1934 CXCursor_ObjCEncodeExpr
= 138,
1936 /** \brief An Objective-C \@selector expression.
1938 CXCursor_ObjCSelectorExpr
= 139,
1940 /** \brief An Objective-C \@protocol expression.
1942 CXCursor_ObjCProtocolExpr
= 140,
1944 /** \brief An Objective-C "bridged" cast expression, which casts between
1945 * Objective-C pointers and C pointers, transferring ownership in the process.
1948 * NSString *str = (__bridge_transfer NSString *)CFCreateString();
1951 CXCursor_ObjCBridgedCastExpr
= 141,
1953 /** \brief Represents a C++0x pack expansion that produces a sequence of
1956 * A pack expansion expression contains a pattern (which itself is an
1957 * expression) followed by an ellipsis. For example:
1960 * template<typename F, typename ...Types>
1961 * void forward(F f, Types &&...args) {
1962 * f(static_cast<Types&&>(args)...);
1966 CXCursor_PackExpansionExpr
= 142,
1968 /** \brief Represents an expression that computes the length of a parameter
1972 * template<typename ...Types>
1974 * static const unsigned value = sizeof...(Types);
1978 CXCursor_SizeOfPackExpr
= 143,
1980 /* \brief Represents a C++ lambda expression that produces a local function
1984 * void abssort(float *x, unsigned N) {
1985 * std::sort(x, x + N,
1986 * [](float a, float b) {
1987 * return std::abs(a) < std::abs(b);
1992 CXCursor_LambdaExpr
= 144,
1994 /** \brief Objective-c Boolean Literal.
1996 CXCursor_ObjCBoolLiteralExpr
= 145,
1998 /** \brief Represents the "self" expression in an Objective-C method.
2000 CXCursor_ObjCSelfExpr
= 146,
2002 /** \brief OpenMP 4.0 [2.4, Array Section].
2004 CXCursor_OMPArraySectionExpr
= 147,
2006 CXCursor_LastExpr
= CXCursor_OMPArraySectionExpr
,
2009 CXCursor_FirstStmt
= 200,
2011 * \brief A statement whose specific kind is not exposed via this
2014 * Unexposed statements have the same operations as any other kind of
2015 * statement; one can extract their location information, spelling,
2016 * children, etc. However, the specific kind of the statement is not
2019 CXCursor_UnexposedStmt
= 200,
2021 /** \brief A labelled statement in a function.
2023 * This cursor kind is used to describe the "start_over:" label statement in
2024 * the following example:
2032 CXCursor_LabelStmt
= 201,
2034 /** \brief A group of statements like { stmt stmt }.
2036 * This cursor kind is used to describe compound statements, e.g. function
2039 CXCursor_CompoundStmt
= 202,
2041 /** \brief A case statement.
2043 CXCursor_CaseStmt
= 203,
2045 /** \brief A default statement.
2047 CXCursor_DefaultStmt
= 204,
2049 /** \brief An if statement
2051 CXCursor_IfStmt
= 205,
2053 /** \brief A switch statement.
2055 CXCursor_SwitchStmt
= 206,
2057 /** \brief A while statement.
2059 CXCursor_WhileStmt
= 207,
2061 /** \brief A do statement.
2063 CXCursor_DoStmt
= 208,
2065 /** \brief A for statement.
2067 CXCursor_ForStmt
= 209,
2069 /** \brief A goto statement.
2071 CXCursor_GotoStmt
= 210,
2073 /** \brief An indirect goto statement.
2075 CXCursor_IndirectGotoStmt
= 211,
2077 /** \brief A continue statement.
2079 CXCursor_ContinueStmt
= 212,
2081 /** \brief A break statement.
2083 CXCursor_BreakStmt
= 213,
2085 /** \brief A return statement.
2087 CXCursor_ReturnStmt
= 214,
2089 /** \brief A GCC inline assembly statement extension.
2091 CXCursor_GCCAsmStmt
= 215,
2092 CXCursor_AsmStmt
= CXCursor_GCCAsmStmt
,
2094 /** \brief Objective-C's overall \@try-\@catch-\@finally statement.
2096 CXCursor_ObjCAtTryStmt
= 216,
2098 /** \brief Objective-C's \@catch statement.
2100 CXCursor_ObjCAtCatchStmt
= 217,
2102 /** \brief Objective-C's \@finally statement.
2104 CXCursor_ObjCAtFinallyStmt
= 218,
2106 /** \brief Objective-C's \@throw statement.
2108 CXCursor_ObjCAtThrowStmt
= 219,
2110 /** \brief Objective-C's \@synchronized statement.
2112 CXCursor_ObjCAtSynchronizedStmt
= 220,
2114 /** \brief Objective-C's autorelease pool statement.
2116 CXCursor_ObjCAutoreleasePoolStmt
= 221,
2118 /** \brief Objective-C's collection statement.
2120 CXCursor_ObjCForCollectionStmt
= 222,
2122 /** \brief C++'s catch statement.
2124 CXCursor_CXXCatchStmt
= 223,
2126 /** \brief C++'s try statement.
2128 CXCursor_CXXTryStmt
= 224,
2130 /** \brief C++'s for (* : *) statement.
2132 CXCursor_CXXForRangeStmt
= 225,
2134 /** \brief Windows Structured Exception Handling's try statement.
2136 CXCursor_SEHTryStmt
= 226,
2138 /** \brief Windows Structured Exception Handling's except statement.
2140 CXCursor_SEHExceptStmt
= 227,
2142 /** \brief Windows Structured Exception Handling's finally statement.
2144 CXCursor_SEHFinallyStmt
= 228,
2146 /** \brief A MS inline assembly statement extension.
2148 CXCursor_MSAsmStmt
= 229,
2150 /** \brief The null statement ";": C99 6.8.3p3.
2152 * This cursor kind is used to describe the null statement.
2154 CXCursor_NullStmt
= 230,
2156 /** \brief Adaptor class for mixing declarations with statements and
2159 CXCursor_DeclStmt
= 231,
2161 /** \brief OpenMP parallel directive.
2163 CXCursor_OMPParallelDirective
= 232,
2165 /** \brief OpenMP SIMD directive.
2167 CXCursor_OMPSimdDirective
= 233,
2169 /** \brief OpenMP for directive.
2171 CXCursor_OMPForDirective
= 234,
2173 /** \brief OpenMP sections directive.
2175 CXCursor_OMPSectionsDirective
= 235,
2177 /** \brief OpenMP section directive.
2179 CXCursor_OMPSectionDirective
= 236,
2181 /** \brief OpenMP single directive.
2183 CXCursor_OMPSingleDirective
= 237,
2185 /** \brief OpenMP parallel for directive.
2187 CXCursor_OMPParallelForDirective
= 238,
2189 /** \brief OpenMP parallel sections directive.
2191 CXCursor_OMPParallelSectionsDirective
= 239,
2193 /** \brief OpenMP task directive.
2195 CXCursor_OMPTaskDirective
= 240,
2197 /** \brief OpenMP master directive.
2199 CXCursor_OMPMasterDirective
= 241,
2201 /** \brief OpenMP critical directive.
2203 CXCursor_OMPCriticalDirective
= 242,
2205 /** \brief OpenMP taskyield directive.
2207 CXCursor_OMPTaskyieldDirective
= 243,
2209 /** \brief OpenMP barrier directive.
2211 CXCursor_OMPBarrierDirective
= 244,
2213 /** \brief OpenMP taskwait directive.
2215 CXCursor_OMPTaskwaitDirective
= 245,
2217 /** \brief OpenMP flush directive.
2219 CXCursor_OMPFlushDirective
= 246,
2221 /** \brief Windows Structured Exception Handling's leave statement.
2223 CXCursor_SEHLeaveStmt
= 247,
2225 /** \brief OpenMP ordered directive.
2227 CXCursor_OMPOrderedDirective
= 248,
2229 /** \brief OpenMP atomic directive.
2231 CXCursor_OMPAtomicDirective
= 249,
2233 /** \brief OpenMP for SIMD directive.
2235 CXCursor_OMPForSimdDirective
= 250,
2237 /** \brief OpenMP parallel for SIMD directive.
2239 CXCursor_OMPParallelForSimdDirective
= 251,
2241 /** \brief OpenMP target directive.
2243 CXCursor_OMPTargetDirective
= 252,
2245 /** \brief OpenMP teams directive.
2247 CXCursor_OMPTeamsDirective
= 253,
2249 /** \brief OpenMP taskgroup directive.
2251 CXCursor_OMPTaskgroupDirective
= 254,
2253 /** \brief OpenMP cancellation point directive.
2255 CXCursor_OMPCancellationPointDirective
= 255,
2257 /** \brief OpenMP cancel directive.
2259 CXCursor_OMPCancelDirective
= 256,
2261 /** \brief OpenMP target data directive.
2263 CXCursor_OMPTargetDataDirective
= 257,
2265 /** \brief OpenMP taskloop directive.
2267 CXCursor_OMPTaskLoopDirective
= 258,
2269 /** \brief OpenMP taskloop simd directive.
2271 CXCursor_OMPTaskLoopSimdDirective
= 259,
2273 /** \brief OpenMP distribute directive.
2275 CXCursor_OMPDistributeDirective
= 260,
2277 CXCursor_LastStmt
= CXCursor_OMPDistributeDirective
,
2280 * \brief Cursor that represents the translation unit itself.
2282 * The translation unit cursor exists primarily to act as the root
2283 * cursor for traversing the contents of a translation unit.
2285 CXCursor_TranslationUnit
= 300,
2288 CXCursor_FirstAttr
= 400,
2290 * \brief An attribute whose specific kind is not exposed via this
2293 CXCursor_UnexposedAttr
= 400,
2295 CXCursor_IBActionAttr
= 401,
2296 CXCursor_IBOutletAttr
= 402,
2297 CXCursor_IBOutletCollectionAttr
= 403,
2298 CXCursor_CXXFinalAttr
= 404,
2299 CXCursor_CXXOverrideAttr
= 405,
2300 CXCursor_AnnotateAttr
= 406,
2301 CXCursor_AsmLabelAttr
= 407,
2302 CXCursor_PackedAttr
= 408,
2303 CXCursor_PureAttr
= 409,
2304 CXCursor_ConstAttr
= 410,
2305 CXCursor_NoDuplicateAttr
= 411,
2306 CXCursor_CUDAConstantAttr
= 412,
2307 CXCursor_CUDADeviceAttr
= 413,
2308 CXCursor_CUDAGlobalAttr
= 414,
2309 CXCursor_CUDAHostAttr
= 415,
2310 CXCursor_CUDASharedAttr
= 416,
2311 CXCursor_VisibilityAttr
= 417,
2312 CXCursor_DLLExport
= 418,
2313 CXCursor_DLLImport
= 419,
2314 CXCursor_LastAttr
= CXCursor_DLLImport
,
2317 CXCursor_PreprocessingDirective
= 500,
2318 CXCursor_MacroDefinition
= 501,
2319 CXCursor_MacroExpansion
= 502,
2320 CXCursor_MacroInstantiation
= CXCursor_MacroExpansion
,
2321 CXCursor_InclusionDirective
= 503,
2322 CXCursor_FirstPreprocessing
= CXCursor_PreprocessingDirective
,
2323 CXCursor_LastPreprocessing
= CXCursor_InclusionDirective
,
2325 /* Extra Declarations */
2327 * \brief A module import declaration.
2329 CXCursor_ModuleImportDecl
= 600,
2330 CXCursor_TypeAliasTemplateDecl
= 601,
2331 CXCursor_FirstExtraDecl
= CXCursor_ModuleImportDecl
,
2332 CXCursor_LastExtraDecl
= CXCursor_TypeAliasTemplateDecl
,
2335 * \brief A code completion overload candidate.
2337 CXCursor_OverloadCandidate
= 700
2341 * \brief A cursor representing some element in the abstract syntax tree for
2342 * a translation unit.
2344 * The cursor abstraction unifies the different kinds of entities in a
2345 * program--declaration, statements, expressions, references to declarations,
2346 * etc.--under a single "cursor" abstraction with a common set of operations.
2347 * Common operation for a cursor include: getting the physical location in
2348 * a source file where the cursor points, getting the name associated with a
2349 * cursor, and retrieving cursors for any child nodes of a particular cursor.
2351 * Cursors can be produced in two specific ways.
2352 * clang_getTranslationUnitCursor() produces a cursor for a translation unit,
2353 * from which one can use clang_visitChildren() to explore the rest of the
2354 * translation unit. clang_getCursor() maps from a physical source location
2355 * to the entity that resides at that location, allowing one to map from the
2356 * source code into the AST.
2359 enum CXCursorKind kind
;
2361 const void *data
[3];
2365 * \defgroup CINDEX_CURSOR_MANIP Cursor manipulations
2371 * \brief Retrieve the NULL cursor, which represents no entity.
2373 CINDEX_LINKAGE CXCursor
clang_getNullCursor(void);
2376 * \brief Retrieve the cursor that represents the given translation unit.
2378 * The translation unit cursor can be used to start traversing the
2379 * various declarations within the given translation unit.
2381 CINDEX_LINKAGE CXCursor
clang_getTranslationUnitCursor(CXTranslationUnit
);
2384 * \brief Determine whether two cursors are equivalent.
2386 CINDEX_LINKAGE
unsigned clang_equalCursors(CXCursor
, CXCursor
);
2389 * \brief Returns non-zero if \p cursor is null.
2391 CINDEX_LINKAGE
int clang_Cursor_isNull(CXCursor cursor
);
2394 * \brief Compute a hash value for the given cursor.
2396 CINDEX_LINKAGE
unsigned clang_hashCursor(CXCursor
);
2399 * \brief Retrieve the kind of the given cursor.
2401 CINDEX_LINKAGE
enum CXCursorKind
clang_getCursorKind(CXCursor
);
2404 * \brief Determine whether the given cursor kind represents a declaration.
2406 CINDEX_LINKAGE
unsigned clang_isDeclaration(enum CXCursorKind
);
2409 * \brief Determine whether the given cursor kind represents a simple
2412 * Note that other kinds of cursors (such as expressions) can also refer to
2413 * other cursors. Use clang_getCursorReferenced() to determine whether a
2414 * particular cursor refers to another entity.
2416 CINDEX_LINKAGE
unsigned clang_isReference(enum CXCursorKind
);
2419 * \brief Determine whether the given cursor kind represents an expression.
2421 CINDEX_LINKAGE
unsigned clang_isExpression(enum CXCursorKind
);
2424 * \brief Determine whether the given cursor kind represents a statement.
2426 CINDEX_LINKAGE
unsigned clang_isStatement(enum CXCursorKind
);
2429 * \brief Determine whether the given cursor kind represents an attribute.
2431 CINDEX_LINKAGE
unsigned clang_isAttribute(enum CXCursorKind
);
2434 * \brief Determine whether the given cursor kind represents an invalid
2437 CINDEX_LINKAGE
unsigned clang_isInvalid(enum CXCursorKind
);
2440 * \brief Determine whether the given cursor kind represents a translation
2443 CINDEX_LINKAGE
unsigned clang_isTranslationUnit(enum CXCursorKind
);
2446 * \brief Determine whether the given cursor represents a preprocessing
2447 * element, such as a preprocessor directive or macro instantiation.
2449 CINDEX_LINKAGE
unsigned clang_isPreprocessing(enum CXCursorKind
);
2452 * \brief Determine whether the given cursor represents a currently
2453 * unexposed piece of the AST (e.g., CXCursor_UnexposedStmt).
2455 CINDEX_LINKAGE
unsigned clang_isUnexposed(enum CXCursorKind
);
2458 * \brief Describe the linkage of the entity referred to by a cursor.
2460 enum CXLinkageKind
{
2461 /** \brief This value indicates that no linkage information is available
2462 * for a provided CXCursor. */
2465 * \brief This is the linkage for variables, parameters, and so on that
2466 * have automatic storage. This covers normal (non-extern) local variables.
2468 CXLinkage_NoLinkage
,
2469 /** \brief This is the linkage for static variables and static functions. */
2471 /** \brief This is the linkage for entities with external linkage that live
2472 * in C++ anonymous namespaces.*/
2473 CXLinkage_UniqueExternal
,
2474 /** \brief This is the linkage for entities with true, external linkage. */
2479 * \brief Determine the linkage of the entity referred to by a given cursor.
2481 CINDEX_LINKAGE
enum CXLinkageKind
clang_getCursorLinkage(CXCursor cursor
);
2483 enum CXVisibilityKind
{
2484 /** \brief This value indicates that no visibility information is available
2485 * for a provided CXCursor. */
2486 CXVisibility_Invalid
,
2488 /** \brief Symbol not seen by the linker. */
2489 CXVisibility_Hidden
,
2490 /** \brief Symbol seen by the linker but resolves to a symbol inside this object. */
2491 CXVisibility_Protected
,
2492 /** \brief Symbol seen by the linker and acts like a normal symbol. */
2493 CXVisibility_Default
2497 * \brief Describe the visibility of the entity referred to by a cursor.
2499 * This returns the default visibility if not explicitly specified by
2500 * a visibility attribute. The default visibility may be changed by
2501 * commandline arguments.
2503 * \param cursor The cursor to query.
2505 * \returns The visibility of the cursor.
2507 CINDEX_LINKAGE
enum CXVisibilityKind
clang_getCursorVisibility(CXCursor cursor
);
2510 * \brief Determine the availability of the entity that this cursor refers to,
2511 * taking the current target platform into account.
2513 * \param cursor The cursor to query.
2515 * \returns The availability of the cursor.
2517 CINDEX_LINKAGE
enum CXAvailabilityKind
2518 clang_getCursorAvailability(CXCursor cursor
);
2521 * Describes the availability of a given entity on a particular platform, e.g.,
2522 * a particular class might only be available on Mac OS 10.7 or newer.
2524 typedef struct CXPlatformAvailability
{
2526 * \brief A string that describes the platform for which this structure
2527 * provides availability information.
2529 * Possible values are "ios" or "macosx".
2533 * \brief The version number in which this entity was introduced.
2535 CXVersion Introduced
;
2537 * \brief The version number in which this entity was deprecated (but is
2540 CXVersion Deprecated
;
2542 * \brief The version number in which this entity was obsoleted, and therefore
2543 * is no longer available.
2545 CXVersion Obsoleted
;
2547 * \brief Whether the entity is unconditionally unavailable on this platform.
2551 * \brief An optional message to provide to a user of this API, e.g., to
2552 * suggest replacement APIs.
2555 } CXPlatformAvailability
;
2558 * \brief Determine the availability of the entity that this cursor refers to
2559 * on any platforms for which availability information is known.
2561 * \param cursor The cursor to query.
2563 * \param always_deprecated If non-NULL, will be set to indicate whether the
2564 * entity is deprecated on all platforms.
2566 * \param deprecated_message If non-NULL, will be set to the message text
2567 * provided along with the unconditional deprecation of this entity. The client
2568 * is responsible for deallocating this string.
2570 * \param always_unavailable If non-NULL, will be set to indicate whether the
2571 * entity is unavailable on all platforms.
2573 * \param unavailable_message If non-NULL, will be set to the message text
2574 * provided along with the unconditional unavailability of this entity. The
2575 * client is responsible for deallocating this string.
2577 * \param availability If non-NULL, an array of CXPlatformAvailability instances
2578 * that will be populated with platform availability information, up to either
2579 * the number of platforms for which availability information is available (as
2580 * returned by this function) or \c availability_size, whichever is smaller.
2582 * \param availability_size The number of elements available in the
2583 * \c availability array.
2585 * \returns The number of platforms (N) for which availability information is
2586 * available (which is unrelated to \c availability_size).
2588 * Note that the client is responsible for calling
2589 * \c clang_disposeCXPlatformAvailability to free each of the
2590 * platform-availability structures returned. There are
2591 * \c min(N, availability_size) such structures.
2594 clang_getCursorPlatformAvailability(CXCursor cursor
,
2595 int *always_deprecated
,
2596 CXString
*deprecated_message
,
2597 int *always_unavailable
,
2598 CXString
*unavailable_message
,
2599 CXPlatformAvailability
*availability
,
2600 int availability_size
);
2603 * \brief Free the memory associated with a \c CXPlatformAvailability structure.
2606 clang_disposeCXPlatformAvailability(CXPlatformAvailability
*availability
);
2609 * \brief Describe the "language" of the entity referred to by a cursor.
2611 enum CXLanguageKind
{
2612 CXLanguage_Invalid
= 0,
2615 CXLanguage_CPlusPlus
2619 * \brief Determine the "language" of the entity referred to by a given cursor.
2621 CINDEX_LINKAGE
enum CXLanguageKind
clang_getCursorLanguage(CXCursor cursor
);
2624 * \brief Returns the translation unit that a cursor originated from.
2626 CINDEX_LINKAGE CXTranslationUnit
clang_Cursor_getTranslationUnit(CXCursor
);
2629 * \brief A fast container representing a set of CXCursors.
2631 typedef struct CXCursorSetImpl
*CXCursorSet
;
2634 * \brief Creates an empty CXCursorSet.
2636 CINDEX_LINKAGE CXCursorSet
clang_createCXCursorSet(void);
2639 * \brief Disposes a CXCursorSet and releases its associated memory.
2641 CINDEX_LINKAGE
void clang_disposeCXCursorSet(CXCursorSet cset
);
2644 * \brief Queries a CXCursorSet to see if it contains a specific CXCursor.
2646 * \returns non-zero if the set contains the specified cursor.
2648 CINDEX_LINKAGE
unsigned clang_CXCursorSet_contains(CXCursorSet cset
,
2652 * \brief Inserts a CXCursor into a CXCursorSet.
2654 * \returns zero if the CXCursor was already in the set, and non-zero otherwise.
2656 CINDEX_LINKAGE
unsigned clang_CXCursorSet_insert(CXCursorSet cset
,
2660 * \brief Determine the semantic parent of the given cursor.
2662 * The semantic parent of a cursor is the cursor that semantically contains
2663 * the given \p cursor. For many declarations, the lexical and semantic parents
2664 * are equivalent (the lexical parent is returned by
2665 * \c clang_getCursorLexicalParent()). They diverge when declarations or
2666 * definitions are provided out-of-line. For example:
2676 * In the out-of-line definition of \c C::f, the semantic parent is
2677 * the class \c C, of which this function is a member. The lexical parent is
2678 * the place where the declaration actually occurs in the source code; in this
2679 * case, the definition occurs in the translation unit. In general, the
2680 * lexical parent for a given entity can change without affecting the semantics
2681 * of the program, and the lexical parent of different declarations of the
2682 * same entity may be different. Changing the semantic parent of a declaration,
2683 * on the other hand, can have a major impact on semantics, and redeclarations
2684 * of a particular entity should all have the same semantic context.
2686 * In the example above, both declarations of \c C::f have \c C as their
2687 * semantic context, while the lexical context of the first \c C::f is \c C
2688 * and the lexical context of the second \c C::f is the translation unit.
2690 * For global declarations, the semantic parent is the translation unit.
2692 CINDEX_LINKAGE CXCursor
clang_getCursorSemanticParent(CXCursor cursor
);
2695 * \brief Determine the lexical parent of the given cursor.
2697 * The lexical parent of a cursor is the cursor in which the given \p cursor
2698 * was actually written. For many declarations, the lexical and semantic parents
2699 * are equivalent (the semantic parent is returned by
2700 * \c clang_getCursorSemanticParent()). They diverge when declarations or
2701 * definitions are provided out-of-line. For example:
2711 * In the out-of-line definition of \c C::f, the semantic parent is
2712 * the class \c C, of which this function is a member. The lexical parent is
2713 * the place where the declaration actually occurs in the source code; in this
2714 * case, the definition occurs in the translation unit. In general, the
2715 * lexical parent for a given entity can change without affecting the semantics
2716 * of the program, and the lexical parent of different declarations of the
2717 * same entity may be different. Changing the semantic parent of a declaration,
2718 * on the other hand, can have a major impact on semantics, and redeclarations
2719 * of a particular entity should all have the same semantic context.
2721 * In the example above, both declarations of \c C::f have \c C as their
2722 * semantic context, while the lexical context of the first \c C::f is \c C
2723 * and the lexical context of the second \c C::f is the translation unit.
2725 * For declarations written in the global scope, the lexical parent is
2726 * the translation unit.
2728 CINDEX_LINKAGE CXCursor
clang_getCursorLexicalParent(CXCursor cursor
);
2731 * \brief Determine the set of methods that are overridden by the given
2734 * In both Objective-C and C++, a method (aka virtual member function,
2735 * in C++) can override a virtual method in a base class. For
2736 * Objective-C, a method is said to override any method in the class's
2737 * base class, its protocols, or its categories' protocols, that has the same
2738 * selector and is of the same kind (class or instance).
2739 * If no such method exists, the search continues to the class's superclass,
2740 * its protocols, and its categories, and so on. A method from an Objective-C
2741 * implementation is considered to override the same methods as its
2742 * corresponding method in the interface.
2744 * For C++, a virtual member function overrides any virtual member
2745 * function with the same signature that occurs in its base
2746 * classes. With multiple inheritance, a virtual member function can
2747 * override several virtual member functions coming from different
2750 * In all cases, this function determines the immediate overridden
2751 * method, rather than all of the overridden methods. For example, if
2752 * a method is originally declared in a class A, then overridden in B
2753 * (which in inherits from A) and also in C (which inherited from B),
2754 * then the only overridden method returned from this function when
2755 * invoked on C's method will be B's method. The client may then
2756 * invoke this function again, given the previously-found overridden
2757 * methods, to map out the complete method-override set.
2759 * \param cursor A cursor representing an Objective-C or C++
2760 * method. This routine will compute the set of methods that this
2763 * \param overridden A pointer whose pointee will be replaced with a
2764 * pointer to an array of cursors, representing the set of overridden
2765 * methods. If there are no overridden methods, the pointee will be
2766 * set to NULL. The pointee must be freed via a call to
2767 * \c clang_disposeOverriddenCursors().
2769 * \param num_overridden A pointer to the number of overridden
2770 * functions, will be set to the number of overridden functions in the
2771 * array pointed to by \p overridden.
2773 CINDEX_LINKAGE
void clang_getOverriddenCursors(CXCursor cursor
,
2774 CXCursor
**overridden
,
2775 unsigned *num_overridden
);
2778 * \brief Free the set of overridden cursors returned by \c
2779 * clang_getOverriddenCursors().
2781 CINDEX_LINKAGE
void clang_disposeOverriddenCursors(CXCursor
*overridden
);
2784 * \brief Retrieve the file that is included by the given inclusion directive
2787 CINDEX_LINKAGE CXFile
clang_getIncludedFile(CXCursor cursor
);
2794 * \defgroup CINDEX_CURSOR_SOURCE Mapping between cursors and source code
2796 * Cursors represent a location within the Abstract Syntax Tree (AST). These
2797 * routines help map between cursors and the physical locations where the
2798 * described entities occur in the source code. The mapping is provided in
2799 * both directions, so one can map from source code to the AST and back.
2805 * \brief Map a source location to the cursor that describes the entity at that
2806 * location in the source code.
2808 * clang_getCursor() maps an arbitrary source location within a translation
2809 * unit down to the most specific cursor that describes the entity at that
2810 * location. For example, given an expression \c x + y, invoking
2811 * clang_getCursor() with a source location pointing to "x" will return the
2812 * cursor for "x"; similarly for "y". If the cursor points anywhere between
2813 * "x" or "y" (e.g., on the + or the whitespace around it), clang_getCursor()
2814 * will return a cursor referring to the "+" expression.
2816 * \returns a cursor representing the entity at the given source location, or
2817 * a NULL cursor if no such entity can be found.
2819 CINDEX_LINKAGE CXCursor
clang_getCursor(CXTranslationUnit
, CXSourceLocation
);
2822 * \brief Retrieve the physical location of the source constructor referenced
2823 * by the given cursor.
2825 * The location of a declaration is typically the location of the name of that
2826 * declaration, where the name of that declaration would occur if it is
2827 * unnamed, or some keyword that introduces that particular declaration.
2828 * The location of a reference is where that reference occurs within the
2831 CINDEX_LINKAGE CXSourceLocation
clang_getCursorLocation(CXCursor
);
2834 * \brief Retrieve the physical extent of the source construct referenced by
2837 * The extent of a cursor starts with the file/line/column pointing at the
2838 * first character within the source construct that the cursor refers to and
2839 * ends with the last character within that source construct. For a
2840 * declaration, the extent covers the declaration itself. For a reference,
2841 * the extent covers the location of the reference (e.g., where the referenced
2842 * entity was actually used).
2844 CINDEX_LINKAGE CXSourceRange
clang_getCursorExtent(CXCursor
);
2851 * \defgroup CINDEX_TYPES Type information for CXCursors
2857 * \brief Describes the kind of type
2861 * \brief Represents an invalid type (e.g., where no type is available).
2866 * \brief A type whose specific kind is not exposed via this
2869 CXType_Unexposed
= 1,
2881 CXType_ULongLong
= 11,
2882 CXType_UInt128
= 12,
2889 CXType_LongLong
= 19,
2893 CXType_LongDouble
= 23,
2894 CXType_NullPtr
= 24,
2895 CXType_Overload
= 25,
2896 CXType_Dependent
= 26,
2898 CXType_ObjCClass
= 28,
2899 CXType_ObjCSel
= 29,
2900 CXType_FirstBuiltin
= CXType_Void
,
2901 CXType_LastBuiltin
= CXType_ObjCSel
,
2903 CXType_Complex
= 100,
2904 CXType_Pointer
= 101,
2905 CXType_BlockPointer
= 102,
2906 CXType_LValueReference
= 103,
2907 CXType_RValueReference
= 104,
2908 CXType_Record
= 105,
2910 CXType_Typedef
= 107,
2911 CXType_ObjCInterface
= 108,
2912 CXType_ObjCObjectPointer
= 109,
2913 CXType_FunctionNoProto
= 110,
2914 CXType_FunctionProto
= 111,
2915 CXType_ConstantArray
= 112,
2916 CXType_Vector
= 113,
2917 CXType_IncompleteArray
= 114,
2918 CXType_VariableArray
= 115,
2919 CXType_DependentSizedArray
= 116,
2920 CXType_MemberPointer
= 117,
2925 * \brief Describes the calling convention of a function type
2927 enum CXCallingConv
{
2928 CXCallingConv_Default
= 0,
2929 CXCallingConv_C
= 1,
2930 CXCallingConv_X86StdCall
= 2,
2931 CXCallingConv_X86FastCall
= 3,
2932 CXCallingConv_X86ThisCall
= 4,
2933 CXCallingConv_X86Pascal
= 5,
2934 CXCallingConv_AAPCS
= 6,
2935 CXCallingConv_AAPCS_VFP
= 7,
2936 /* Value 8 was PnaclCall, but it was never used, so it could safely be re-used. */
2937 CXCallingConv_IntelOclBicc
= 9,
2938 CXCallingConv_X86_64Win64
= 10,
2939 CXCallingConv_X86_64SysV
= 11,
2940 CXCallingConv_X86VectorCall
= 12,
2942 CXCallingConv_Invalid
= 100,
2943 CXCallingConv_Unexposed
= 200
2947 * \brief The type of an element in the abstract syntax tree.
2951 enum CXTypeKind kind
;
2956 * \brief Retrieve the type of a CXCursor (if any).
2958 CINDEX_LINKAGE CXType
clang_getCursorType(CXCursor C
);
2961 * \brief Pretty-print the underlying type using the rules of the
2962 * language of the translation unit from which it came.
2964 * If the type is invalid, an empty string is returned.
2966 CINDEX_LINKAGE CXString
clang_getTypeSpelling(CXType CT
);
2969 * \brief Retrieve the underlying type of a typedef declaration.
2971 * If the cursor does not reference a typedef declaration, an invalid type is
2974 CINDEX_LINKAGE CXType
clang_getTypedefDeclUnderlyingType(CXCursor C
);
2977 * \brief Retrieve the integer type of an enum declaration.
2979 * If the cursor does not reference an enum declaration, an invalid type is
2982 CINDEX_LINKAGE CXType
clang_getEnumDeclIntegerType(CXCursor C
);
2985 * \brief Retrieve the integer value of an enum constant declaration as a signed
2988 * If the cursor does not reference an enum constant declaration, LLONG_MIN is returned.
2989 * Since this is also potentially a valid constant value, the kind of the cursor
2990 * must be verified before calling this function.
2992 CINDEX_LINKAGE
long long clang_getEnumConstantDeclValue(CXCursor C
);
2995 * \brief Retrieve the integer value of an enum constant declaration as an unsigned
2998 * If the cursor does not reference an enum constant declaration, ULLONG_MAX is returned.
2999 * Since this is also potentially a valid constant value, the kind of the cursor
3000 * must be verified before calling this function.
3002 CINDEX_LINKAGE
unsigned long long clang_getEnumConstantDeclUnsignedValue(CXCursor C
);
3005 * \brief Retrieve the bit width of a bit field declaration as an integer.
3007 * If a cursor that is not a bit field declaration is passed in, -1 is returned.
3009 CINDEX_LINKAGE
int clang_getFieldDeclBitWidth(CXCursor C
);
3012 * \brief Retrieve the number of non-variadic arguments associated with a given
3015 * The number of arguments can be determined for calls as well as for
3016 * declarations of functions or methods. For other cursors -1 is returned.
3018 CINDEX_LINKAGE
int clang_Cursor_getNumArguments(CXCursor C
);
3021 * \brief Retrieve the argument cursor of a function or method.
3023 * The argument cursor can be determined for calls as well as for declarations
3024 * of functions or methods. For other cursors and for invalid indices, an
3025 * invalid cursor is returned.
3027 CINDEX_LINKAGE CXCursor
clang_Cursor_getArgument(CXCursor C
, unsigned i
);
3030 * \brief Describes the kind of a template argument.
3032 * See the definition of llvm::clang::TemplateArgument::ArgKind for full
3033 * element descriptions.
3035 enum CXTemplateArgumentKind
{
3036 CXTemplateArgumentKind_Null
,
3037 CXTemplateArgumentKind_Type
,
3038 CXTemplateArgumentKind_Declaration
,
3039 CXTemplateArgumentKind_NullPtr
,
3040 CXTemplateArgumentKind_Integral
,
3041 CXTemplateArgumentKind_Template
,
3042 CXTemplateArgumentKind_TemplateExpansion
,
3043 CXTemplateArgumentKind_Expression
,
3044 CXTemplateArgumentKind_Pack
,
3045 /* Indicates an error case, preventing the kind from being deduced. */
3046 CXTemplateArgumentKind_Invalid
3050 *\brief Returns the number of template args of a function decl representing a
3051 * template specialization.
3053 * If the argument cursor cannot be converted into a template function
3054 * declaration, -1 is returned.
3056 * For example, for the following declaration and specialization:
3057 * template <typename T, int kInt, bool kBool>
3058 * void foo() { ... }
3061 * void foo<float, -7, true>();
3063 * The value 3 would be returned from this call.
3065 CINDEX_LINKAGE
int clang_Cursor_getNumTemplateArguments(CXCursor C
);
3068 * \brief Retrieve the kind of the I'th template argument of the CXCursor C.
3070 * If the argument CXCursor does not represent a FunctionDecl, an invalid
3071 * template argument kind is returned.
3073 * For example, for the following declaration and specialization:
3074 * template <typename T, int kInt, bool kBool>
3075 * void foo() { ... }
3078 * void foo<float, -7, true>();
3080 * For I = 0, 1, and 2, Type, Integral, and Integral will be returned,
3083 CINDEX_LINKAGE
enum CXTemplateArgumentKind
clang_Cursor_getTemplateArgumentKind(
3084 CXCursor C
, unsigned I
);
3087 * \brief Retrieve a CXType representing the type of a TemplateArgument of a
3088 * function decl representing a template specialization.
3090 * If the argument CXCursor does not represent a FunctionDecl whose I'th
3091 * template argument has a kind of CXTemplateArgKind_Integral, an invalid type
3094 * For example, for the following declaration and specialization:
3095 * template <typename T, int kInt, bool kBool>
3096 * void foo() { ... }
3099 * void foo<float, -7, true>();
3101 * If called with I = 0, "float", will be returned.
3102 * Invalid types will be returned for I == 1 or 2.
3104 CINDEX_LINKAGE CXType
clang_Cursor_getTemplateArgumentType(CXCursor C
,
3108 * \brief Retrieve the value of an Integral TemplateArgument (of a function
3109 * decl representing a template specialization) as a signed long long.
3111 * It is undefined to call this function on a CXCursor that does not represent a
3112 * FunctionDecl or whose I'th template argument is not an integral value.
3114 * For example, for the following declaration and specialization:
3115 * template <typename T, int kInt, bool kBool>
3116 * void foo() { ... }
3119 * void foo<float, -7, true>();
3121 * If called with I = 1 or 2, -7 or true will be returned, respectively.
3122 * For I == 0, this function's behavior is undefined.
3124 CINDEX_LINKAGE
long long clang_Cursor_getTemplateArgumentValue(CXCursor C
,
3128 * \brief Retrieve the value of an Integral TemplateArgument (of a function
3129 * decl representing a template specialization) as an unsigned long long.
3131 * It is undefined to call this function on a CXCursor that does not represent a
3132 * FunctionDecl or whose I'th template argument is not an integral value.
3134 * For example, for the following declaration and specialization:
3135 * template <typename T, int kInt, bool kBool>
3136 * void foo() { ... }
3139 * void foo<float, 2147483649, true>();
3141 * If called with I = 1 or 2, 2147483649 or true will be returned, respectively.
3142 * For I == 0, this function's behavior is undefined.
3144 CINDEX_LINKAGE
unsigned long long clang_Cursor_getTemplateArgumentUnsignedValue(
3145 CXCursor C
, unsigned I
);
3148 * \brief Determine whether two CXTypes represent the same type.
3150 * \returns non-zero if the CXTypes represent the same type and
3153 CINDEX_LINKAGE
unsigned clang_equalTypes(CXType A
, CXType B
);
3156 * \brief Return the canonical type for a CXType.
3158 * Clang's type system explicitly models typedefs and all the ways
3159 * a specific type can be represented. The canonical type is the underlying
3160 * type with all the "sugar" removed. For example, if 'T' is a typedef
3161 * for 'int', the canonical type for 'T' would be 'int'.
3163 CINDEX_LINKAGE CXType
clang_getCanonicalType(CXType T
);
3166 * \brief Determine whether a CXType has the "const" qualifier set,
3167 * without looking through typedefs that may have added "const" at a
3170 CINDEX_LINKAGE
unsigned clang_isConstQualifiedType(CXType T
);
3173 * \brief Determine whether a CXType has the "volatile" qualifier set,
3174 * without looking through typedefs that may have added "volatile" at
3175 * a different level.
3177 CINDEX_LINKAGE
unsigned clang_isVolatileQualifiedType(CXType T
);
3180 * \brief Determine whether a CXType has the "restrict" qualifier set,
3181 * without looking through typedefs that may have added "restrict" at a
3184 CINDEX_LINKAGE
unsigned clang_isRestrictQualifiedType(CXType T
);
3187 * \brief For pointer types, returns the type of the pointee.
3189 CINDEX_LINKAGE CXType
clang_getPointeeType(CXType T
);
3192 * \brief Return the cursor for the declaration of the given type.
3194 CINDEX_LINKAGE CXCursor
clang_getTypeDeclaration(CXType T
);
3197 * Returns the Objective-C type encoding for the specified declaration.
3199 CINDEX_LINKAGE CXString
clang_getDeclObjCTypeEncoding(CXCursor C
);
3202 * \brief Retrieve the spelling of a given CXTypeKind.
3204 CINDEX_LINKAGE CXString
clang_getTypeKindSpelling(enum CXTypeKind K
);
3207 * \brief Retrieve the calling convention associated with a function type.
3209 * If a non-function type is passed in, CXCallingConv_Invalid is returned.
3211 CINDEX_LINKAGE
enum CXCallingConv
clang_getFunctionTypeCallingConv(CXType T
);
3214 * \brief Retrieve the return type associated with a function type.
3216 * If a non-function type is passed in, an invalid type is returned.
3218 CINDEX_LINKAGE CXType
clang_getResultType(CXType T
);
3221 * \brief Retrieve the number of non-variadic parameters associated with a
3224 * If a non-function type is passed in, -1 is returned.
3226 CINDEX_LINKAGE
int clang_getNumArgTypes(CXType T
);
3229 * \brief Retrieve the type of a parameter of a function type.
3231 * If a non-function type is passed in or the function does not have enough
3232 * parameters, an invalid type is returned.
3234 CINDEX_LINKAGE CXType
clang_getArgType(CXType T
, unsigned i
);
3237 * \brief Return 1 if the CXType is a variadic function type, and 0 otherwise.
3239 CINDEX_LINKAGE
unsigned clang_isFunctionTypeVariadic(CXType T
);
3242 * \brief Retrieve the return type associated with a given cursor.
3244 * This only returns a valid type if the cursor refers to a function or method.
3246 CINDEX_LINKAGE CXType
clang_getCursorResultType(CXCursor C
);
3249 * \brief Return 1 if the CXType is a POD (plain old data) type, and 0
3252 CINDEX_LINKAGE
unsigned clang_isPODType(CXType T
);
3255 * \brief Return the element type of an array, complex, or vector type.
3257 * If a type is passed in that is not an array, complex, or vector type,
3258 * an invalid type is returned.
3260 CINDEX_LINKAGE CXType
clang_getElementType(CXType T
);
3263 * \brief Return the number of elements of an array or vector type.
3265 * If a type is passed in that is not an array or vector type,
3268 CINDEX_LINKAGE
long long clang_getNumElements(CXType T
);
3271 * \brief Return the element type of an array type.
3273 * If a non-array type is passed in, an invalid type is returned.
3275 CINDEX_LINKAGE CXType
clang_getArrayElementType(CXType T
);
3278 * \brief Return the array size of a constant array.
3280 * If a non-array type is passed in, -1 is returned.
3282 CINDEX_LINKAGE
long long clang_getArraySize(CXType T
);
3285 * \brief List the possible error codes for \c clang_Type_getSizeOf,
3286 * \c clang_Type_getAlignOf, \c clang_Type_getOffsetOf and
3287 * \c clang_Cursor_getOffsetOf.
3289 * A value of this enumeration type can be returned if the target type is not
3290 * a valid argument to sizeof, alignof or offsetof.
3292 enum CXTypeLayoutError
{
3294 * \brief Type is of kind CXType_Invalid.
3296 CXTypeLayoutError_Invalid
= -1,
3298 * \brief The type is an incomplete Type.
3300 CXTypeLayoutError_Incomplete
= -2,
3302 * \brief The type is a dependent Type.
3304 CXTypeLayoutError_Dependent
= -3,
3306 * \brief The type is not a constant size type.
3308 CXTypeLayoutError_NotConstantSize
= -4,
3310 * \brief The Field name is not valid for this record.
3312 CXTypeLayoutError_InvalidFieldName
= -5
3316 * \brief Return the alignment of a type in bytes as per C++[expr.alignof]
3319 * If the type declaration is invalid, CXTypeLayoutError_Invalid is returned.
3320 * If the type declaration is an incomplete type, CXTypeLayoutError_Incomplete
3322 * If the type declaration is a dependent type, CXTypeLayoutError_Dependent is
3324 * If the type declaration is not a constant size type,
3325 * CXTypeLayoutError_NotConstantSize is returned.
3327 CINDEX_LINKAGE
long long clang_Type_getAlignOf(CXType T
);
3330 * \brief Return the class type of an member pointer type.
3332 * If a non-member-pointer type is passed in, an invalid type is returned.
3334 CINDEX_LINKAGE CXType
clang_Type_getClassType(CXType T
);
3337 * \brief Return the size of a type in bytes as per C++[expr.sizeof] standard.
3339 * If the type declaration is invalid, CXTypeLayoutError_Invalid is returned.
3340 * If the type declaration is an incomplete type, CXTypeLayoutError_Incomplete
3342 * If the type declaration is a dependent type, CXTypeLayoutError_Dependent is
3345 CINDEX_LINKAGE
long long clang_Type_getSizeOf(CXType T
);
3348 * \brief Return the offset of a field named S in a record of type T in bits
3349 * as it would be returned by __offsetof__ as per C++11[18.2p4]
3351 * If the cursor is not a record field declaration, CXTypeLayoutError_Invalid
3353 * If the field's type declaration is an incomplete type,
3354 * CXTypeLayoutError_Incomplete is returned.
3355 * If the field's type declaration is a dependent type,
3356 * CXTypeLayoutError_Dependent is returned.
3357 * If the field's name S is not found,
3358 * CXTypeLayoutError_InvalidFieldName is returned.
3360 CINDEX_LINKAGE
long long clang_Type_getOffsetOf(CXType T
, const char *S
);
3363 * \brief Return the offset of the field represented by the Cursor.
3365 * If the cursor is not a field declaration, -1 is returned.
3366 * If the cursor semantic parent is not a record field declaration,
3367 * CXTypeLayoutError_Invalid is returned.
3368 * If the field's type declaration is an incomplete type,
3369 * CXTypeLayoutError_Incomplete is returned.
3370 * If the field's type declaration is a dependent type,
3371 * CXTypeLayoutError_Dependent is returned.
3372 * If the field's name S is not found,
3373 * CXTypeLayoutError_InvalidFieldName is returned.
3375 CINDEX_LINKAGE
long long clang_Cursor_getOffsetOfField(CXCursor C
);
3378 * \brief Determine whether the given cursor represents an anonymous record
3381 CINDEX_LINKAGE
unsigned clang_Cursor_isAnonymous(CXCursor C
);
3383 enum CXRefQualifierKind
{
3384 /** \brief No ref-qualifier was provided. */
3385 CXRefQualifier_None
= 0,
3386 /** \brief An lvalue ref-qualifier was provided (\c &). */
3387 CXRefQualifier_LValue
,
3388 /** \brief An rvalue ref-qualifier was provided (\c &&). */
3389 CXRefQualifier_RValue
3393 * \brief Returns the number of template arguments for given class template
3394 * specialization, or -1 if type \c T is not a class template specialization.
3396 * Variadic argument packs count as only one argument, and can not be inspected
3399 CINDEX_LINKAGE
int clang_Type_getNumTemplateArguments(CXType T
);
3402 * \brief Returns the type template argument of a template class specialization
3405 * This function only returns template type arguments and does not handle
3406 * template template arguments or variadic packs.
3408 CINDEX_LINKAGE CXType
clang_Type_getTemplateArgumentAsType(CXType T
, unsigned i
);
3411 * \brief Retrieve the ref-qualifier kind of a function or method.
3413 * The ref-qualifier is returned for C++ functions or methods. For other types
3414 * or non-C++ declarations, CXRefQualifier_None is returned.
3416 CINDEX_LINKAGE
enum CXRefQualifierKind
clang_Type_getCXXRefQualifier(CXType T
);
3419 * \brief Returns non-zero if the cursor specifies a Record member that is a
3422 CINDEX_LINKAGE
unsigned clang_Cursor_isBitField(CXCursor C
);
3425 * \brief Returns 1 if the base class specified by the cursor with kind
3426 * CX_CXXBaseSpecifier is virtual.
3428 CINDEX_LINKAGE
unsigned clang_isVirtualBase(CXCursor
);
3431 * \brief Represents the C++ access control level to a base class for a
3432 * cursor with kind CX_CXXBaseSpecifier.
3434 enum CX_CXXAccessSpecifier
{
3435 CX_CXXInvalidAccessSpecifier
,
3442 * \brief Returns the access control level for the referenced object.
3444 * If the cursor refers to a C++ declaration, its access control level within its
3445 * parent scope is returned. Otherwise, if the cursor refers to a base specifier or
3446 * access specifier, the specifier itself is returned.
3448 CINDEX_LINKAGE
enum CX_CXXAccessSpecifier
clang_getCXXAccessSpecifier(CXCursor
);
3451 * \brief Represents the storage classes as declared in the source. CX_SC_Invalid
3452 * was added for the case that the passed cursor in not a declaration.
3454 enum CX_StorageClass
{
3459 CX_SC_PrivateExtern
,
3460 CX_SC_OpenCLWorkGroupLocal
,
3466 * \brief Returns the storage class for a function or variable declaration.
3468 * If the passed in Cursor is not a function or variable declaration,
3469 * CX_SC_Invalid is returned else the storage class.
3471 CINDEX_LINKAGE
enum CX_StorageClass
clang_Cursor_getStorageClass(CXCursor
);
3474 * \brief Determine the number of overloaded declarations referenced by a
3475 * \c CXCursor_OverloadedDeclRef cursor.
3477 * \param cursor The cursor whose overloaded declarations are being queried.
3479 * \returns The number of overloaded declarations referenced by \c cursor. If it
3480 * is not a \c CXCursor_OverloadedDeclRef cursor, returns 0.
3482 CINDEX_LINKAGE
unsigned clang_getNumOverloadedDecls(CXCursor cursor
);
3485 * \brief Retrieve a cursor for one of the overloaded declarations referenced
3486 * by a \c CXCursor_OverloadedDeclRef cursor.
3488 * \param cursor The cursor whose overloaded declarations are being queried.
3490 * \param index The zero-based index into the set of overloaded declarations in
3493 * \returns A cursor representing the declaration referenced by the given
3494 * \c cursor at the specified \c index. If the cursor does not have an
3495 * associated set of overloaded declarations, or if the index is out of bounds,
3496 * returns \c clang_getNullCursor();
3498 CINDEX_LINKAGE CXCursor
clang_getOverloadedDecl(CXCursor cursor
,
3506 * \defgroup CINDEX_ATTRIBUTES Information for attributes
3512 * \brief For cursors representing an iboutletcollection attribute,
3513 * this function returns the collection element type.
3516 CINDEX_LINKAGE CXType
clang_getIBOutletCollectionType(CXCursor
);
3523 * \defgroup CINDEX_CURSOR_TRAVERSAL Traversing the AST with cursors
3525 * These routines provide the ability to traverse the abstract syntax tree
3532 * \brief Describes how the traversal of the children of a particular
3533 * cursor should proceed after visiting a particular child cursor.
3535 * A value of this enumeration type should be returned by each
3536 * \c CXCursorVisitor to indicate how clang_visitChildren() proceed.
3538 enum CXChildVisitResult
{
3540 * \brief Terminates the cursor traversal.
3544 * \brief Continues the cursor traversal with the next sibling of
3545 * the cursor just visited, without visiting its children.
3547 CXChildVisit_Continue
,
3549 * \brief Recursively traverse the children of this cursor, using
3550 * the same visitor and client data.
3552 CXChildVisit_Recurse
3556 * \brief Visitor invoked for each cursor found by a traversal.
3558 * This visitor function will be invoked for each cursor found by
3559 * clang_visitCursorChildren(). Its first argument is the cursor being
3560 * visited, its second argument is the parent visitor for that cursor,
3561 * and its third argument is the client data provided to
3562 * clang_visitCursorChildren().
3564 * The visitor should return one of the \c CXChildVisitResult values
3565 * to direct clang_visitCursorChildren().
3567 typedef enum CXChildVisitResult (*CXCursorVisitor
)(CXCursor cursor
,
3569 CXClientData client_data
);
3572 * \brief Visit the children of a particular cursor.
3574 * This function visits all the direct children of the given cursor,
3575 * invoking the given \p visitor function with the cursors of each
3576 * visited child. The traversal may be recursive, if the visitor returns
3577 * \c CXChildVisit_Recurse. The traversal may also be ended prematurely, if
3578 * the visitor returns \c CXChildVisit_Break.
3580 * \param parent the cursor whose child may be visited. All kinds of
3581 * cursors can be visited, including invalid cursors (which, by
3582 * definition, have no children).
3584 * \param visitor the visitor function that will be invoked for each
3585 * child of \p parent.
3587 * \param client_data pointer data supplied by the client, which will
3588 * be passed to the visitor each time it is invoked.
3590 * \returns a non-zero value if the traversal was terminated
3591 * prematurely by the visitor returning \c CXChildVisit_Break.
3593 CINDEX_LINKAGE
unsigned clang_visitChildren(CXCursor parent
,
3594 CXCursorVisitor visitor
,
3595 CXClientData client_data
);
3596 #ifdef __has_feature
3597 # if __has_feature(blocks)
3599 * \brief Visitor invoked for each cursor found by a traversal.
3601 * This visitor block will be invoked for each cursor found by
3602 * clang_visitChildrenWithBlock(). Its first argument is the cursor being
3603 * visited, its second argument is the parent visitor for that cursor.
3605 * The visitor should return one of the \c CXChildVisitResult values
3606 * to direct clang_visitChildrenWithBlock().
3608 typedef enum CXChildVisitResult
3609 (^CXCursorVisitorBlock
)(CXCursor cursor
, CXCursor parent
);
3612 * Visits the children of a cursor using the specified block. Behaves
3613 * identically to clang_visitChildren() in all other respects.
3615 unsigned clang_visitChildrenWithBlock(CXCursor parent
,
3616 CXCursorVisitorBlock block
);
3625 * \defgroup CINDEX_CURSOR_XREF Cross-referencing in the AST
3627 * These routines provide the ability to determine references within and
3628 * across translation units, by providing the names of the entities referenced
3629 * by cursors, follow reference cursors to the declarations they reference,
3630 * and associate declarations with their definitions.
3636 * \brief Retrieve a Unified Symbol Resolution (USR) for the entity referenced
3637 * by the given cursor.
3639 * A Unified Symbol Resolution (USR) is a string that identifies a particular
3640 * entity (function, class, variable, etc.) within a program. USRs can be
3641 * compared across translation units to determine, e.g., when references in
3642 * one translation refer to an entity defined in another translation unit.
3644 CINDEX_LINKAGE CXString
clang_getCursorUSR(CXCursor
);
3647 * \brief Construct a USR for a specified Objective-C class.
3649 CINDEX_LINKAGE CXString
clang_constructUSR_ObjCClass(const char *class_name
);
3652 * \brief Construct a USR for a specified Objective-C category.
3654 CINDEX_LINKAGE CXString
3655 clang_constructUSR_ObjCCategory(const char *class_name
,
3656 const char *category_name
);
3659 * \brief Construct a USR for a specified Objective-C protocol.
3661 CINDEX_LINKAGE CXString
3662 clang_constructUSR_ObjCProtocol(const char *protocol_name
);
3665 * \brief Construct a USR for a specified Objective-C instance variable and
3666 * the USR for its containing class.
3668 CINDEX_LINKAGE CXString
clang_constructUSR_ObjCIvar(const char *name
,
3672 * \brief Construct a USR for a specified Objective-C method and
3673 * the USR for its containing class.
3675 CINDEX_LINKAGE CXString
clang_constructUSR_ObjCMethod(const char *name
,
3676 unsigned isInstanceMethod
,
3680 * \brief Construct a USR for a specified Objective-C property and the USR
3681 * for its containing class.
3683 CINDEX_LINKAGE CXString
clang_constructUSR_ObjCProperty(const char *property
,
3687 * \brief Retrieve a name for the entity referenced by this cursor.
3689 CINDEX_LINKAGE CXString
clang_getCursorSpelling(CXCursor
);
3692 * \brief Retrieve a range for a piece that forms the cursors spelling name.
3693 * Most of the times there is only one range for the complete spelling but for
3694 * Objective-C methods and Objective-C message expressions, there are multiple
3695 * pieces for each selector identifier.
3697 * \param pieceIndex the index of the spelling name piece. If this is greater
3698 * than the actual number of pieces, it will return a NULL (invalid) range.
3700 * \param options Reserved.
3702 CINDEX_LINKAGE CXSourceRange
clang_Cursor_getSpellingNameRange(CXCursor
,
3703 unsigned pieceIndex
,
3707 * \brief Retrieve the display name for the entity referenced by this cursor.
3709 * The display name contains extra information that helps identify the cursor,
3710 * such as the parameters of a function or template or the arguments of a
3711 * class template specialization.
3713 CINDEX_LINKAGE CXString
clang_getCursorDisplayName(CXCursor
);
3715 /** \brief For a cursor that is a reference, retrieve a cursor representing the
3716 * entity that it references.
3718 * Reference cursors refer to other entities in the AST. For example, an
3719 * Objective-C superclass reference cursor refers to an Objective-C class.
3720 * This function produces the cursor for the Objective-C class from the
3721 * cursor for the superclass reference. If the input cursor is a declaration or
3722 * definition, it returns that declaration or definition unchanged.
3723 * Otherwise, returns the NULL cursor.
3725 CINDEX_LINKAGE CXCursor
clang_getCursorReferenced(CXCursor
);
3728 * \brief For a cursor that is either a reference to or a declaration
3729 * of some entity, retrieve a cursor that describes the definition of
3732 * Some entities can be declared multiple times within a translation
3733 * unit, but only one of those declarations can also be a
3734 * definition. For example, given:
3738 * int g(int x, int y) { return f(x, y); }
3739 * int f(int a, int b) { return a + b; }
3743 * there are three declarations of the function "f", but only the
3744 * second one is a definition. The clang_getCursorDefinition()
3745 * function will take any cursor pointing to a declaration of "f"
3746 * (the first or fourth lines of the example) or a cursor referenced
3747 * that uses "f" (the call to "f' inside "g") and will return a
3748 * declaration cursor pointing to the definition (the second "f"
3751 * If given a cursor for which there is no corresponding definition,
3752 * e.g., because there is no definition of that entity within this
3753 * translation unit, returns a NULL cursor.
3755 CINDEX_LINKAGE CXCursor
clang_getCursorDefinition(CXCursor
);
3758 * \brief Determine whether the declaration pointed to by this cursor
3759 * is also a definition of that entity.
3761 CINDEX_LINKAGE
unsigned clang_isCursorDefinition(CXCursor
);
3764 * \brief Retrieve the canonical cursor corresponding to the given cursor.
3766 * In the C family of languages, many kinds of entities can be declared several
3767 * times within a single translation unit. For example, a structure type can
3768 * be forward-declared (possibly multiple times) and later defined:
3778 * The declarations and the definition of \c X are represented by three
3779 * different cursors, all of which are declarations of the same underlying
3780 * entity. One of these cursor is considered the "canonical" cursor, which
3781 * is effectively the representative for the underlying entity. One can
3782 * determine if two cursors are declarations of the same underlying entity by
3783 * comparing their canonical cursors.
3785 * \returns The canonical cursor for the entity referred to by the given cursor.
3787 CINDEX_LINKAGE CXCursor
clang_getCanonicalCursor(CXCursor
);
3790 * \brief If the cursor points to a selector identifier in an Objective-C
3791 * method or message expression, this returns the selector index.
3793 * After getting a cursor with #clang_getCursor, this can be called to
3794 * determine if the location points to a selector identifier.
3796 * \returns The selector index if the cursor is an Objective-C method or message
3797 * expression and the cursor is pointing to a selector identifier, or -1
3800 CINDEX_LINKAGE
int clang_Cursor_getObjCSelectorIndex(CXCursor
);
3803 * \brief Given a cursor pointing to a C++ method call or an Objective-C
3804 * message, returns non-zero if the method/message is "dynamic", meaning:
3806 * For a C++ method: the call is virtual.
3807 * For an Objective-C message: the receiver is an object instance, not 'super'
3808 * or a specific class.
3810 * If the method/message is "static" or the cursor does not point to a
3811 * method/message, it will return zero.
3813 CINDEX_LINKAGE
int clang_Cursor_isDynamicCall(CXCursor C
);
3816 * \brief Given a cursor pointing to an Objective-C message, returns the CXType
3819 CINDEX_LINKAGE CXType
clang_Cursor_getReceiverType(CXCursor C
);
3822 * \brief Property attributes for a \c CXCursor_ObjCPropertyDecl.
3825 CXObjCPropertyAttr_noattr
= 0x00,
3826 CXObjCPropertyAttr_readonly
= 0x01,
3827 CXObjCPropertyAttr_getter
= 0x02,
3828 CXObjCPropertyAttr_assign
= 0x04,
3829 CXObjCPropertyAttr_readwrite
= 0x08,
3830 CXObjCPropertyAttr_retain
= 0x10,
3831 CXObjCPropertyAttr_copy
= 0x20,
3832 CXObjCPropertyAttr_nonatomic
= 0x40,
3833 CXObjCPropertyAttr_setter
= 0x80,
3834 CXObjCPropertyAttr_atomic
= 0x100,
3835 CXObjCPropertyAttr_weak
= 0x200,
3836 CXObjCPropertyAttr_strong
= 0x400,
3837 CXObjCPropertyAttr_unsafe_unretained
= 0x800
3838 } CXObjCPropertyAttrKind
;
3841 * \brief Given a cursor that represents a property declaration, return the
3842 * associated property attributes. The bits are formed from
3843 * \c CXObjCPropertyAttrKind.
3845 * \param reserved Reserved for future use, pass 0.
3847 CINDEX_LINKAGE
unsigned clang_Cursor_getObjCPropertyAttributes(CXCursor C
,
3851 * \brief 'Qualifiers' written next to the return and parameter types in
3852 * Objective-C method declarations.
3855 CXObjCDeclQualifier_None
= 0x0,
3856 CXObjCDeclQualifier_In
= 0x1,
3857 CXObjCDeclQualifier_Inout
= 0x2,
3858 CXObjCDeclQualifier_Out
= 0x4,
3859 CXObjCDeclQualifier_Bycopy
= 0x8,
3860 CXObjCDeclQualifier_Byref
= 0x10,
3861 CXObjCDeclQualifier_Oneway
= 0x20
3862 } CXObjCDeclQualifierKind
;
3865 * \brief Given a cursor that represents an Objective-C method or parameter
3866 * declaration, return the associated Objective-C qualifiers for the return
3867 * type or the parameter respectively. The bits are formed from
3868 * CXObjCDeclQualifierKind.
3870 CINDEX_LINKAGE
unsigned clang_Cursor_getObjCDeclQualifiers(CXCursor C
);
3873 * \brief Given a cursor that represents an Objective-C method or property
3874 * declaration, return non-zero if the declaration was affected by "@optional".
3875 * Returns zero if the cursor is not such a declaration or it is "@required".
3877 CINDEX_LINKAGE
unsigned clang_Cursor_isObjCOptional(CXCursor C
);
3880 * \brief Returns non-zero if the given cursor is a variadic function or method.
3882 CINDEX_LINKAGE
unsigned clang_Cursor_isVariadic(CXCursor C
);
3885 * \brief Given a cursor that represents a declaration, return the associated
3886 * comment's source range. The range may include multiple consecutive comments
3887 * with whitespace in between.
3889 CINDEX_LINKAGE CXSourceRange
clang_Cursor_getCommentRange(CXCursor C
);
3892 * \brief Given a cursor that represents a declaration, return the associated
3893 * comment text, including comment markers.
3895 CINDEX_LINKAGE CXString
clang_Cursor_getRawCommentText(CXCursor C
);
3898 * \brief Given a cursor that represents a documentable entity (e.g.,
3899 * declaration), return the associated \\brief paragraph; otherwise return the
3902 CINDEX_LINKAGE CXString
clang_Cursor_getBriefCommentText(CXCursor C
);
3908 /** \defgroup CINDEX_MANGLE Name Mangling API Functions
3914 * \brief Retrieve the CXString representing the mangled name of the cursor.
3916 CINDEX_LINKAGE CXString
clang_Cursor_getMangling(CXCursor
);
3919 * \brief Retrieve the CXStrings representing the mangled symbols of the C++
3920 * constructor or destructor at the cursor.
3922 CINDEX_LINKAGE CXStringSet
*clang_Cursor_getCXXManglings(CXCursor
);
3929 * \defgroup CINDEX_MODULE Module introspection
3931 * The functions in this group provide access to information about modules.
3936 typedef void *CXModule
;
3939 * \brief Given a CXCursor_ModuleImportDecl cursor, return the associated module.
3941 CINDEX_LINKAGE CXModule
clang_Cursor_getModule(CXCursor C
);
3944 * \brief Given a CXFile header file, return the module that contains it, if one
3947 CINDEX_LINKAGE CXModule
clang_getModuleForFile(CXTranslationUnit
, CXFile
);
3950 * \param Module a module object.
3952 * \returns the module file where the provided module object came from.
3954 CINDEX_LINKAGE CXFile
clang_Module_getASTFile(CXModule Module
);
3957 * \param Module a module object.
3959 * \returns the parent of a sub-module or NULL if the given module is top-level,
3960 * e.g. for 'std.vector' it will return the 'std' module.
3962 CINDEX_LINKAGE CXModule
clang_Module_getParent(CXModule Module
);
3965 * \param Module a module object.
3967 * \returns the name of the module, e.g. for the 'std.vector' sub-module it
3968 * will return "vector".
3970 CINDEX_LINKAGE CXString
clang_Module_getName(CXModule Module
);
3973 * \param Module a module object.
3975 * \returns the full name of the module, e.g. "std.vector".
3977 CINDEX_LINKAGE CXString
clang_Module_getFullName(CXModule Module
);
3980 * \param Module a module object.
3982 * \returns non-zero if the module is a system one.
3984 CINDEX_LINKAGE
int clang_Module_isSystem(CXModule Module
);
3987 * \param Module a module object.
3989 * \returns the number of top level headers associated with this module.
3991 CINDEX_LINKAGE
unsigned clang_Module_getNumTopLevelHeaders(CXTranslationUnit
,
3995 * \param Module a module object.
3997 * \param Index top level header index (zero-based).
3999 * \returns the specified top level header associated with the module.
4002 CXFile
clang_Module_getTopLevelHeader(CXTranslationUnit
,
4003 CXModule Module
, unsigned Index
);
4010 * \defgroup CINDEX_CPP C++ AST introspection
4012 * The routines in this group provide access information in the ASTs specific
4013 * to C++ language features.
4019 * \brief Determine if a C++ field is declared 'mutable'.
4021 CINDEX_LINKAGE
unsigned clang_CXXField_isMutable(CXCursor C
);
4024 * \brief Determine if a C++ member function or member function template is
4027 CINDEX_LINKAGE
unsigned clang_CXXMethod_isPureVirtual(CXCursor C
);
4030 * \brief Determine if a C++ member function or member function template is
4031 * declared 'static'.
4033 CINDEX_LINKAGE
unsigned clang_CXXMethod_isStatic(CXCursor C
);
4036 * \brief Determine if a C++ member function or member function template is
4037 * explicitly declared 'virtual' or if it overrides a virtual method from
4038 * one of the base classes.
4040 CINDEX_LINKAGE
unsigned clang_CXXMethod_isVirtual(CXCursor C
);
4043 * \brief Determine if a C++ member function or member function template is
4046 CINDEX_LINKAGE
unsigned clang_CXXMethod_isConst(CXCursor C
);
4049 * \brief Given a cursor that represents a template, determine
4050 * the cursor kind of the specializations would be generated by instantiating
4053 * This routine can be used to determine what flavor of function template,
4054 * class template, or class template partial specialization is stored in the
4055 * cursor. For example, it can describe whether a class template cursor is
4056 * declared with "struct", "class" or "union".
4058 * \param C The cursor to query. This cursor should represent a template
4061 * \returns The cursor kind of the specializations that would be generated
4062 * by instantiating the template \p C. If \p C is not a template, returns
4063 * \c CXCursor_NoDeclFound.
4065 CINDEX_LINKAGE
enum CXCursorKind
clang_getTemplateCursorKind(CXCursor C
);
4068 * \brief Given a cursor that may represent a specialization or instantiation
4069 * of a template, retrieve the cursor that represents the template that it
4070 * specializes or from which it was instantiated.
4072 * This routine determines the template involved both for explicit
4073 * specializations of templates and for implicit instantiations of the template,
4074 * both of which are referred to as "specializations". For a class template
4075 * specialization (e.g., \c std::vector<bool>), this routine will return
4076 * either the primary template (\c std::vector) or, if the specialization was
4077 * instantiated from a class template partial specialization, the class template
4078 * partial specialization. For a class template partial specialization and a
4079 * function template specialization (including instantiations), this
4080 * this routine will return the specialized template.
4082 * For members of a class template (e.g., member functions, member classes, or
4083 * static data members), returns the specialized or instantiated member.
4084 * Although not strictly "templates" in the C++ language, members of class
4085 * templates have the same notions of specializations and instantiations that
4086 * templates do, so this routine treats them similarly.
4088 * \param C A cursor that may be a specialization of a template or a member
4091 * \returns If the given cursor is a specialization or instantiation of a
4092 * template or a member thereof, the template or member that it specializes or
4093 * from which it was instantiated. Otherwise, returns a NULL cursor.
4095 CINDEX_LINKAGE CXCursor
clang_getSpecializedCursorTemplate(CXCursor C
);
4098 * \brief Given a cursor that references something else, return the source range
4099 * covering that reference.
4101 * \param C A cursor pointing to a member reference, a declaration reference, or
4103 * \param NameFlags A bitset with three independent flags:
4104 * CXNameRange_WantQualifier, CXNameRange_WantTemplateArgs, and
4105 * CXNameRange_WantSinglePiece.
4106 * \param PieceIndex For contiguous names or when passing the flag
4107 * CXNameRange_WantSinglePiece, only one piece with index 0 is
4108 * available. When the CXNameRange_WantSinglePiece flag is not passed for a
4109 * non-contiguous names, this index can be used to retrieve the individual
4110 * pieces of the name. See also CXNameRange_WantSinglePiece.
4112 * \returns The piece of the name pointed to by the given cursor. If there is no
4113 * name, or if the PieceIndex is out-of-range, a null-cursor will be returned.
4115 CINDEX_LINKAGE CXSourceRange
clang_getCursorReferenceNameRange(CXCursor C
,
4117 unsigned PieceIndex
);
4119 enum CXNameRefFlags
{
4121 * \brief Include the nested-name-specifier, e.g. Foo:: in x.Foo::y, in the
4124 CXNameRange_WantQualifier
= 0x1,
4127 * \brief Include the explicit template arguments, e.g. \<int> in x.f<int>,
4130 CXNameRange_WantTemplateArgs
= 0x2,
4133 * \brief If the name is non-contiguous, return the full spanning range.
4135 * Non-contiguous names occur in Objective-C when a selector with two or more
4136 * parameters is used, or in C++ when using an operator:
4138 * [object doSomething:here withValue:there]; // Objective-C
4139 * return some_vector[1]; // C++
4142 CXNameRange_WantSinglePiece
= 0x4
4150 * \defgroup CINDEX_LEX Token extraction and manipulation
4152 * The routines in this group provide access to the tokens within a
4153 * translation unit, along with a semantic mapping of those tokens to
4154 * their corresponding cursors.
4160 * \brief Describes a kind of token.
4162 typedef enum CXTokenKind
{
4164 * \brief A token that contains some kind of punctuation.
4166 CXToken_Punctuation
,
4169 * \brief A language keyword.
4174 * \brief An identifier (that is not a keyword).
4179 * \brief A numeric, string, or character literal.
4190 * \brief Describes a single preprocessing token.
4193 unsigned int_data
[4];
4198 * \brief Determine the kind of the given token.
4200 CINDEX_LINKAGE CXTokenKind
clang_getTokenKind(CXToken
);
4203 * \brief Determine the spelling of the given token.
4205 * The spelling of a token is the textual representation of that token, e.g.,
4206 * the text of an identifier or keyword.
4208 CINDEX_LINKAGE CXString
clang_getTokenSpelling(CXTranslationUnit
, CXToken
);
4211 * \brief Retrieve the source location of the given token.
4213 CINDEX_LINKAGE CXSourceLocation
clang_getTokenLocation(CXTranslationUnit
,
4217 * \brief Retrieve a source range that covers the given token.
4219 CINDEX_LINKAGE CXSourceRange
clang_getTokenExtent(CXTranslationUnit
, CXToken
);
4222 * \brief Tokenize the source code described by the given range into raw
4225 * \param TU the translation unit whose text is being tokenized.
4227 * \param Range the source range in which text should be tokenized. All of the
4228 * tokens produced by tokenization will fall within this source range,
4230 * \param Tokens this pointer will be set to point to the array of tokens
4231 * that occur within the given source range. The returned pointer must be
4232 * freed with clang_disposeTokens() before the translation unit is destroyed.
4234 * \param NumTokens will be set to the number of tokens in the \c *Tokens
4238 CINDEX_LINKAGE
void clang_tokenize(CXTranslationUnit TU
, CXSourceRange Range
,
4239 CXToken
**Tokens
, unsigned *NumTokens
);
4242 * \brief Annotate the given set of tokens by providing cursors for each token
4243 * that can be mapped to a specific entity within the abstract syntax tree.
4245 * This token-annotation routine is equivalent to invoking
4246 * clang_getCursor() for the source locations of each of the
4247 * tokens. The cursors provided are filtered, so that only those
4248 * cursors that have a direct correspondence to the token are
4249 * accepted. For example, given a function call \c f(x),
4250 * clang_getCursor() would provide the following cursors:
4252 * * when the cursor is over the 'f', a DeclRefExpr cursor referring to 'f'.
4253 * * when the cursor is over the '(' or the ')', a CallExpr referring to 'f'.
4254 * * when the cursor is over the 'x', a DeclRefExpr cursor referring to 'x'.
4256 * Only the first and last of these cursors will occur within the
4257 * annotate, since the tokens "f" and "x' directly refer to a function
4258 * and a variable, respectively, but the parentheses are just a small
4259 * part of the full syntax of the function call expression, which is
4260 * not provided as an annotation.
4262 * \param TU the translation unit that owns the given tokens.
4264 * \param Tokens the set of tokens to annotate.
4266 * \param NumTokens the number of tokens in \p Tokens.
4268 * \param Cursors an array of \p NumTokens cursors, whose contents will be
4269 * replaced with the cursors corresponding to each token.
4271 CINDEX_LINKAGE
void clang_annotateTokens(CXTranslationUnit TU
,
4272 CXToken
*Tokens
, unsigned NumTokens
,
4276 * \brief Free the given set of tokens.
4278 CINDEX_LINKAGE
void clang_disposeTokens(CXTranslationUnit TU
,
4279 CXToken
*Tokens
, unsigned NumTokens
);
4286 * \defgroup CINDEX_DEBUG Debugging facilities
4288 * These routines are used for testing and debugging, only, and should not
4294 /* for debug/testing */
4295 CINDEX_LINKAGE CXString
clang_getCursorKindSpelling(enum CXCursorKind Kind
);
4296 CINDEX_LINKAGE
void clang_getDefinitionSpellingAndExtent(CXCursor
,
4297 const char **startBuf
,
4298 const char **endBuf
,
4299 unsigned *startLine
,
4300 unsigned *startColumn
,
4302 unsigned *endColumn
);
4303 CINDEX_LINKAGE
void clang_enableStackTraces(void);
4304 CINDEX_LINKAGE
void clang_executeOnThread(void (*fn
)(void*), void *user_data
,
4305 unsigned stack_size
);
4312 * \defgroup CINDEX_CODE_COMPLET Code completion
4314 * Code completion involves taking an (incomplete) source file, along with
4315 * knowledge of where the user is actively editing that file, and suggesting
4316 * syntactically- and semantically-valid constructs that the user might want to
4317 * use at that particular point in the source code. These data structures and
4318 * routines provide support for code completion.
4324 * \brief A semantic string that describes a code-completion result.
4326 * A semantic string that describes the formatting of a code-completion
4327 * result as a single "template" of text that should be inserted into the
4328 * source buffer when a particular code-completion result is selected.
4329 * Each semantic string is made up of some number of "chunks", each of which
4330 * contains some text along with a description of what that text means, e.g.,
4331 * the name of the entity being referenced, whether the text chunk is part of
4332 * the template, or whether it is a "placeholder" that the user should replace
4333 * with actual code,of a specific kind. See \c CXCompletionChunkKind for a
4334 * description of the different kinds of chunks.
4336 typedef void *CXCompletionString
;
4339 * \brief A single result of code completion.
4343 * \brief The kind of entity that this completion refers to.
4345 * The cursor kind will be a macro, keyword, or a declaration (one of the
4346 * *Decl cursor kinds), describing the entity that the completion is
4349 * \todo In the future, we would like to provide a full cursor, to allow
4350 * the client to extract additional information from declaration.
4352 enum CXCursorKind CursorKind
;
4355 * \brief The code-completion string that describes how to insert this
4356 * code-completion result into the editing buffer.
4358 CXCompletionString CompletionString
;
4359 } CXCompletionResult
;
4362 * \brief Describes a single piece of text within a code-completion string.
4364 * Each "chunk" within a code-completion string (\c CXCompletionString) is
4365 * either a piece of text with a specific "kind" that describes how that text
4366 * should be interpreted by the client or is another completion string.
4368 enum CXCompletionChunkKind
{
4370 * \brief A code-completion string that describes "optional" text that
4371 * could be a part of the template (but is not required).
4373 * The Optional chunk is the only kind of chunk that has a code-completion
4374 * string for its representation, which is accessible via
4375 * \c clang_getCompletionChunkCompletionString(). The code-completion string
4376 * describes an additional part of the template that is completely optional.
4377 * For example, optional chunks can be used to describe the placeholders for
4378 * arguments that match up with defaulted function parameters, e.g. given:
4381 * void f(int x, float y = 3.14, double z = 2.71828);
4384 * The code-completion string for this function would contain:
4385 * - a TypedText chunk for "f".
4386 * - a LeftParen chunk for "(".
4387 * - a Placeholder chunk for "int x"
4388 * - an Optional chunk containing the remaining defaulted arguments, e.g.,
4389 * - a Comma chunk for ","
4390 * - a Placeholder chunk for "float y"
4391 * - an Optional chunk containing the last defaulted argument:
4392 * - a Comma chunk for ","
4393 * - a Placeholder chunk for "double z"
4394 * - a RightParen chunk for ")"
4396 * There are many ways to handle Optional chunks. Two simple approaches are:
4397 * - Completely ignore optional chunks, in which case the template for the
4398 * function "f" would only include the first parameter ("int x").
4399 * - Fully expand all optional chunks, in which case the template for the
4400 * function "f" would have all of the parameters.
4402 CXCompletionChunk_Optional
,
4404 * \brief Text that a user would be expected to type to get this
4405 * code-completion result.
4407 * There will be exactly one "typed text" chunk in a semantic string, which
4408 * will typically provide the spelling of a keyword or the name of a
4409 * declaration that could be used at the current code point. Clients are
4410 * expected to filter the code-completion results based on the text in this
4413 CXCompletionChunk_TypedText
,
4415 * \brief Text that should be inserted as part of a code-completion result.
4417 * A "text" chunk represents text that is part of the template to be
4418 * inserted into user code should this particular code-completion result
4421 CXCompletionChunk_Text
,
4423 * \brief Placeholder text that should be replaced by the user.
4425 * A "placeholder" chunk marks a place where the user should insert text
4426 * into the code-completion template. For example, placeholders might mark
4427 * the function parameters for a function declaration, to indicate that the
4428 * user should provide arguments for each of those parameters. The actual
4429 * text in a placeholder is a suggestion for the text to display before
4430 * the user replaces the placeholder with real code.
4432 CXCompletionChunk_Placeholder
,
4434 * \brief Informative text that should be displayed but never inserted as
4435 * part of the template.
4437 * An "informative" chunk contains annotations that can be displayed to
4438 * help the user decide whether a particular code-completion result is the
4439 * right option, but which is not part of the actual template to be inserted
4440 * by code completion.
4442 CXCompletionChunk_Informative
,
4444 * \brief Text that describes the current parameter when code-completion is
4445 * referring to function call, message send, or template specialization.
4447 * A "current parameter" chunk occurs when code-completion is providing
4448 * information about a parameter corresponding to the argument at the
4449 * code-completion point. For example, given a function
4452 * int add(int x, int y);
4455 * and the source code \c add(, where the code-completion point is after the
4456 * "(", the code-completion string will contain a "current parameter" chunk
4457 * for "int x", indicating that the current argument will initialize that
4458 * parameter. After typing further, to \c add(17, (where the code-completion
4459 * point is after the ","), the code-completion string will contain a
4460 * "current paremeter" chunk to "int y".
4462 CXCompletionChunk_CurrentParameter
,
4464 * \brief A left parenthesis ('('), used to initiate a function call or
4465 * signal the beginning of a function parameter list.
4467 CXCompletionChunk_LeftParen
,
4469 * \brief A right parenthesis (')'), used to finish a function call or
4470 * signal the end of a function parameter list.
4472 CXCompletionChunk_RightParen
,
4474 * \brief A left bracket ('[').
4476 CXCompletionChunk_LeftBracket
,
4478 * \brief A right bracket (']').
4480 CXCompletionChunk_RightBracket
,
4482 * \brief A left brace ('{').
4484 CXCompletionChunk_LeftBrace
,
4486 * \brief A right brace ('}').
4488 CXCompletionChunk_RightBrace
,
4490 * \brief A left angle bracket ('<').
4492 CXCompletionChunk_LeftAngle
,
4494 * \brief A right angle bracket ('>').
4496 CXCompletionChunk_RightAngle
,
4498 * \brief A comma separator (',').
4500 CXCompletionChunk_Comma
,
4502 * \brief Text that specifies the result type of a given result.
4504 * This special kind of informative chunk is not meant to be inserted into
4505 * the text buffer. Rather, it is meant to illustrate the type that an
4506 * expression using the given completion string would have.
4508 CXCompletionChunk_ResultType
,
4510 * \brief A colon (':').
4512 CXCompletionChunk_Colon
,
4514 * \brief A semicolon (';').
4516 CXCompletionChunk_SemiColon
,
4518 * \brief An '=' sign.
4520 CXCompletionChunk_Equal
,
4522 * Horizontal space (' ').
4524 CXCompletionChunk_HorizontalSpace
,
4526 * Vertical space ('\n'), after which it is generally a good idea to
4527 * perform indentation.
4529 CXCompletionChunk_VerticalSpace
4533 * \brief Determine the kind of a particular chunk within a completion string.
4535 * \param completion_string the completion string to query.
4537 * \param chunk_number the 0-based index of the chunk in the completion string.
4539 * \returns the kind of the chunk at the index \c chunk_number.
4541 CINDEX_LINKAGE
enum CXCompletionChunkKind
4542 clang_getCompletionChunkKind(CXCompletionString completion_string
,
4543 unsigned chunk_number
);
4546 * \brief Retrieve the text associated with a particular chunk within a
4547 * completion string.
4549 * \param completion_string the completion string to query.
4551 * \param chunk_number the 0-based index of the chunk in the completion string.
4553 * \returns the text associated with the chunk at index \c chunk_number.
4555 CINDEX_LINKAGE CXString
4556 clang_getCompletionChunkText(CXCompletionString completion_string
,
4557 unsigned chunk_number
);
4560 * \brief Retrieve the completion string associated with a particular chunk
4561 * within a completion string.
4563 * \param completion_string the completion string to query.
4565 * \param chunk_number the 0-based index of the chunk in the completion string.
4567 * \returns the completion string associated with the chunk at index
4570 CINDEX_LINKAGE CXCompletionString
4571 clang_getCompletionChunkCompletionString(CXCompletionString completion_string
,
4572 unsigned chunk_number
);
4575 * \brief Retrieve the number of chunks in the given code-completion string.
4577 CINDEX_LINKAGE
unsigned
4578 clang_getNumCompletionChunks(CXCompletionString completion_string
);
4581 * \brief Determine the priority of this code completion.
4583 * The priority of a code completion indicates how likely it is that this
4584 * particular completion is the completion that the user will select. The
4585 * priority is selected by various internal heuristics.
4587 * \param completion_string The completion string to query.
4589 * \returns The priority of this completion string. Smaller values indicate
4590 * higher-priority (more likely) completions.
4592 CINDEX_LINKAGE
unsigned
4593 clang_getCompletionPriority(CXCompletionString completion_string
);
4596 * \brief Determine the availability of the entity that this code-completion
4599 * \param completion_string The completion string to query.
4601 * \returns The availability of the completion string.
4603 CINDEX_LINKAGE
enum CXAvailabilityKind
4604 clang_getCompletionAvailability(CXCompletionString completion_string
);
4607 * \brief Retrieve the number of annotations associated with the given
4608 * completion string.
4610 * \param completion_string the completion string to query.
4612 * \returns the number of annotations associated with the given completion
4615 CINDEX_LINKAGE
unsigned
4616 clang_getCompletionNumAnnotations(CXCompletionString completion_string
);
4619 * \brief Retrieve the annotation associated with the given completion string.
4621 * \param completion_string the completion string to query.
4623 * \param annotation_number the 0-based index of the annotation of the
4624 * completion string.
4626 * \returns annotation string associated with the completion at index
4627 * \c annotation_number, or a NULL string if that annotation is not available.
4629 CINDEX_LINKAGE CXString
4630 clang_getCompletionAnnotation(CXCompletionString completion_string
,
4631 unsigned annotation_number
);
4634 * \brief Retrieve the parent context of the given completion string.
4636 * The parent context of a completion string is the semantic parent of
4637 * the declaration (if any) that the code completion represents. For example,
4638 * a code completion for an Objective-C method would have the method's class
4639 * or protocol as its context.
4641 * \param completion_string The code completion string whose parent is
4644 * \param kind DEPRECATED: always set to CXCursor_NotImplemented if non-NULL.
4646 * \returns The name of the completion parent, e.g., "NSObject" if
4647 * the completion string represents a method in the NSObject class.
4649 CINDEX_LINKAGE CXString
4650 clang_getCompletionParent(CXCompletionString completion_string
,
4651 enum CXCursorKind
*kind
);
4654 * \brief Retrieve the brief documentation comment attached to the declaration
4655 * that corresponds to the given completion string.
4657 CINDEX_LINKAGE CXString
4658 clang_getCompletionBriefComment(CXCompletionString completion_string
);
4661 * \brief Retrieve a completion string for an arbitrary declaration or macro
4662 * definition cursor.
4664 * \param cursor The cursor to query.
4666 * \returns A non-context-sensitive completion string for declaration and macro
4667 * definition cursors, or NULL for other kinds of cursors.
4669 CINDEX_LINKAGE CXCompletionString
4670 clang_getCursorCompletionString(CXCursor cursor
);
4673 * \brief Contains the results of code-completion.
4675 * This data structure contains the results of code completion, as
4676 * produced by \c clang_codeCompleteAt(). Its contents must be freed by
4677 * \c clang_disposeCodeCompleteResults.
4681 * \brief The code-completion results.
4683 CXCompletionResult
*Results
;
4686 * \brief The number of code-completion results stored in the
4689 unsigned NumResults
;
4690 } CXCodeCompleteResults
;
4693 * \brief Flags that can be passed to \c clang_codeCompleteAt() to
4694 * modify its behavior.
4696 * The enumerators in this enumeration can be bitwise-OR'd together to
4697 * provide multiple options to \c clang_codeCompleteAt().
4699 enum CXCodeComplete_Flags
{
4701 * \brief Whether to include macros within the set of code
4702 * completions returned.
4704 CXCodeComplete_IncludeMacros
= 0x01,
4707 * \brief Whether to include code patterns for language constructs
4708 * within the set of code completions, e.g., for loops.
4710 CXCodeComplete_IncludeCodePatterns
= 0x02,
4713 * \brief Whether to include brief documentation within the set of code
4714 * completions returned.
4716 CXCodeComplete_IncludeBriefComments
= 0x04
4720 * \brief Bits that represent the context under which completion is occurring.
4722 * The enumerators in this enumeration may be bitwise-OR'd together if multiple
4723 * contexts are occurring simultaneously.
4725 enum CXCompletionContext
{
4727 * \brief The context for completions is unexposed, as only Clang results
4728 * should be included. (This is equivalent to having no context bits set.)
4730 CXCompletionContext_Unexposed
= 0,
4733 * \brief Completions for any possible type should be included in the results.
4735 CXCompletionContext_AnyType
= 1 << 0,
4738 * \brief Completions for any possible value (variables, function calls, etc.)
4739 * should be included in the results.
4741 CXCompletionContext_AnyValue
= 1 << 1,
4743 * \brief Completions for values that resolve to an Objective-C object should
4744 * be included in the results.
4746 CXCompletionContext_ObjCObjectValue
= 1 << 2,
4748 * \brief Completions for values that resolve to an Objective-C selector
4749 * should be included in the results.
4751 CXCompletionContext_ObjCSelectorValue
= 1 << 3,
4753 * \brief Completions for values that resolve to a C++ class type should be
4754 * included in the results.
4756 CXCompletionContext_CXXClassTypeValue
= 1 << 4,
4759 * \brief Completions for fields of the member being accessed using the dot
4760 * operator should be included in the results.
4762 CXCompletionContext_DotMemberAccess
= 1 << 5,
4764 * \brief Completions for fields of the member being accessed using the arrow
4765 * operator should be included in the results.
4767 CXCompletionContext_ArrowMemberAccess
= 1 << 6,
4769 * \brief Completions for properties of the Objective-C object being accessed
4770 * using the dot operator should be included in the results.
4772 CXCompletionContext_ObjCPropertyAccess
= 1 << 7,
4775 * \brief Completions for enum tags should be included in the results.
4777 CXCompletionContext_EnumTag
= 1 << 8,
4779 * \brief Completions for union tags should be included in the results.
4781 CXCompletionContext_UnionTag
= 1 << 9,
4783 * \brief Completions for struct tags should be included in the results.
4785 CXCompletionContext_StructTag
= 1 << 10,
4788 * \brief Completions for C++ class names should be included in the results.
4790 CXCompletionContext_ClassTag
= 1 << 11,
4792 * \brief Completions for C++ namespaces and namespace aliases should be
4793 * included in the results.
4795 CXCompletionContext_Namespace
= 1 << 12,
4797 * \brief Completions for C++ nested name specifiers should be included in
4800 CXCompletionContext_NestedNameSpecifier
= 1 << 13,
4803 * \brief Completions for Objective-C interfaces (classes) should be included
4806 CXCompletionContext_ObjCInterface
= 1 << 14,
4808 * \brief Completions for Objective-C protocols should be included in
4811 CXCompletionContext_ObjCProtocol
= 1 << 15,
4813 * \brief Completions for Objective-C categories should be included in
4816 CXCompletionContext_ObjCCategory
= 1 << 16,
4818 * \brief Completions for Objective-C instance messages should be included
4821 CXCompletionContext_ObjCInstanceMessage
= 1 << 17,
4823 * \brief Completions for Objective-C class messages should be included in
4826 CXCompletionContext_ObjCClassMessage
= 1 << 18,
4828 * \brief Completions for Objective-C selector names should be included in
4831 CXCompletionContext_ObjCSelectorName
= 1 << 19,
4834 * \brief Completions for preprocessor macro names should be included in
4837 CXCompletionContext_MacroName
= 1 << 20,
4840 * \brief Natural language completions should be included in the results.
4842 CXCompletionContext_NaturalLanguage
= 1 << 21,
4845 * \brief The current context is unknown, so set all contexts.
4847 CXCompletionContext_Unknown
= ((1 << 22) - 1)
4851 * \brief Returns a default set of code-completion options that can be
4852 * passed to\c clang_codeCompleteAt().
4854 CINDEX_LINKAGE
unsigned clang_defaultCodeCompleteOptions(void);
4857 * \brief Perform code completion at a given location in a translation unit.
4859 * This function performs code completion at a particular file, line, and
4860 * column within source code, providing results that suggest potential
4861 * code snippets based on the context of the completion. The basic model
4862 * for code completion is that Clang will parse a complete source file,
4863 * performing syntax checking up to the location where code-completion has
4864 * been requested. At that point, a special code-completion token is passed
4865 * to the parser, which recognizes this token and determines, based on the
4866 * current location in the C/Objective-C/C++ grammar and the state of
4867 * semantic analysis, what completions to provide. These completions are
4868 * returned via a new \c CXCodeCompleteResults structure.
4870 * Code completion itself is meant to be triggered by the client when the
4871 * user types punctuation characters or whitespace, at which point the
4872 * code-completion location will coincide with the cursor. For example, if \c p
4873 * is a pointer, code-completion might be triggered after the "-" and then
4874 * after the ">" in \c p->. When the code-completion location is afer the ">",
4875 * the completion results will provide, e.g., the members of the struct that
4876 * "p" points to. The client is responsible for placing the cursor at the
4877 * beginning of the token currently being typed, then filtering the results
4878 * based on the contents of the token. For example, when code-completing for
4879 * the expression \c p->get, the client should provide the location just after
4880 * the ">" (e.g., pointing at the "g") to this code-completion hook. Then, the
4881 * client can filter the results based on the current token text ("get"), only
4882 * showing those results that start with "get". The intent of this interface
4883 * is to separate the relatively high-latency acquisition of code-completion
4884 * results from the filtering of results on a per-character basis, which must
4885 * have a lower latency.
4887 * \param TU The translation unit in which code-completion should
4888 * occur. The source files for this translation unit need not be
4889 * completely up-to-date (and the contents of those source files may
4890 * be overridden via \p unsaved_files). Cursors referring into the
4891 * translation unit may be invalidated by this invocation.
4893 * \param complete_filename The name of the source file where code
4894 * completion should be performed. This filename may be any file
4895 * included in the translation unit.
4897 * \param complete_line The line at which code-completion should occur.
4899 * \param complete_column The column at which code-completion should occur.
4900 * Note that the column should point just after the syntactic construct that
4901 * initiated code completion, and not in the middle of a lexical token.
4903 * \param unsaved_files the Tiles that have not yet been saved to disk
4904 * but may be required for parsing or code completion, including the
4905 * contents of those files. The contents and name of these files (as
4906 * specified by CXUnsavedFile) are copied when necessary, so the
4907 * client only needs to guarantee their validity until the call to
4908 * this function returns.
4910 * \param num_unsaved_files The number of unsaved file entries in \p
4913 * \param options Extra options that control the behavior of code
4914 * completion, expressed as a bitwise OR of the enumerators of the
4915 * CXCodeComplete_Flags enumeration. The
4916 * \c clang_defaultCodeCompleteOptions() function returns a default set
4917 * of code-completion options.
4919 * \returns If successful, a new \c CXCodeCompleteResults structure
4920 * containing code-completion results, which should eventually be
4921 * freed with \c clang_disposeCodeCompleteResults(). If code
4922 * completion fails, returns NULL.
4925 CXCodeCompleteResults
*clang_codeCompleteAt(CXTranslationUnit TU
,
4926 const char *complete_filename
,
4927 unsigned complete_line
,
4928 unsigned complete_column
,
4929 struct CXUnsavedFile
*unsaved_files
,
4930 unsigned num_unsaved_files
,
4934 * \brief Sort the code-completion results in case-insensitive alphabetical
4937 * \param Results The set of results to sort.
4938 * \param NumResults The number of results in \p Results.
4941 void clang_sortCodeCompletionResults(CXCompletionResult
*Results
,
4942 unsigned NumResults
);
4945 * \brief Free the given set of code-completion results.
4948 void clang_disposeCodeCompleteResults(CXCodeCompleteResults
*Results
);
4951 * \brief Determine the number of diagnostics produced prior to the
4952 * location where code completion was performed.
4955 unsigned clang_codeCompleteGetNumDiagnostics(CXCodeCompleteResults
*Results
);
4958 * \brief Retrieve a diagnostic associated with the given code completion.
4960 * \param Results the code completion results to query.
4961 * \param Index the zero-based diagnostic number to retrieve.
4963 * \returns the requested diagnostic. This diagnostic must be freed
4964 * via a call to \c clang_disposeDiagnostic().
4967 CXDiagnostic
clang_codeCompleteGetDiagnostic(CXCodeCompleteResults
*Results
,
4971 * \brief Determines what completions are appropriate for the context
4972 * the given code completion.
4974 * \param Results the code completion results to query
4976 * \returns the kinds of completions that are appropriate for use
4977 * along with the given code completion results.
4980 unsigned long long clang_codeCompleteGetContexts(
4981 CXCodeCompleteResults
*Results
);
4984 * \brief Returns the cursor kind for the container for the current code
4985 * completion context. The container is only guaranteed to be set for
4986 * contexts where a container exists (i.e. member accesses or Objective-C
4987 * message sends); if there is not a container, this function will return
4988 * CXCursor_InvalidCode.
4990 * \param Results the code completion results to query
4992 * \param IsIncomplete on return, this value will be false if Clang has complete
4993 * information about the container. If Clang does not have complete
4994 * information, this value will be true.
4996 * \returns the container kind, or CXCursor_InvalidCode if there is not a
5000 enum CXCursorKind
clang_codeCompleteGetContainerKind(
5001 CXCodeCompleteResults
*Results
,
5002 unsigned *IsIncomplete
);
5005 * \brief Returns the USR for the container for the current code completion
5006 * context. If there is not a container for the current context, this
5007 * function will return the empty string.
5009 * \param Results the code completion results to query
5011 * \returns the USR for the container
5014 CXString
clang_codeCompleteGetContainerUSR(CXCodeCompleteResults
*Results
);
5017 * \brief Returns the currently-entered selector for an Objective-C message
5018 * send, formatted like "initWithFoo:bar:". Only guaranteed to return a
5019 * non-empty string for CXCompletionContext_ObjCInstanceMessage and
5020 * CXCompletionContext_ObjCClassMessage.
5022 * \param Results the code completion results to query
5024 * \returns the selector (or partial selector) that has been entered thus far
5025 * for an Objective-C message send.
5028 CXString
clang_codeCompleteGetObjCSelector(CXCodeCompleteResults
*Results
);
5035 * \defgroup CINDEX_MISC Miscellaneous utility functions
5041 * \brief Return a version string, suitable for showing to a user, but not
5042 * intended to be parsed (the format is not guaranteed to be stable).
5044 CINDEX_LINKAGE CXString
clang_getClangVersion(void);
5047 * \brief Enable/disable crash recovery.
5049 * \param isEnabled Flag to indicate if crash recovery is enabled. A non-zero
5050 * value enables crash recovery, while 0 disables it.
5052 CINDEX_LINKAGE
void clang_toggleCrashRecovery(unsigned isEnabled
);
5055 * \brief Visitor invoked for each file in a translation unit
5056 * (used with clang_getInclusions()).
5058 * This visitor function will be invoked by clang_getInclusions() for each
5059 * file included (either at the top-level or by \#include directives) within
5060 * a translation unit. The first argument is the file being included, and
5061 * the second and third arguments provide the inclusion stack. The
5062 * array is sorted in order of immediate inclusion. For example,
5063 * the first element refers to the location that included 'included_file'.
5065 typedef void (*CXInclusionVisitor
)(CXFile included_file
,
5066 CXSourceLocation
* inclusion_stack
,
5067 unsigned include_len
,
5068 CXClientData client_data
);
5071 * \brief Visit the set of preprocessor inclusions in a translation unit.
5072 * The visitor function is called with the provided data for every included
5073 * file. This does not include headers included by the PCH file (unless one
5074 * is inspecting the inclusions in the PCH file itself).
5076 CINDEX_LINKAGE
void clang_getInclusions(CXTranslationUnit tu
,
5077 CXInclusionVisitor visitor
,
5078 CXClientData client_data
);
5084 /** \defgroup CINDEX_REMAPPING Remapping functions
5090 * \brief A remapping of original source files and their translated files.
5092 typedef void *CXRemapping
;
5095 * \brief Retrieve a remapping.
5097 * \param path the path that contains metadata about remappings.
5099 * \returns the requested remapping. This remapping must be freed
5100 * via a call to \c clang_remap_dispose(). Can return NULL if an error occurred.
5102 CINDEX_LINKAGE CXRemapping
clang_getRemappings(const char *path
);
5105 * \brief Retrieve a remapping.
5107 * \param filePaths pointer to an array of file paths containing remapping info.
5109 * \param numFiles number of file paths.
5111 * \returns the requested remapping. This remapping must be freed
5112 * via a call to \c clang_remap_dispose(). Can return NULL if an error occurred.
5115 CXRemapping
clang_getRemappingsFromFileList(const char **filePaths
,
5119 * \brief Determine the number of remappings.
5121 CINDEX_LINKAGE
unsigned clang_remap_getNumFiles(CXRemapping
);
5124 * \brief Get the original and the associated filename from the remapping.
5126 * \param original If non-NULL, will be set to the original filename.
5128 * \param transformed If non-NULL, will be set to the filename that the original
5129 * is associated with.
5131 CINDEX_LINKAGE
void clang_remap_getFilenames(CXRemapping
, unsigned index
,
5132 CXString
*original
, CXString
*transformed
);
5135 * \brief Dispose the remapping.
5137 CINDEX_LINKAGE
void clang_remap_dispose(CXRemapping
);
5143 /** \defgroup CINDEX_HIGH Higher level API functions
5148 enum CXVisitorResult
{
5155 enum CXVisitorResult (*visit
)(void *context
, CXCursor
, CXSourceRange
);
5156 } CXCursorAndRangeVisitor
;
5160 * \brief Function returned successfully.
5162 CXResult_Success
= 0,
5164 * \brief One of the parameters was invalid for the function.
5166 CXResult_Invalid
= 1,
5168 * \brief The function was terminated by a callback (e.g. it returned
5171 CXResult_VisitBreak
= 2
5176 * \brief Find references of a declaration in a specific file.
5178 * \param cursor pointing to a declaration or a reference of one.
5180 * \param file to search for references.
5182 * \param visitor callback that will receive pairs of CXCursor/CXSourceRange for
5183 * each reference found.
5184 * The CXSourceRange will point inside the file; if the reference is inside
5185 * a macro (and not a macro argument) the CXSourceRange will be invalid.
5187 * \returns one of the CXResult enumerators.
5189 CINDEX_LINKAGE CXResult
clang_findReferencesInFile(CXCursor cursor
, CXFile file
,
5190 CXCursorAndRangeVisitor visitor
);
5193 * \brief Find #import/#include directives in a specific file.
5195 * \param TU translation unit containing the file to query.
5197 * \param file to search for #import/#include directives.
5199 * \param visitor callback that will receive pairs of CXCursor/CXSourceRange for
5200 * each directive found.
5202 * \returns one of the CXResult enumerators.
5204 CINDEX_LINKAGE CXResult
clang_findIncludesInFile(CXTranslationUnit TU
,
5206 CXCursorAndRangeVisitor visitor
);
5208 #ifdef __has_feature
5209 # if __has_feature(blocks)
5211 typedef enum CXVisitorResult
5212 (^CXCursorAndRangeVisitorBlock
)(CXCursor
, CXSourceRange
);
5215 CXResult
clang_findReferencesInFileWithBlock(CXCursor
, CXFile
,
5216 CXCursorAndRangeVisitorBlock
);
5219 CXResult
clang_findIncludesInFileWithBlock(CXTranslationUnit
, CXFile
,
5220 CXCursorAndRangeVisitorBlock
);
5226 * \brief The client's data object that is associated with a CXFile.
5228 typedef void *CXIdxClientFile
;
5231 * \brief The client's data object that is associated with a semantic entity.
5233 typedef void *CXIdxClientEntity
;
5236 * \brief The client's data object that is associated with a semantic container
5239 typedef void *CXIdxClientContainer
;
5242 * \brief The client's data object that is associated with an AST file (PCH
5245 typedef void *CXIdxClientASTFile
;
5248 * \brief Source location passed to index callbacks.
5256 * \brief Data for ppIncludedFile callback.
5260 * \brief Location of '#' in the \#include/\#import directive.
5264 * \brief Filename as written in the \#include/\#import directive.
5266 const char *filename
;
5268 * \brief The actual file that the \#include/\#import directive resolved to.
5274 * \brief Non-zero if the directive was automatically turned into a module
5278 } CXIdxIncludedFileInfo
;
5281 * \brief Data for IndexerCallbacks#importedASTFile.
5285 * \brief Top level AST file containing the imported PCH, module or submodule.
5289 * \brief The imported module or NULL if the AST file is a PCH.
5293 * \brief Location where the file is imported. Applicable only for modules.
5297 * \brief Non-zero if an inclusion directive was automatically turned into
5298 * a module import. Applicable only for modules.
5302 } CXIdxImportedASTFileInfo
;
5305 CXIdxEntity_Unexposed
= 0,
5306 CXIdxEntity_Typedef
= 1,
5307 CXIdxEntity_Function
= 2,
5308 CXIdxEntity_Variable
= 3,
5309 CXIdxEntity_Field
= 4,
5310 CXIdxEntity_EnumConstant
= 5,
5312 CXIdxEntity_ObjCClass
= 6,
5313 CXIdxEntity_ObjCProtocol
= 7,
5314 CXIdxEntity_ObjCCategory
= 8,
5316 CXIdxEntity_ObjCInstanceMethod
= 9,
5317 CXIdxEntity_ObjCClassMethod
= 10,
5318 CXIdxEntity_ObjCProperty
= 11,
5319 CXIdxEntity_ObjCIvar
= 12,
5321 CXIdxEntity_Enum
= 13,
5322 CXIdxEntity_Struct
= 14,
5323 CXIdxEntity_Union
= 15,
5325 CXIdxEntity_CXXClass
= 16,
5326 CXIdxEntity_CXXNamespace
= 17,
5327 CXIdxEntity_CXXNamespaceAlias
= 18,
5328 CXIdxEntity_CXXStaticVariable
= 19,
5329 CXIdxEntity_CXXStaticMethod
= 20,
5330 CXIdxEntity_CXXInstanceMethod
= 21,
5331 CXIdxEntity_CXXConstructor
= 22,
5332 CXIdxEntity_CXXDestructor
= 23,
5333 CXIdxEntity_CXXConversionFunction
= 24,
5334 CXIdxEntity_CXXTypeAlias
= 25,
5335 CXIdxEntity_CXXInterface
= 26
5340 CXIdxEntityLang_None
= 0,
5341 CXIdxEntityLang_C
= 1,
5342 CXIdxEntityLang_ObjC
= 2,
5343 CXIdxEntityLang_CXX
= 3
5344 } CXIdxEntityLanguage
;
5347 * \brief Extra C++ template information for an entity. This can apply to:
5348 * CXIdxEntity_Function
5349 * CXIdxEntity_CXXClass
5350 * CXIdxEntity_CXXStaticMethod
5351 * CXIdxEntity_CXXInstanceMethod
5352 * CXIdxEntity_CXXConstructor
5353 * CXIdxEntity_CXXConversionFunction
5354 * CXIdxEntity_CXXTypeAlias
5357 CXIdxEntity_NonTemplate
= 0,
5358 CXIdxEntity_Template
= 1,
5359 CXIdxEntity_TemplatePartialSpecialization
= 2,
5360 CXIdxEntity_TemplateSpecialization
= 3
5361 } CXIdxEntityCXXTemplateKind
;
5364 CXIdxAttr_Unexposed
= 0,
5365 CXIdxAttr_IBAction
= 1,
5366 CXIdxAttr_IBOutlet
= 2,
5367 CXIdxAttr_IBOutletCollection
= 3
5377 CXIdxEntityKind kind
;
5378 CXIdxEntityCXXTemplateKind templateKind
;
5379 CXIdxEntityLanguage lang
;
5383 const CXIdxAttrInfo
*const *attributes
;
5384 unsigned numAttributes
;
5389 } CXIdxContainerInfo
;
5392 const CXIdxAttrInfo
*attrInfo
;
5393 const CXIdxEntityInfo
*objcClass
;
5394 CXCursor classCursor
;
5396 } CXIdxIBOutletCollectionAttrInfo
;
5399 CXIdxDeclFlag_Skipped
= 0x1
5400 } CXIdxDeclInfoFlags
;
5403 const CXIdxEntityInfo
*entityInfo
;
5406 const CXIdxContainerInfo
*semanticContainer
;
5408 * \brief Generally same as #semanticContainer but can be different in
5409 * cases like out-of-line C++ member functions.
5411 const CXIdxContainerInfo
*lexicalContainer
;
5412 int isRedeclaration
;
5415 const CXIdxContainerInfo
*declAsContainer
;
5417 * \brief Whether the declaration exists in code or was created implicitly
5418 * by the compiler, e.g. implicit Objective-C methods for properties.
5421 const CXIdxAttrInfo
*const *attributes
;
5422 unsigned numAttributes
;
5429 CXIdxObjCContainer_ForwardRef
= 0,
5430 CXIdxObjCContainer_Interface
= 1,
5431 CXIdxObjCContainer_Implementation
= 2
5432 } CXIdxObjCContainerKind
;
5435 const CXIdxDeclInfo
*declInfo
;
5436 CXIdxObjCContainerKind kind
;
5437 } CXIdxObjCContainerDeclInfo
;
5440 const CXIdxEntityInfo
*base
;
5443 } CXIdxBaseClassInfo
;
5446 const CXIdxEntityInfo
*protocol
;
5449 } CXIdxObjCProtocolRefInfo
;
5452 const CXIdxObjCProtocolRefInfo
*const *protocols
;
5453 unsigned numProtocols
;
5454 } CXIdxObjCProtocolRefListInfo
;
5457 const CXIdxObjCContainerDeclInfo
*containerInfo
;
5458 const CXIdxBaseClassInfo
*superInfo
;
5459 const CXIdxObjCProtocolRefListInfo
*protocols
;
5460 } CXIdxObjCInterfaceDeclInfo
;
5463 const CXIdxObjCContainerDeclInfo
*containerInfo
;
5464 const CXIdxEntityInfo
*objcClass
;
5465 CXCursor classCursor
;
5467 const CXIdxObjCProtocolRefListInfo
*protocols
;
5468 } CXIdxObjCCategoryDeclInfo
;
5471 const CXIdxDeclInfo
*declInfo
;
5472 const CXIdxEntityInfo
*getter
;
5473 const CXIdxEntityInfo
*setter
;
5474 } CXIdxObjCPropertyDeclInfo
;
5477 const CXIdxDeclInfo
*declInfo
;
5478 const CXIdxBaseClassInfo
*const *bases
;
5480 } CXIdxCXXClassDeclInfo
;
5483 * \brief Data for IndexerCallbacks#indexEntityReference.
5487 * \brief The entity is referenced directly in user's code.
5489 CXIdxEntityRef_Direct
= 1,
5491 * \brief An implicit reference, e.g. a reference of an Objective-C method
5492 * via the dot syntax.
5494 CXIdxEntityRef_Implicit
= 2
5495 } CXIdxEntityRefKind
;
5498 * \brief Data for IndexerCallbacks#indexEntityReference.
5501 CXIdxEntityRefKind kind
;
5503 * \brief Reference cursor.
5508 * \brief The entity that gets referenced.
5510 const CXIdxEntityInfo
*referencedEntity
;
5512 * \brief Immediate "parent" of the reference. For example:
5518 * The parent of reference of type 'Foo' is the variable 'var'.
5519 * For references inside statement bodies of functions/methods,
5520 * the parentEntity will be the function/method.
5522 const CXIdxEntityInfo
*parentEntity
;
5524 * \brief Lexical container context of the reference.
5526 const CXIdxContainerInfo
*container
;
5527 } CXIdxEntityRefInfo
;
5530 * \brief A group of callbacks used by #clang_indexSourceFile and
5531 * #clang_indexTranslationUnit.
5535 * \brief Called periodically to check whether indexing should be aborted.
5536 * Should return 0 to continue, and non-zero to abort.
5538 int (*abortQuery
)(CXClientData client_data
, void *reserved
);
5541 * \brief Called at the end of indexing; passes the complete diagnostic set.
5543 void (*diagnostic
)(CXClientData client_data
,
5544 CXDiagnosticSet
, void *reserved
);
5546 CXIdxClientFile (*enteredMainFile
)(CXClientData client_data
,
5547 CXFile mainFile
, void *reserved
);
5550 * \brief Called when a file gets \#included/\#imported.
5552 CXIdxClientFile (*ppIncludedFile
)(CXClientData client_data
,
5553 const CXIdxIncludedFileInfo
*);
5556 * \brief Called when a AST file (PCH or module) gets imported.
5558 * AST files will not get indexed (there will not be callbacks to index all
5559 * the entities in an AST file). The recommended action is that, if the AST
5560 * file is not already indexed, to initiate a new indexing job specific to
5563 CXIdxClientASTFile (*importedASTFile
)(CXClientData client_data
,
5564 const CXIdxImportedASTFileInfo
*);
5567 * \brief Called at the beginning of indexing a translation unit.
5569 CXIdxClientContainer (*startedTranslationUnit
)(CXClientData client_data
,
5572 void (*indexDeclaration
)(CXClientData client_data
,
5573 const CXIdxDeclInfo
*);
5576 * \brief Called to index a reference of an entity.
5578 void (*indexEntityReference
)(CXClientData client_data
,
5579 const CXIdxEntityRefInfo
*);
5583 CINDEX_LINKAGE
int clang_index_isEntityObjCContainerKind(CXIdxEntityKind
);
5584 CINDEX_LINKAGE
const CXIdxObjCContainerDeclInfo
*
5585 clang_index_getObjCContainerDeclInfo(const CXIdxDeclInfo
*);
5587 CINDEX_LINKAGE
const CXIdxObjCInterfaceDeclInfo
*
5588 clang_index_getObjCInterfaceDeclInfo(const CXIdxDeclInfo
*);
5591 const CXIdxObjCCategoryDeclInfo
*
5592 clang_index_getObjCCategoryDeclInfo(const CXIdxDeclInfo
*);
5594 CINDEX_LINKAGE
const CXIdxObjCProtocolRefListInfo
*
5595 clang_index_getObjCProtocolRefListInfo(const CXIdxDeclInfo
*);
5597 CINDEX_LINKAGE
const CXIdxObjCPropertyDeclInfo
*
5598 clang_index_getObjCPropertyDeclInfo(const CXIdxDeclInfo
*);
5600 CINDEX_LINKAGE
const CXIdxIBOutletCollectionAttrInfo
*
5601 clang_index_getIBOutletCollectionAttrInfo(const CXIdxAttrInfo
*);
5603 CINDEX_LINKAGE
const CXIdxCXXClassDeclInfo
*
5604 clang_index_getCXXClassDeclInfo(const CXIdxDeclInfo
*);
5607 * \brief For retrieving a custom CXIdxClientContainer attached to a
5610 CINDEX_LINKAGE CXIdxClientContainer
5611 clang_index_getClientContainer(const CXIdxContainerInfo
*);
5614 * \brief For setting a custom CXIdxClientContainer attached to a
5618 clang_index_setClientContainer(const CXIdxContainerInfo
*,CXIdxClientContainer
);
5621 * \brief For retrieving a custom CXIdxClientEntity attached to an entity.
5623 CINDEX_LINKAGE CXIdxClientEntity
5624 clang_index_getClientEntity(const CXIdxEntityInfo
*);
5627 * \brief For setting a custom CXIdxClientEntity attached to an entity.
5630 clang_index_setClientEntity(const CXIdxEntityInfo
*, CXIdxClientEntity
);
5633 * \brief An indexing action/session, to be applied to one or multiple
5634 * translation units.
5636 typedef void *CXIndexAction
;
5639 * \brief An indexing action/session, to be applied to one or multiple
5640 * translation units.
5642 * \param CIdx The index object with which the index action will be associated.
5644 CINDEX_LINKAGE CXIndexAction
clang_IndexAction_create(CXIndex CIdx
);
5647 * \brief Destroy the given index action.
5649 * The index action must not be destroyed until all of the translation units
5650 * created within that index action have been destroyed.
5652 CINDEX_LINKAGE
void clang_IndexAction_dispose(CXIndexAction
);
5656 * \brief Used to indicate that no special indexing options are needed.
5658 CXIndexOpt_None
= 0x0,
5661 * \brief Used to indicate that IndexerCallbacks#indexEntityReference should
5662 * be invoked for only one reference of an entity per source file that does
5663 * not also include a declaration/definition of the entity.
5665 CXIndexOpt_SuppressRedundantRefs
= 0x1,
5668 * \brief Function-local symbols should be indexed. If this is not set
5669 * function-local symbols will be ignored.
5671 CXIndexOpt_IndexFunctionLocalSymbols
= 0x2,
5674 * \brief Implicit function/class template instantiations should be indexed.
5675 * If this is not set, implicit instantiations will be ignored.
5677 CXIndexOpt_IndexImplicitTemplateInstantiations
= 0x4,
5680 * \brief Suppress all compiler warnings when parsing for indexing.
5682 CXIndexOpt_SuppressWarnings
= 0x8,
5685 * \brief Skip a function/method body that was already parsed during an
5686 * indexing session associated with a \c CXIndexAction object.
5687 * Bodies in system headers are always skipped.
5689 CXIndexOpt_SkipParsedBodiesInSession
= 0x10
5694 * \brief Index the given source file and the translation unit corresponding
5695 * to that file via callbacks implemented through #IndexerCallbacks.
5697 * \param client_data pointer data supplied by the client, which will
5698 * be passed to the invoked callbacks.
5700 * \param index_callbacks Pointer to indexing callbacks that the client
5703 * \param index_callbacks_size Size of #IndexerCallbacks structure that gets
5704 * passed in index_callbacks.
5706 * \param index_options A bitmask of options that affects how indexing is
5707 * performed. This should be a bitwise OR of the CXIndexOpt_XXX flags.
5709 * \param[out] out_TU pointer to store a \c CXTranslationUnit that can be
5710 * reused after indexing is finished. Set to \c NULL if you do not require it.
5712 * \returns 0 on success or if there were errors from which the compiler could
5713 * recover. If there is a failure from which there is no recovery, returns
5714 * a non-zero \c CXErrorCode.
5716 * The rest of the parameters are the same as #clang_parseTranslationUnit.
5718 CINDEX_LINKAGE
int clang_indexSourceFile(CXIndexAction
,
5719 CXClientData client_data
,
5720 IndexerCallbacks
*index_callbacks
,
5721 unsigned index_callbacks_size
,
5722 unsigned index_options
,
5723 const char *source_filename
,
5724 const char * const *command_line_args
,
5725 int num_command_line_args
,
5726 struct CXUnsavedFile
*unsaved_files
,
5727 unsigned num_unsaved_files
,
5728 CXTranslationUnit
*out_TU
,
5729 unsigned TU_options
);
5732 * \brief Same as clang_indexSourceFile but requires a full command line
5733 * for \c command_line_args including argv[0]. This is useful if the standard
5734 * library paths are relative to the binary.
5736 CINDEX_LINKAGE
int clang_indexSourceFileFullArgv(
5737 CXIndexAction
, CXClientData client_data
, IndexerCallbacks
*index_callbacks
,
5738 unsigned index_callbacks_size
, unsigned index_options
,
5739 const char *source_filename
, const char *const *command_line_args
,
5740 int num_command_line_args
, struct CXUnsavedFile
*unsaved_files
,
5741 unsigned num_unsaved_files
, CXTranslationUnit
*out_TU
, unsigned TU_options
);
5744 * \brief Index the given translation unit via callbacks implemented through
5745 * #IndexerCallbacks.
5747 * The order of callback invocations is not guaranteed to be the same as
5748 * when indexing a source file. The high level order will be:
5750 * -Preprocessor callbacks invocations
5751 * -Declaration/reference callbacks invocations
5752 * -Diagnostic callback invocations
5754 * The parameters are the same as #clang_indexSourceFile.
5756 * \returns If there is a failure from which there is no recovery, returns
5757 * non-zero, otherwise returns 0.
5759 CINDEX_LINKAGE
int clang_indexTranslationUnit(CXIndexAction
,
5760 CXClientData client_data
,
5761 IndexerCallbacks
*index_callbacks
,
5762 unsigned index_callbacks_size
,
5763 unsigned index_options
,
5767 * \brief Retrieve the CXIdxFile, file, line, column, and offset represented by
5768 * the given CXIdxLoc.
5770 * If the location refers into a macro expansion, retrieves the
5771 * location of the macro expansion and if it refers into a macro argument
5772 * retrieves the location of the argument.
5774 CINDEX_LINKAGE
void clang_indexLoc_getFileLocation(CXIdxLoc loc
,
5775 CXIdxClientFile
*indexFile
,
5782 * \brief Retrieve the CXSourceLocation represented by the given CXIdxLoc.
5785 CXSourceLocation
clang_indexLoc_getCXSourceLocation(CXIdxLoc loc
);
5788 * \brief Visitor invoked for each field found by a traversal.
5790 * This visitor function will be invoked for each field found by
5791 * \c clang_Type_visitFields. Its first argument is the cursor being
5792 * visited, its second argument is the client data provided to
5793 * \c clang_Type_visitFields.
5795 * The visitor should return one of the \c CXVisitorResult values
5796 * to direct \c clang_Type_visitFields.
5798 typedef enum CXVisitorResult (*CXFieldVisitor
)(CXCursor C
,
5799 CXClientData client_data
);
5802 * \brief Visit the fields of a particular type.
5804 * This function visits all the direct fields of the given cursor,
5805 * invoking the given \p visitor function with the cursors of each
5806 * visited field. The traversal may be ended prematurely, if
5807 * the visitor returns \c CXFieldVisit_Break.
5809 * \param T the record type whose field may be visited.
5811 * \param visitor the visitor function that will be invoked for each
5814 * \param client_data pointer data supplied by the client, which will
5815 * be passed to the visitor each time it is invoked.
5817 * \returns a non-zero value if the traversal was terminated
5818 * prematurely by the visitor returning \c CXFieldVisit_Break.
5820 CINDEX_LINKAGE
unsigned clang_Type_visitFields(CXType T
,
5821 CXFieldVisitor visitor
,
5822 CXClientData client_data
);