| Commit message (Expand) | Author | Age | Files | Lines |
* | Rework the CIndex API for displaying diagnostics. Instead of printing | Douglas Gregor | 2010-02-22 | 1 | -7/+6 |
* | Simplify the CIndex fix-it API, now that we have half-open CXSourceRanges. | Douglas Gregor | 2010-02-19 | 1 | -79/+21 |
* | Re-apply my diagnostics-capture patch for CIndex, with some tweaks to | Douglas Gregor | 2010-02-18 | 1 | -4/+79 |
* | Revert my CIndex diagnostic changes (r96603, 96606, 96607), which were | Douglas Gregor | 2010-02-18 | 1 | -79/+4 |
* | Introduce debugging/testing hook clang_enableStackTraces() into | Douglas Gregor | 2010-02-18 | 1 | -2/+2 |
* | Resurrect the displayDiagnostics parameter to clang_createIndex(), and | Douglas Gregor | 2010-02-18 | 1 | -3/+4 |
* | Introduce CIndex API functions for displaying a diagnostic, with some | Douglas Gregor | 2010-02-18 | 1 | -0/+74 |
* | Rework how CIndex handles diagnostics. Rather than using a callback, | Douglas Gregor | 2010-02-18 | 1 | -17/+41 |
* | Start adding cursor kinds for attributes, with first exposing | Ted Kremenek | 2010-02-18 | 1 | -1/+13 |
* | Fix comment. | Daniel Dunbar | 2010-02-17 | 1 | -2/+2 |
* | Convert clang_getCompletionChunkText() to return a CXString. | Ted Kremenek | 2010-02-17 | 1 | -1/+1 |
* | Change clang_getCursorKindSpelling() to return a CXString | Ted Kremenek | 2010-02-17 | 1 | -1/+1 |
* | Change clang_getFileName() to return a 'CXString' instead of 'const char *'. | Ted Kremenek | 2010-02-17 | 1 | -1/+1 |
* | CIndex: Switch CXSourceRange to proper half-open intervals. | Daniel Dunbar | 2010-02-14 | 1 | -1/+1 |
* | Make the following functions thread-safe but having them return an std::strin... | Ted Kremenek | 2010-02-12 | 1 | -1/+1 |
* | Clean up the CIndex interface to diagnostic ranges. Thanks, Daniel! | Douglas Gregor | 2010-02-08 | 1 | -17/+13 |
* | Note that a CXIndex cannot be destroyed until after all of its translation un... | Douglas Gregor | 2010-02-08 | 1 | -0/+7 |
* | Switch the remaining diagnostic printing in CIndex over to the | Douglas Gregor | 2010-01-28 | 1 | -8/+13 |
* | Implement a diagnostics callback for the C interface to Clang, so that | Douglas Gregor | 2010-01-28 | 1 | -56/+286 |
* | Implement 'clang_getInclusions()' in CIndex. This API allows clients to walk... | Ted Kremenek | 2010-01-26 | 1 | -0/+32 |
* | Eliminate clang_getInstantiationLocationOffset(), and instead add an | Douglas Gregor | 2010-01-26 | 1 | -21/+7 |
* | Implement clang_annotateTokens(), which associates cursors with each | Douglas Gregor | 2010-01-26 | 1 | -5/+22 |
* | Introduce a CIndex API for lexing the raw tokens within a given source | Douglas Gregor | 2010-01-26 | 1 | -0/+119 |
* | Introduce clang_getInstantiationLocationOffset(), which decomposes a | Douglas Gregor | 2010-01-26 | 1 | -0/+18 |
* | Update comment. | Daniel Dunbar | 2010-01-25 | 1 | -2/+3 |
* | Tweak clang_visitChildren comment. | Daniel Dunbar | 2010-01-24 | 1 | -3/+1 |
* | Index.h: Tweak comments, delete trailing whitespace, fix a few typos, etc. | Daniel Dunbar | 2010-01-24 | 1 | -140/+144 |
* | Add doxygen comment to clang_getClangVersion(). | Ted Kremenek | 2010-01-23 | 1 | -1/+5 |
* | Extend clang_createTranslationUnitFromSourceFile() to support creating | Douglas Gregor | 2010-01-23 | 1 | -5/+13 |
* | Add 'clang_getClangVersion()' function to CIndex. This exposes the full Clan... | Ted Kremenek | 2010-01-22 | 1 | -0/+13 |
* | Improve content and structure of the Doxygen documentation for the | Douglas Gregor | 2010-01-22 | 1 | -267/+401 |
* | Yet more CIndex API cleanup: | Douglas Gregor | 2010-01-22 | 1 | -5/+60 |
* | Introduce type references into the C API, capturing references to | Douglas Gregor | 2010-01-21 | 1 | -1/+17 |
* | Stash a CXXUnit pointer into each cursor. This allows us to simplify | Douglas Gregor | 2010-01-20 | 1 | -5/+4 |
* | Yet more Doxygen-comment tweaking in the CIndex library. | Douglas Gregor | 2010-01-20 | 1 | -17/+52 |
* | Improve Doxygen documentation for the CIndex library, somewhat. | Douglas Gregor | 2010-01-20 | 1 | -13/+57 |
* | Kill CXEntity and CXDecl. The first has never been used, while the | Douglas Gregor | 2010-01-20 | 1 | -20/+0 |
* | Kill some CXDecl-related APIs that have been superceded by | Douglas Gregor | 2010-01-20 | 1 | -9/+0 |
* | Kill CXStmt. It isn't being used anywhere, and has no future. | Douglas Gregor | 2010-01-20 | 1 | -1/+0 |
* | Kill clang_loadDeclaration() and clang_loadTranslationUnit(). | Douglas Gregor | 2010-01-20 | 1 | -53/+4 |
* | Introduce a new, cursor-based traversal function that visits the | Douglas Gregor | 2010-01-20 | 1 | -0/+69 |
* | Attempt to improve CIndex Doxygen organization, although I can't actually tes... | Douglas Gregor | 2010-01-20 | 1 | -9/+18 |
* | Kill off clang_getDeclColumn, clang_getDeclExtent, clang_getDeclLine, | Douglas Gregor | 2010-01-20 | 1 | -11/+0 |
* | Introduce a special cursor kind for the translation unit, to serve as | Douglas Gregor | 2010-01-20 | 1 | -2/+18 |
* | CXCursor_UnexposedDecl to the first declaration kind | Douglas Gregor | 2010-01-20 | 1 | -12/+12 |
* | Kill CXCursor_ObjCSelectorRef, CXCursor_VarRef, CXCursor_FunctionRef, | Douglas Gregor | 2010-01-19 | 1 | -6/+1 |
* | Extend the CIndex API with direct support for expressions and | Douglas Gregor | 2010-01-19 | 1 | -1/+51 |
* | Kill the unused and unnecessary CXCursor_MemberRef, twin to the | Douglas Gregor | 2010-01-19 | 1 | -5/+4 |
* | Kill CXCursor_ObjCIvarRef. Such cursors could never be created, and | Douglas Gregor | 2010-01-19 | 1 | -1/+0 |
* | Introduce the notion of an "unexposed" declaration into the CIndex | Douglas Gregor | 2010-01-19 | 1 | -1/+33 |