1. 2ef6f8f Convert clang_getCompletionChunkText() to return a CXString. by Ted Kremenek · 14 years ago
  2. e68fff6 Change clang_getCursorKindSpelling() to return a CXString by Ted Kremenek · 14 years ago
  3. 7484407 Change clang_getFileName() to return a 'CXString' instead of 'const char *'. by Ted Kremenek · 14 years ago
  4. 9715082 c-index-test: Pass appropriate client data. by Daniel Dunbar · 14 years ago
  5. d52864b CIndex: Switch CXSourceRange to proper half-open intervals. by Daniel Dunbar · 14 years ago
  6. 8f0bf81 c-index-test: Unify and always print half-open extents. by Daniel Dunbar · 14 years ago
  7. 2389eff c-index-test: Simplify file scanning code. by Daniel Dunbar · 14 years ago
  8. 51b058c c-index-test: Unify syntax for printing extents. Yes, there were 4. by Daniel Dunbar · 14 years ago
  9. 020a095 Attempt to always dispose of the CXIndex object in c-index-test. by Ted Kremenek · 14 years ago
  10. b1ffee6 c-index-test: Add "none" filter, useful for performance testing. by Daniel Dunbar · 14 years ago
  11. a3890ba Clean up the CIndex interface to diagnostic ranges. Thanks, Daniel! by Douglas Gregor · 14 years ago
  12. 51c6d38 When printing diagnostics in c-index-test, also print source ranges by Douglas Gregor · 14 years ago
  13. 936ea3b Switch the remaining diagnostic printing in CIndex over to the by Douglas Gregor · 14 years ago
  14. 5352ac0 Implement a diagnostics callback for the C interface to Clang, so that by Douglas Gregor · 14 years ago
  15. 16b55a7 Implement 'clang_getInclusions()' in CIndex. This API allows clients to walk the set of files included in a translation unit via the C API. by Ted Kremenek · 14 years ago
  16. 46766dc Eliminate clang_getInstantiationLocationOffset(), and instead add an by Douglas Gregor · 14 years ago
  17. 0045e9f Implement clang_annotateTokens(), which associates cursors with each by Douglas Gregor · 14 years ago
  18. ce2ae88 Add 'PostVisitTU' callback hook to 'perform_test_load()' to allow a special callback after the translation unit has been loaded (and streamed). by Ted Kremenek · 14 years ago
  19. e3ee02a Allow the 'visitor' argument to 'perform_test_load()' to be NULL. The by Ted Kremenek · 14 years ago
  20. fc8ea23 Introduce a CIndex API for lexing the raw tokens within a given source by Douglas Gregor · 14 years ago
  21. 0bb46d2 -fno-rtti is now the default. by Chris Lattner · 14 years ago
  22. 4db64a4 Extend clang_createTranslationUnitFromSourceFile() to support creating by Douglas Gregor · 14 years ago
  23. b979034 Yet more CIndex API cleanup: by Douglas Gregor · 14 years ago
  24. b2cd487 Stash a CXXUnit pointer into each cursor. This allows us to simplify by Douglas Gregor · 14 years ago
  25. e5b72ba Switch c-index-test from clang_loadDeclaration() and by Douglas Gregor · 14 years ago
  26. 1db19de Rework the CXSourceLocation and CXSourceRange APIs. They are now by Douglas Gregor · 14 years ago
  27. b699866 Eliminate cursor kinds used to express definitions. Instead, provide by Douglas Gregor · 14 years ago
  28. c5d1e93 Introduce clang_getCursorReferenced, to get a cursor pointing at the by Douglas Gregor · 14 years ago
  29. a7bde20 Implement clang_getCursorExtent, which provides a source range for the by Douglas Gregor · 14 years ago
  30. 98258af Introduce clang_getCursorLocation(), which supercedes by Douglas Gregor · 14 years ago
  31. 3c7313d Clean up the CIndex API slightly. by Douglas Gregor · 14 years ago
  32. cf84aa4 Replace clang_getDeclUSR() with clang_getCursorUSR(). Also remove printing 'contexts' from c-index-test output; it wasn't helpful and was extremely brittle. by Ted Kremenek · 14 years ago
  33. 70ee542 Remove TranslateKind and centralize Decl -> CXCursorKind in GetCursorKind(). This revealed a bunch of inconsistencies in how CXCursorKinds were being computed. by Ted Kremenek · 14 years ago
  34. 283cae3 Make CXCursor's data opaque. by Douglas Gregor · 14 years ago
  35. f2c87bd Add -cursor-at=file:line:column command line option to c-index-test, by Douglas Gregor · 14 years ago
  36. 7d40562 Add USR printing modes to c-index-test. by Ted Kremenek · 15 years ago
  37. 9827156 Make 'CXTranslationUnitIterator' an argument to perform_test_load(), by Ted Kremenek · 15 years ago
  38. 01dfea0 Improve code completion by introducing patterns for the various C and by Douglas Gregor · 15 years ago
  39. 9096a20 Add FileCheck prefix to another location in the output of c-index-test. by Ted Kremenek · 15 years ago
  40. 377adb6 Remove unused variables. by Ted Kremenek · 15 years ago
  41. fe6fd3d Add C API hook 'clang_getDeclExtent()', which returns the source extent of a declaration. This implements <rdar://problem/7280072>. by Ted Kremenek · 15 years ago
  42. ff5ce6e Extend code-completion results with the type of each result by Douglas Gregor · 15 years ago
  43. ec6762c Change clang_codeComplete API to return the results in a structure on by Douglas Gregor · 15 years ago
  44. 4da689a Test for errors during fread() inside c-index-test and handle them by Chandler Carruth · 15 years ago
  45. 8506dde Switch clang_createTranslationUnitFromSourceFile to use ASTUnit::LoadFromCommandLine. by Daniel Dunbar · 15 years ago
  46. 467f030 Normalize CIndex/c-index-test/index-test link lines in the hopes it will fix by Daniel Dunbar · 15 years ago
  47. 735df88 Extend the CIndex code-completion API to perform code completion by Douglas Gregor · 15 years ago
  48. d378181 Fix relative ordering of Analyis library. by Daniel Dunbar · 15 years ago
  49. 521bf9c Add ASTUnit::LoadFromCompilerInvocation, which does what it says. by Daniel Dunbar · 15 years ago
  50. 625e4ef c-index-test: Split "function scanning" behavior into its own "filter" -- its by Daniel Dunbar · 15 years ago
  51. ada487d Add c-index-test -test-load-source, which loads the translation unit from a source file (and other command line arguments). by Daniel Dunbar · 15 years ago
  52. 1d5fdf3 Add special clang_getCursor() support for @class. Handles <rdar://problem/7383421>. by Ted Kremenek · 15 years ago
  53. a9933b9 fgetln is a BSDism; replace it with more portable code. by Benjamin Kramer · 15 years ago
  54. 1c6da17 Add c-index-test mode "-test-file-scan", which scans a source file and calls clang_getCursor() on every character. by Ted Kremenek · 15 years ago
  55. 0d43519 Organize c-index-test into logic sections, and add section headers. by Ted Kremenek · 15 years ago
  56. f5d9c93 Clean up c-index-test command line usage a bit by requiring a "-test-load-tu" option when testing clang_loadTranslationUnit(). Running c-index-test without the correct arguments now also prints a useful summary of its correct usage. by Ted Kremenek · 15 years ago
  57. 9298cfc Have clang_getCursorSource() return NULL when the source location is invalid or refers to a built-in buffer. Implements <rdar://problem/7296243>. by Ted Kremenek · 15 years ago
  58. 88d2395 Improve c-index-test's parsing of the -code-completion-at=file:line:column argument by Douglas Gregor · 15 years ago
  59. ef0cef6 Introduce CXString type and associated functions clang_getCString() and clang_disposeString(). by Steve Naroff · 15 years ago
  60. d5a2089 C doesn't allow mixing declarations and statements, silly by Douglas Gregor · 15 years ago
  61. 3ac7385 Minor cleanup for CIndex-based code-completion: by Douglas Gregor · 15 years ago
  62. 4ee17ac Revert unintentional change to this file. by Daniel Dunbar · 15 years ago
  63. 4dc99f8 CIndex: Add temporary hack to leak memory instead of returning invalid pointers. by Daniel Dunbar · 15 years ago
  64. f8297f1 Fix some build warnings. by Daniel Dunbar · 15 years ago
  65. 0c8296d Various improvements to Clang's code-completion infrastructure: by Douglas Gregor · 15 years ago
  66. f96b524 Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to <rdar://problem/7310688>. by Steve Naroff · 15 years ago
  67. 2e06fc8 Changes for building as a Windows DLL by John Thompson · 15 years ago
  68. cab9882 Fixes a warning. by Fariborz Jahanian · 15 years ago
  69. fbcb2b7 Split clang_getCursor() into clang_getCursor() and clang_getCursorWithHint(). by Ted Kremenek · 15 years ago
  70. 6a6de8b Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up searching). Without a 'relativeDecl', the algorithm is n-squared. For example, running the following command on 'Large.m' takes hours without a 'relatvieDecl'. by Steve Naroff · 15 years ago
  71. e56b4ba by Steve Naroff · 15 years ago
  72. 1374598 Really fix <rdar://problem/7312058> by adding a 'displayDiagnostics' option to by Ted Kremenek · 15 years ago
  73. 85f5468 Fix compiler warning: "ISO C90 forbids mixed declarations and code" by Ted Kremenek · 15 years ago
  74. 8ce88a4 Fix warning: 'warning: C++ style comments are not allowed in ISO C90' by Ted Kremenek · 15 years ago
  75. 0246575 Make CIndex and c-index-test a little bit more robust. The only by Douglas Gregor · 15 years ago
  76. 7d1d49d Keep track of whether declararions were loaded from a precompiled by Douglas Gregor · 15 years ago
  77. e19944c Make sure temporary files get unlinked. by Steve Naroff · 15 years ago
  78. 9a3dcf2 Make sure that c-index-test links as a C++ executable by Douglas Gregor · 15 years ago
  79. f393c3b Fix C90 compile warning about mixed declarations and code. by Eric Christopher · 15 years ago
  80. 85e2db7 Add support for class and protocol references. by Steve Naroff · 15 years ago
  81. 699a07d Add clang_getDeclLine and clang_getDeclColumn by Steve Naroff · 15 years ago
  82. ff9e18c Add test for C-based indexing API, using FileCheck utility. by Steve Naroff · 15 years ago
  83. f7469a3 Some minor cleanups... by Steve Naroff · 15 years ago
  84. 4ade6d6 More work to enable more exhaustive testing of the indexing API. by Steve Naroff · 15 years ago
  85. 77128dd - clang_getCursor(): Replace asserts with error codes (CXCursor_InvalidFile, CXCursor_NoDeclFound). by Steve Naroff · 15 years ago
  86. 8b26cbd Make sure ObjCInterfaceDecl's that are forward declared always contain a valid location. by Steve Naroff · 15 years ago
  87. 9efa767 Implement accessors clang_getCursorKind(), clang_getCursorDecl(). by Steve Naroff · 15 years ago
  88. af08ddc by Steve Naroff · 15 years ago
  89. bce6f62 Revert "Visit function/method bodies and issue callback for parameters and local by Daniel Dunbar · 15 years ago
  90. 23d8bea Visit function/method bodies and issue callback for parameters and local variables. by Steve Naroff · 15 years ago
  91. 10c2d31 Fix warnings. by Eli Friedman · 15 years ago
  92. f334b4e Start issuing callback for references (add some predicates, refactor some code). by Steve Naroff · 15 years ago
  93. c857ea4 Flesh out CXCursorKind... by Steve Naroff · 15 years ago
  94. 2b8ee6c Add explicit "blind" client data to callback function (since we aren't using blocks). by Steve Naroff · 15 years ago
  95. 2d4d629 Implement source/line/column hooks. by Steve Naroff · 15 years ago
  96. 89922f8 More fleshing out the C-based indexing API (under construction). by Steve Naroff · 15 years ago
  97. 5039819 Lot's of little changes to get the C-based indexing API going... by Steve Naroff · 15 years ago