aboutsummaryrefslogtreecommitdiff
path: root/tools/c-index-test/c-index-test.c
AgeCommit message (Expand)Author
2010-01-10Improve code completion by introducing patterns for the various C andDouglas Gregor
2010-01-07Add FileCheck prefix to another location in the output of c-index-test.Ted Kremenek
2010-01-05Remove unused variables.Ted Kremenek
2010-01-05Add C API hook 'clang_getDeclExtent()', which returns the source extent of a ...Ted Kremenek
2009-12-18Extend code-completion results with the type of each resultDouglas Gregor
2009-12-18Change clang_codeComplete API to return the results in a structure onDouglas Gregor
2009-12-17Test for errors during fread() inside c-index-test and handle themChandler Carruth
2009-12-03Switch clang_createTranslationUnitFromSourceFile to use ASTUnit::LoadFromComm...Daniel Dunbar
2009-12-02Extend the CIndex code-completion API to perform code completionDouglas Gregor
2009-12-01c-index-test: Split "function scanning" behavior into its own "filter" -- itsDaniel Dunbar
2009-12-01Add c-index-test -test-load-source, which loads the translation unit from a s...Daniel Dunbar
2009-11-18Add special clang_getCursor() support for @class. Handles <rdar://problem/73...Ted Kremenek
2009-11-17fgetln is a BSDism; replace it with more portable code.Benjamin Kramer
2009-11-17Add c-index-test mode "-test-file-scan", which scans a source file and calls ...Ted Kremenek
2009-11-17Organize c-index-test into logic sections, and add section headers.Ted Kremenek
2009-11-17Clean up c-index-test command line usage a bit by requiring a "-test-load-tu"...Ted Kremenek
2009-11-17Have clang_getCursorSource() return NULL when the source location is invalid ...Ted Kremenek
2009-11-09Improve c-index-test's parsing of the -code-completion-at=file:line:column ar...Douglas Gregor
2009-11-09Introduce CXString type and associated functions clang_getCString() and clang...Steve Naroff
2009-11-09C doesn't allow mixing declarations and statements, sillyDouglas Gregor
2009-11-09Minor cleanup for CIndex-based code-completion:Douglas Gregor
2009-11-08Revert unintentional change to this file.Daniel Dunbar
2009-11-08CIndex: Add temporary hack to leak memory instead of returning invalid pointers.Daniel Dunbar
2009-11-07Fix some build warnings.Daniel Dunbar
2009-11-07Various improvements to Clang's code-completion infrastructure:Douglas Gregor
2009-10-28Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to <...Steve Naroff
2009-10-27Changes for building as a Windows DLLJohn Thompson
2009-10-22Fixes a warning.Fariborz Jahanian
2009-10-22Split clang_getCursor() into clang_getCursor() and clang_getCursorWithHint().Ted Kremenek
2009-10-21Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up searc...Steve Naroff
2009-10-20- Extend clang_createIndex() to support PCH and diagnostic 'filtering'. This ...Steve Naroff
2009-10-19Really fix <rdar://problem/7312058> by adding a 'displayDiagnostics' option toTed Kremenek
2009-10-17Fix compiler warning: "ISO C90 forbids mixed declarations and code"Ted Kremenek
2009-10-17Fix warning: 'warning: C++ style comments are not allowed in ISO C90'Ted Kremenek
2009-10-16Make CIndex and c-index-test a little bit more robust. The onlyDouglas Gregor
2009-10-16Keep track of whether declararions were loaded from a precompiledDouglas Gregor
2009-10-15Make sure temporary files get unlinked.Steve Naroff
2009-10-05Fix C90 compile warning about mixed declarations and code.Eric Christopher
2009-10-01Add support for class and protocol references.Steve Naroff
2009-09-25Add clang_getDeclLine and clang_getDeclColumnSteve Naroff
2009-09-24Add test for C-based indexing API, using FileCheck utility.Steve Naroff
2009-09-23Some minor cleanups...Steve Naroff
2009-09-23More work to enable more exhaustive testing of the indexing API.Steve Naroff
2009-09-15- clang_getCursor(): Replace asserts with error codes (CXCursor_InvalidFile, ...Steve Naroff
2009-09-11Make sure ObjCInterfaceDecl's that are forward declared always contain a vali...Steve Naroff
2009-09-04Implement accessors clang_getCursorKind(), clang_getCursorDecl().Steve Naroff
2009-09-03- Add back some harmless code that part of a reverted commit (r80859). I'll i...Steve Naroff
2009-09-03Revert "Visit function/method bodies and issue callback for parameters and localDaniel Dunbar
2009-09-03Visit function/method bodies and issue callback for parameters and local vari...Steve Naroff
2009-09-02Fix warnings.Eli Friedman