aboutsummaryrefslogtreecommitdiff
path: root/tools/CIndex/CIndex.exports
AgeCommit message (Expand)Author
2010-04-30Rename 'CIndex' to 'libclang', since it has basically become our stable publicDaniel Dunbar
2010-04-16Convert libCIndex to use the new native EXPORTED_SYMBOL_FILE mechanism.Dan Gohman
2010-04-12Add 'clang_getCursorLanguage' to return the "language" of the AST element (e....Ted Kremenek
2010-04-12Sort exports file.Ted Kremenek
2010-03-18Experimental stab at using relexing to identify preprocessorDouglas Gregor
2010-03-15Rename clang_constructUSR_ObjCategory to clang_constructUSR_ObjCCategory.Ted Kremenek
2010-03-13Implement several CIndex functions for constructing USRs from C-strings inste...Ted Kremenek
2010-03-08Implement clang_isUnexposed(), a predicate function to simplify filtering outTed Kremenek
2010-03-03Export clang_getCursorLinkage().Ted Kremenek
2010-02-22Rework the CIndex API for displaying diagnostics. Instead of printingDouglas Gregor
2010-02-19Simplify the CIndex fix-it API, now that we have half-open CXSourceRanges.Douglas Gregor
2010-02-18Re-apply my diagnostics-capture patch for CIndex, with some tweaks toDouglas Gregor
2010-02-18Revert my CIndex diagnostic changes (r96603, 96606, 96607), which wereDouglas Gregor
2010-02-18Introduce debugging/testing hook clang_enableStackTraces() intoDouglas Gregor
2010-02-18Introduce CIndex API functions for displaying a diagnostic, with someDouglas Gregor
2010-02-18Rework how CIndex handles diagnostics. Rather than using a callback,Douglas Gregor
2010-02-08Clean up the CIndex interface to diagnostic ranges. Thanks, Daniel!Douglas Gregor
2010-01-28Implement a diagnostics callback for the C interface to Clang, so thatDouglas Gregor
2010-01-26Implement 'clang_getInclusions()' in CIndex. This API allows clients to walk...Ted Kremenek
2010-01-26Eliminate clang_getInstantiationLocationOffset(), and instead add anDouglas Gregor
2010-01-26Introduce a CIndex API for lexing the raw tokens within a given sourceDouglas Gregor
2010-01-26Introduce clang_getInstantiationLocationOffset(), which decomposes aDouglas Gregor
2010-01-22Add 'clang_getClangVersion()' function to CIndex. This exposes the full Clan...Ted Kremenek
2010-01-22Yet more CIndex API cleanup:Douglas Gregor
2010-01-20Kill CXEntity and CXDecl. The first has never been used, while theDouglas Gregor
2010-01-20Kill some CXDecl-related APIs that have been superceded byDouglas Gregor
2010-01-20Kill clang_loadDeclaration() and clang_loadTranslationUnit().Douglas Gregor
2010-01-20Introduce a new, cursor-based traversal function that visits theDouglas Gregor
2010-01-20Kill off clang_getDeclColumn, clang_getDeclExtent, clang_getDeclLine,Douglas Gregor
2010-01-20Introduce a special cursor kind for the translation unit, to serve asDouglas Gregor
2010-01-19Extend the CIndex API with direct support for expressions andDouglas Gregor
2010-01-19Rework the CXSourceLocation and CXSourceRange APIs. They are nowDouglas Gregor
2010-01-19Eliminate cursor kinds used to express definitions. Instead, provideDouglas Gregor
2010-01-19Introduce clang_getCursorReferenced, to get a cursor pointing at theDouglas Gregor
2010-01-19Implement clang_getCursorExtent, which provides a source range for theDouglas Gregor
2010-01-18Now that a reasonable deprecation cycle has passed, killDouglas Gregor
2010-01-18Introduce clang_getCursorLocation(), which supercedesDouglas Gregor
2010-01-18Replace clang_getDeclUSR() with clang_getCursorUSR(). Also remove printing '...Ted Kremenek
2010-01-12Make clang_getDeclUSR() visible.Ted Kremenek
2010-01-11CIndex:Ted Kremenek
2010-01-08For now, add back clang_getDeclSource().Ted Kremenek
2010-01-06Add _clang_getDeclExtent to export list.Daniel Dunbar
2010-01-05Remove deprecated function 'clang_getDeclSource()'. Use 'clang_getDeclFile()...Ted Kremenek
2010-01-05Add C API hook 'clang_getDeclExtent()', which returns the source extent of a ...Ted Kremenek
2010-01-05Split (mostly nonexistent) USR code out from the main CIndex logic.Ted Kremenek
2009-12-18Change clang_codeComplete API to return the results in a structure onDouglas Gregor
2009-12-03Switch clang_createTranslationUnitFromSourceFile to use ASTUnit::LoadFromComm...Daniel Dunbar
2009-11-17Add clang_getNullCursor() and clang_equalCursors() (the latter for comparing ...Ted Kremenek
2009-11-09Introduce CXString type and associated functions clang_getCString() and clang...Steve Naroff
2009-11-09Minor cleanup for CIndex-based code-completion:Douglas Gregor