Age | Commit message (Expand) | Author |
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 | Implement clang_annotateTokens(), which associates cursors with each | Douglas Gregor |
2010-01-26 | Add 'PostVisitTU' callback hook to 'perform_test_load()' to allow a special c... | Ted Kremenek |
2010-01-26 | Allow the 'visitor' argument to 'perform_test_load()' to be NULL. The | Ted Kremenek |
2010-01-26 | Introduce a CIndex API for lexing the raw tokens within a given source | Douglas Gregor |
2010-01-24 | -fno-rtti is now the default. | Chris Lattner |
2010-01-23 | Extend clang_createTranslationUnitFromSourceFile() to support creating | Douglas Gregor |
2010-01-22 | Yet more CIndex API cleanup: | Douglas Gregor |
2010-01-20 | Stash a CXXUnit pointer into each cursor. This allows us to simplify | Douglas Gregor |
2010-01-20 | Switch c-index-test from clang_loadDeclaration() 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 | Introduce clang_getCursorLocation(), which supercedes | Douglas Gregor |
2010-01-18 | Clean up the CIndex API slightly. | Douglas Gregor |
2010-01-18 | Replace clang_getDeclUSR() with clang_getCursorUSR(). Also remove printing '... | Ted Kremenek |
2010-01-16 | Remove TranslateKind and centralize Decl -> CXCursorKind in GetCursorKind(). ... | Ted Kremenek |
2010-01-15 | Make CXCursor's data opaque. | Douglas Gregor |
2010-01-15 | Add -cursor-at=file:line:column command line option to c-index-test, | Douglas Gregor |
2010-01-12 | Add USR printing modes to c-index-test. | Ted Kremenek |
2010-01-12 | Make 'CXTranslationUnitIterator' an argument to perform_test_load(), | Ted Kremenek |
2010-01-10 | Improve code completion by introducing patterns for the various C and | Douglas Gregor |
2010-01-07 | Add FileCheck prefix to another location in the output of c-index-test. | Ted Kremenek |
2010-01-05 | Remove unused variables. | Ted Kremenek |
2010-01-05 | Add C API hook 'clang_getDeclExtent()', which returns the source extent of a ... | Ted Kremenek |
2009-12-18 | Extend code-completion results with the type of each result | Douglas Gregor |
2009-12-18 | Change clang_codeComplete API to return the results in a structure on | Douglas Gregor |
2009-12-17 | Test for errors during fread() inside c-index-test and handle them | Chandler Carruth |
2009-12-03 | Switch clang_createTranslationUnitFromSourceFile to use ASTUnit::LoadFromComm... | Daniel Dunbar |
2009-12-02 | Normalize CIndex/c-index-test/index-test link lines in the hopes it will fix | Daniel Dunbar |
2009-12-02 | Extend the CIndex code-completion API to perform code completion | Douglas Gregor |
2009-12-02 | Fix relative ordering of Analyis library. | Daniel Dunbar |
2009-12-01 | Add ASTUnit::LoadFromCompilerInvocation, which does what it says. | Daniel Dunbar |
2009-12-01 | c-index-test: Split "function scanning" behavior into its own "filter" -- its | Daniel Dunbar |
2009-12-01 | Add c-index-test -test-load-source, which loads the translation unit from a s... | Daniel Dunbar |
2009-11-18 | Add special clang_getCursor() support for @class. Handles <rdar://problem/73... | Ted Kremenek |
2009-11-17 | fgetln is a BSDism; replace it with more portable code. | Benjamin Kramer |
2009-11-17 | Add c-index-test mode "-test-file-scan", which scans a source file and calls ... | Ted Kremenek |
2009-11-17 | Organize c-index-test into logic sections, and add section headers. | Ted Kremenek |
2009-11-17 | Clean up c-index-test command line usage a bit by requiring a "-test-load-tu"... | Ted Kremenek |
2009-11-17 | Have clang_getCursorSource() return NULL when the source location is invalid ... | Ted Kremenek |
2009-11-09 | Improve c-index-test's parsing of the -code-completion-at=file:line:column ar... | Douglas Gregor |
2009-11-09 | Introduce CXString type and associated functions clang_getCString() and clang... | Steve Naroff |
2009-11-09 | C doesn't allow mixing declarations and statements, silly | Douglas Gregor |
2009-11-09 | Minor cleanup for CIndex-based code-completion: | Douglas Gregor |
2009-11-08 | Revert unintentional change to this file. | Daniel Dunbar |
2009-11-08 | CIndex: Add temporary hack to leak memory instead of returning invalid pointers. | Daniel Dunbar |