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